Skip to content

Commit

Permalink
0.8.3 Release
Browse files Browse the repository at this point in the history
0.8.3 Release
  • Loading branch information
Arkatufus authored Sep 9, 2021
2 parents c4c0553 + 66d16a8 commit 62bb65b
Show file tree
Hide file tree
Showing 6 changed files with 40 additions and 6 deletions.
20 changes: 20 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
version: 2
updates:
- package-ecosystem: nuget
directory: "/"
schedule:
interval: daily
time: "11:00"
open-pull-requests-limit: 10
ignore:
- dependency-name: Akka.Persistence.TCK
versions:
- 1.4.16
- 1.4.17
- dependency-name: Akka.Persistence.Query
versions:
- 1.4.16
- 1.4.17
- dependency-name: Microsoft.NET.Test.Sdk
versions:
- 16.9.1
5 changes: 5 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
#### 0.8.3 September 9 2021 ####
* Upgraded to [Akka.NET 1.4.25](https://github.com/akkadotnet/akka.net/releases/tag/1.4.25)
* [Update Azure.Identity to 1.4.1](https://github.com/petabridge/Akka.Persistence.Azure/pull/176)
* [Update Azure.Storage.Blobs to 12.10.0](https://github.com/petabridge/Akka.Persistence.Azure/pull/183)

#### 0.8.2 April 20 2021 ####
**Release of Akka.Persistence.Azure**

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<IsPackable>false</IsPackable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Docker.DotNet" Version="3.125.4" />
<PackageReference Include="Docker.DotNet" Version="3.125.5" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,16 @@ public async Task Initialize()
_client = config.CreateClient();

var images =
await _client.Images.ListImagesAsync(new ImagesListParameters {MatchName = AzureStorageImageName});
await _client.Images.ListImagesAsync(new ImagesListParameters
{
Filters = new Dictionary<string, IDictionary<string, bool>>
{
["reference"] = new Dictionary<string, bool>
{
[AzureStorageImageName] = true
}
}
});
if (images.Count == 0)
await _client.Images.CreateImageAsync(
new ImagesCreateParameters {FromImage = AzureStorageImageName, Tag = "latest"}, null,
Expand Down
4 changes: 2 additions & 2 deletions src/Akka.Persistence.Azure/Akka.Persistence.Azure.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@

<ItemGroup>
<PackageReference Include="Akka.Persistence.Query" Version="$(AkkaVersion)" />
<PackageReference Include="Azure.Identity" Version="1.3.0" />
<PackageReference Include="Azure.Storage.Blobs" Version="12.8.3" />
<PackageReference Include="Azure.Identity" Version="1.4.1" />
<PackageReference Include="Azure.Storage.Blobs" Version="12.10.0" />
<PackageReference Include="Microsoft.Azure.Cosmos.Table" Version="1.0.8" />
<PackageReference Include="System.Linq.Async" Version="5.0.0" />
</ItemGroup>
Expand Down
4 changes: 2 additions & 2 deletions src/common.props
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
</PropertyGroup>
<PropertyGroup>
<XunitVersion>2.4.1</XunitVersion>
<AkkaVersion>1.4.18</AkkaVersion>
<AkkaVersion>1.4.25</AkkaVersion>
<FluentAssertionsVersion>5.10.3</FluentAssertionsVersion>
<TestSdkVersion>16.9.4</TestSdkVersion>
<TestSdkVersion>16.11.0</TestSdkVersion>
<NetCoreTestVersion>netcoreapp3.1</NetCoreTestVersion>
<NetFrameworkTestVersion>net461</NetFrameworkTestVersion>
<NetStandardLibVersion>netstandard2.0</NetStandardLibVersion>
Expand Down

0 comments on commit 62bb65b

Please sign in to comment.