From f5508fff6fdd8a25dec02bbca7e1fecf584a0620 Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Tue, 13 Apr 2021 01:29:10 +0000 Subject: [PATCH 1/5] Bump FluentAssertions from 4.14.0 to 5.10.3 Bumps [FluentAssertions](https://github.com/fluentassertions/fluentassertions) from 4.14.0 to 5.10.3. - [Release notes](https://github.com/fluentassertions/fluentassertions/releases) - [Changelog](https://github.com/fluentassertions/fluentassertions/blob/develop/AcceptApiChanges.ps1) - [Commits](https://github.com/fluentassertions/fluentassertions/compare/4.14...5.10.3) Signed-off-by: dependabot-preview[bot] --- src/common.props | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common.props b/src/common.props index a9bbb53..68c781e 100644 --- a/src/common.props +++ b/src/common.props @@ -17,7 +17,7 @@ 2.4.1 1.4.14 - 4.14.0 + 5.10.3 16.9.4 netcoreapp3.1 net461 From c8ae12e8d3735268748c5711ba349a041d1f22e2 Mon Sep 17 00:00:00 2001 From: Gregorius Soedharmo Date: Tue, 13 Apr 2021 22:15:26 +0700 Subject: [PATCH 2/5] Update changes to FluentAssertions API --- .../AzurePersistenceConfigSpec.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Akka.Persistence.Azure.Tests/AzurePersistenceConfigSpec.cs b/src/Akka.Persistence.Azure.Tests/AzurePersistenceConfigSpec.cs index bd48dc6..52326d5 100644 --- a/src/Akka.Persistence.Azure.Tests/AzurePersistenceConfigSpec.cs +++ b/src/Akka.Persistence.Azure.Tests/AzurePersistenceConfigSpec.cs @@ -97,7 +97,7 @@ public void ShouldThrowArgumentExceptionForIllegalTableNames(string tableName, s table-name = " + tableName + @" }").WithFallback(AzurePersistence.DefaultConfig) .GetConfig("akka.persistence.journal.azure-table")); - createJournalSettings.ShouldThrow(reason); + createJournalSettings.Should().Throw(reason); } [Theory] @@ -113,7 +113,7 @@ public void ShouldThrowArgumentExceptionForIllegalContainerNames(string containe }").WithFallback(AzurePersistence.DefaultConfig) .GetConfig("akka.persistence.snapshot-store.azure-blob-store")); - createSnapshotSettings.ShouldThrow(reason); + createSnapshotSettings.Should().Throw(reason); } } } \ No newline at end of file From 8e6e8e63837371a71dd3ac6ee9003cf12508d4e3 Mon Sep 17 00:00:00 2001 From: Gregorius Soedharmo Date: Tue, 13 Apr 2021 22:47:33 +0700 Subject: [PATCH 3/5] Remove reference to FluentAssertions, update FluentAssertions API changes --- .../Akka.Persistence.Azure.Tests.csproj | 1 - .../AzurePersistenceConfigSpec.cs | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/src/Akka.Persistence.Azure.Tests/Akka.Persistence.Azure.Tests.csproj b/src/Akka.Persistence.Azure.Tests/Akka.Persistence.Azure.Tests.csproj index bf8250e..2a30455 100644 --- a/src/Akka.Persistence.Azure.Tests/Akka.Persistence.Azure.Tests.csproj +++ b/src/Akka.Persistence.Azure.Tests/Akka.Persistence.Azure.Tests.csproj @@ -7,7 +7,6 @@ - diff --git a/src/Akka.Persistence.Azure.Tests/AzurePersistenceConfigSpec.cs b/src/Akka.Persistence.Azure.Tests/AzurePersistenceConfigSpec.cs index 52326d5..bd48dc6 100644 --- a/src/Akka.Persistence.Azure.Tests/AzurePersistenceConfigSpec.cs +++ b/src/Akka.Persistence.Azure.Tests/AzurePersistenceConfigSpec.cs @@ -97,7 +97,7 @@ public void ShouldThrowArgumentExceptionForIllegalTableNames(string tableName, s table-name = " + tableName + @" }").WithFallback(AzurePersistence.DefaultConfig) .GetConfig("akka.persistence.journal.azure-table")); - createJournalSettings.Should().Throw(reason); + createJournalSettings.ShouldThrow(reason); } [Theory] @@ -113,7 +113,7 @@ public void ShouldThrowArgumentExceptionForIllegalContainerNames(string containe }").WithFallback(AzurePersistence.DefaultConfig) .GetConfig("akka.persistence.snapshot-store.azure-blob-store")); - createSnapshotSettings.Should().Throw(reason); + createSnapshotSettings.ShouldThrow(reason); } } } \ No newline at end of file From 537c37e1e58530be554aaef60c001bfc7750ad28 Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Tue, 13 Apr 2021 15:56:03 +0000 Subject: [PATCH 4/5] Bump AkkaVersion from 1.4.14 to 1.4.18 Bumps `AkkaVersion` from 1.4.14 to 1.4.18. Updates `Akka.Persistence.Query` from 1.4.14 to 1.4.18 - [Release notes](https://github.com/akkadotnet/akka.net/releases) - [Changelog](https://github.com/akkadotnet/akka.net/blob/dev/RELEASE_NOTES.md) - [Commits](https://github.com/akkadotnet/akka.net/compare/1.4.14...1.4.18) Updates `Akka.Persistence.TCK` from 1.4.14 to 1.4.18 - [Release notes](https://github.com/akkadotnet/akka.net/releases) - [Changelog](https://github.com/akkadotnet/akka.net/blob/dev/RELEASE_NOTES.md) - [Commits](https://github.com/akkadotnet/akka.net/compare/1.4.14...1.4.18) Signed-off-by: dependabot-preview[bot] --- src/common.props | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common.props b/src/common.props index 68c781e..1b8ec8c 100644 --- a/src/common.props +++ b/src/common.props @@ -16,7 +16,7 @@ 2.4.1 - 1.4.14 + 1.4.18 5.10.3 16.9.4 netcoreapp3.1 From 09c1ad015c5cee3544de3d3dd99945b6ebd3a054 Mon Sep 17 00:00:00 2001 From: Gregorius Soedharmo Date: Tue, 13 Apr 2021 23:29:18 +0700 Subject: [PATCH 5/5] Update FluentAssertions API call --- .../AzurePersistenceConfigSpec.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Akka.Persistence.Azure.Tests/AzurePersistenceConfigSpec.cs b/src/Akka.Persistence.Azure.Tests/AzurePersistenceConfigSpec.cs index bd48dc6..52326d5 100644 --- a/src/Akka.Persistence.Azure.Tests/AzurePersistenceConfigSpec.cs +++ b/src/Akka.Persistence.Azure.Tests/AzurePersistenceConfigSpec.cs @@ -97,7 +97,7 @@ public void ShouldThrowArgumentExceptionForIllegalTableNames(string tableName, s table-name = " + tableName + @" }").WithFallback(AzurePersistence.DefaultConfig) .GetConfig("akka.persistence.journal.azure-table")); - createJournalSettings.ShouldThrow(reason); + createJournalSettings.Should().Throw(reason); } [Theory] @@ -113,7 +113,7 @@ public void ShouldThrowArgumentExceptionForIllegalContainerNames(string containe }").WithFallback(AzurePersistence.DefaultConfig) .GetConfig("akka.persistence.snapshot-store.azure-blob-store")); - createSnapshotSettings.ShouldThrow(reason); + createSnapshotSettings.Should().Throw(reason); } } } \ No newline at end of file