Skip to content
This repository was archived by the owner on Mar 20, 2025. It is now read-only.

Commit ff4ce9a

Browse files
authored
Update RELEASE_NOTES.md for 1.5.0 RTM and update Akka.NET to 1.5.0 RTM (#188)
1 parent 579d1c9 commit ff4ce9a

File tree

2 files changed

+4
-104
lines changed

2 files changed

+4
-104
lines changed

RELEASE_NOTES.md

Lines changed: 3 additions & 103 deletions
Original file line numberDiff line numberDiff line change
@@ -1,105 +1,5 @@
1-
### 1.4.46 November 30 2022 ###
2-
* [Update Akka.NET to v1.4.46](https://github.com/akkadotnet/akka.net/releases/tag/1.4.46)
3-
* [Add `tag-column-size` HOCON setting to modify journal table Tags column size](https://github.com/akkadotnet/Akka.Persistence.PostgreSql/pull/167)
1+
### 1.5.0 March 2 2023 ###
42

5-
### 1.4.45 October 21 2022 ###
6-
* [Update Akka.NET to v1.4.45](https://github.com/akkadotnet/akka.net/releases/tag/1.4.45)
7-
* [Bump Npgsql from 6.0.2 to 6.0.7](https://github.com/akkadotnet/Akka.Persistence.PostgreSql/pull/163)
3+
Version 1.5.0 is the RTM release of Akka.Persistence.PostgreSql and Akka.NET v1.5.0 RTM integration.
84

9-
### 1.4.35 March 23 2022 ###
10-
* [Update Akka.NET to v1.4.35](https://github.com/akkadotnet/akka.net/releases/tag/1.4.35)
11-
12-
### 1.4.32 January 18 2022 ###
13-
- Upgraded to [Akka.NET v1.4.32](https://github.com/akkadotnet/akka.net/releases/tag/1.4.32)
14-
- [Upgraded Npgsql to 6.0.2](https://github.com/akkadotnet/Akka.Persistence.PostgreSql/pull/128)
15-
- [Changed Npgsql package version from explicit to ranged](https://github.com/akkadotnet/Akka.Persistence.PostgreSql/pull/126)
16-
17-
In 1.4.31, we bumped the Npgsql package to 6.0.1 and introduced a regression bug for users who uses Entity Framework by locking them from using .NET Core 3.1. We're fixing this bug in 1.4.32 by using ranged versioning to allow users to use Npgsql 5.0.11 and not forced to update to .NET 6.0.
18-
19-
### 1.4.31 December 20 2021 ###
20-
- Upgraded to [Akka.NET v1.4.31](https://github.com/akkadotnet/akka.net/releases/tag/1.4.31)
21-
22-
### 1.4.29 December 15 2021 ###
23-
- Upgraded to [Akka.NET v1.4.29](https://github.com/akkadotnet/akka.net/releases/tag/1.4.29)
24-
- [Upgraded Npgsql to 5.0.10](https://github.com/akkadotnet/Akka.Persistence.PostgreSql/pull/106)
25-
26-
27-
### 1.4.25 September 9 2021 ###
28-
- Upgraded to [Akka.NET v1.4.25](https://github.com/akkadotnet/akka.net/releases/tag/1.4.25)
29-
30-
### 1.4.19 June 16 2021 ###
31-
32-
- [Bugfix: Snapshot manifest isn't serialized properly](https://github.com/akkadotnet/Akka.Persistence.PostgreSql/pull/92)
33-
- Upgraded to [Akka.NET v1.4.19](https://github.com/akkadotnet/akka.net/releases/tag/1.4.19)
34-
- Upgraded Npgsql to 5.0.7
35-
36-
### 1.4.17 March 13 2021 ###
37-
Major upgrade and modernization for Akka.Persistence.PostgreSql
38-
39-
- Upgraded to Akka.NET v1.4.17
40-
- Implemented all Akka.Persistence.Query's correctly
41-
- [Lots of other fixes and modernizations, which you can read here](https://github.com/akkadotnet/Akka.Persistence.PostgreSql/projects/1).
42-
43-
Akka.Persistence.PostgreSql is now under the umbrella of the Akka.NET project again and will be maintained at roughly the same cadence as the other officially supported Akka.NET plugins.
44-
45-
#### 1.3.9 August 29 2018 ####
46-
Upgraded for Akka.NET v1.3.9.
47-
48-
**Other Fixes and Improvements**
49-
* [Bugfix: Loading shapshot error](https://github.com/AkkaNetContrib/Akka.Persistence.PostgreSql/issues/57)
50-
51-
#### 1.3.8 July 6 2018 ####
52-
Upgraded to support Akka.NET 1.3.8 and to take advantage of some performance improvements that have been added to Akka.Persistence for loading large snapshots, which you can read more about here: https://github.com/akkadotnet/akka.net/issues/3422
53-
54-
Note that this feature is currently disabled by default in Akka.Persistence.PostgreSql due to https://github.com/AkkaNetContrib/Akka.Persistence.PostgreSql/issues/53
55-
56-
#### 1.3.1 September 11 2017 ####
57-
Support for Akka.NET 1.3, .NET Standard 1.6, and the first stable RTM release of Akka.Persistence.
58-
59-
Migration from 1.1.0-beta Up**
60-
The event journal and snapshot store schema has changed with this release. In order to keep existing stores compatible with this release, you **must** add a column to both stores for `SerializerId` like so:
61-
```sql
62-
ALTER TABLE {your_journal_table_name} ADD COLUMN SerializerId INTEGER NULL
63-
ALTER TABLE {your_snapshot_table_name} ADD COLUMN SerializerId INTEGER NULL
64-
```
65-
66-
#### 1.1.2 January 2017 ####
67-
68-
Updated for Akka.NET 1.1.2.
69-
70-
#### 1.0.6 December 10 2015 ####
71-
72-
#### 1.0.5 August 08 2015 ####
73-
74-
- Changed tables schema: renamed payload_type column to manifest for journal and snapshot tables
75-
- Changed tables schema: added created_at column to journal table
76-
- Added compatibility with Persistent queries API
77-
- Added ability to specify connection string stored in \*.config files
78-
79-
#### 1.0.4 August 07 2015 ####
80-
81-
#### 1.0.3 June 12 2015 ####
82-
**Bugfix release for Akka.NET v1.0.2.**
83-
84-
This release addresses an issue with Akka.Persistence.SqlServer and Akka.Persistence.PostgreSql where both packages were missing a reference to Akka.Persistence.Sql.Common.
85-
86-
In Akka.NET v1.0.3 we've packaged Akka.Persistence.Sql.Common into its own NuGet package and referenced it in the affected packages.
87-
88-
#### 1.0.2 June 2 2015
89-
Initial Release of Akka.Persistence.PostgreSql
90-
91-
Fixes & Changes - Akka.Persistence
92-
* [Renamed GuaranteedDelivery classes to AtLeastOnceDelivery](https://github.com/akkadotnet/akka.net/pull/984)
93-
* [Changes in Akka.Persistence SQL backend](https://github.com/akkadotnet/akka.net/pull/963)
94-
* [PostgreSQL persistence plugin for both event journal and snapshot store](https://github.com/akkadotnet/akka.net/pull/971)
95-
* [Cassandra persistence plugin](https://github.com/akkadotnet/akka.net/pull/995)
96-
97-
**New Features:**
98-
99-
**Akka.Persistence.PostgreSql** and **Akka.Persistence.Cassandra**
100-
Akka.Persistence now has two additional concrete implementations for PostgreSQL and Cassandra! You can install either of the packages using the following commandline:
101-
102-
[Akka.Persistence.PostgreSql Configuration Docs](https://github.com/akkadotnet/akka.net/tree/dev/src/contrib/persistence/Akka.Persistence.PostgreSql)
103-
```
104-
PM> Install-Package Akka.Persistence.PostgreSql
105-
```
5+
* [Update Akka.NET to v1.5.0](https://github.com/akkadotnet/akka.net/releases/tag/1.5.0)

src/Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<PropertyGroup>
1515
<XunitVersion>2.4.2</XunitVersion>
1616
<XunitRunnerVersion>2.4.5</XunitRunnerVersion>
17-
<AkkaVersion>1.5.0-beta3</AkkaVersion>
17+
<AkkaVersion>1.5.0</AkkaVersion>
1818
<PostgresLowVersion>5.0.11</PostgresLowVersion>
1919
<PostgresHighVersion>6.0.7</PostgresHighVersion>
2020
<PostgresVersion>[$(PostgresLowVersion), $(PostgresHighVersion)]</PostgresVersion>

0 commit comments

Comments
 (0)