Skip to content

Commit

Permalink
Dependency updates including security fix (#66)
Browse files Browse the repository at this point in the history
  • Loading branch information
idg10 authored Sep 21, 2022
1 parent 7feddca commit 3cf8cad
Show file tree
Hide file tree
Showing 14 changed files with 373 additions and 291 deletions.
10 changes: 10 additions & 0 deletions Documentation/ReleaseNotes/Corvus.Storage.v1.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Release notes for Corvus.Storage v1.

# V1.3

NuGet updates:

* `Azure.Storage.Blobs` 12.12 -> 12.13
* `Microsoft.Azure.Cosmos` 3.28 -> 3.30
* `Microsoft.Data.SqlClient` 4.1 -> 5.0

Normally that SqlClient upgrade would warrant a major version bump. However, we aren't currently using `Corvus.Storage.Sql` anywhere, and we don't want to disrupt all other uses of `Corvus.Storage`.

# V1.2

Adds `Corvus.Storage.Azure.TableStorage` package.
Expand Down
2 changes: 1 addition & 1 deletion GitVersion.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@ branches:
- feature
- support
- hotfix
next-version: "1.2"
next-version: "1.3"

Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Azure.Storage.Blobs" Version="12.12.0" />
<PackageReference Include="Azure.Storage.Blobs" Version="12.13.1" />
<PackageReference Include="Endjin.RecommendedPractices.GitHub" Version="2.1.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.Azure.Cosmos" Version="3.28.0" />
<PackageReference Include="Microsoft.Azure.Cosmos" Version="3.30.1" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Azure.Data.Tables" Version="12.6.0" />
<PackageReference Include="Azure.Data.Tables" Version="12.6.1" />
<PackageReference Include="Endjin.RecommendedPractices.GitHub" Version="2.1.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="BenchmarkDotNet" Version="0.13.1" />
<PackageReference Include="BenchmarkDotNet" Version="0.13.2" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@
</PackageReference>
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="[6.0.*,)" />
<PackageReference Include="Microsoft.Extensions.Hosting" Version="[6.0.*,)" />
<PackageReference Include="System.CommandLine" Version="2.0.0-beta3.22114.1" />
<PackageReference Include="System.CommandLine.Hosting" Version="0.3.0-alpha.21216.1" />
<PackageReference Include="System.CommandLine" Version="2.0.0-beta4.22272.1" />
<PackageReference Include="System.CommandLine.Hosting" Version="0.4.0-alpha.22272.1" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,12 @@ protected RunBase(
/// </remarks>
public abstract Task<int> InvokeAsync(InvocationContext context);

/// <inheritdoc/>
public int Invoke(InvocationContext context)
{
throw new System.NotImplementedException("Synchronous invocation not supported");
}

/// <summary>
/// To be called by derived types' overrides of <see cref="InvokeAsync(InvocationContext)"/>.
/// </summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,12 @@ protected RunBase(
/// </remarks>
public abstract Task<int> InvokeAsync(InvocationContext context);

/// <inheritdoc/>
public int Invoke(InvocationContext context)
{
throw new System.NotImplementedException("Synchronous invocation not supported");
}

/// <summary>
/// To be called by derived types' overrides of <see cref="InvokeAsync(InvocationContext)"/>.
/// </summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,12 @@ protected RunBase(
/// </remarks>
public abstract Task<int> InvokeAsync(InvocationContext context);

/// <inheritdoc/>
public int Invoke(InvocationContext context)
{
throw new System.NotImplementedException("Synchronous invocation not supported");
}

/// <summary>
/// To be called by derived types' overrides of <see cref="InvokeAsync(InvocationContext)"/>.
/// </summary>
Expand Down
Loading

0 comments on commit 3cf8cad

Please sign in to comment.