Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump the all-dependencies group with 33 updates #166

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Aug 19, 2024

Bumps the all-dependencies group with 34 updates:

Package From To
Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation 8.0.7 8.0.8
Microsoft.AspNetCore.Authentication.Facebook 8.0.7 8.0.8
Microsoft.AspNetCore.Authentication.Google 8.0.7 8.0.8
Microsoft.AspNetCore.Authentication.MicrosoftAccount 8.0.7 8.0.8
Microsoft.AspNetCore.Authentication.OpenIdConnect 8.0.0 8.0.8
Microsoft.IdentityModel.Protocols.OpenIdConnect 6.35.0 7.1.2
Microsoft.AspNetCore.Authentication.Twitter 8.0.7 8.0.8
Microsoft.AspNetCore.DataProtection.StackExchangeRedis 8.0.7 8.0.8
Microsoft.AspNetCore.Mvc.Testing 8.0.7 8.0.8
Microsoft.AspNetCore.Owin 8.0.7 8.0.8
GraphQL 7.8.0 7.9.0
GraphQL.DataLoader 7.8.0 7.9.0
GraphQL.MicrosoftDI 7.8.0 7.9.0
GraphQL.SystemTextJson 7.8.0 7.9.0
Jint 4.0.0 4.0.1
Azure.Storage.Blobs 12.15.1 12.21.2
System.IO.Hashing 6.0.0 8.0.0
AWSSDK.S3 3.7.103.42 3.7.401.1
Azure.Identity 1.11.3 1.12.0
Microsoft.IdentityModel.Protocols.OpenIdConnect 6.35.0 8.0.1
Microsoft.Extensions.Http.Resilience 8.4.0 8.8.0
OpenIddict.Server.AspNetCore 5.7.0 5.7.1
OpenIddict.Server.DataProtection 5.7.0 5.7.1
OpenIddict.Validation.AspNetCore 5.7.0 5.7.1
OpenIddict.Validation.DataProtection 5.7.0 5.7.1
OpenIddict.Validation.SystemNetHttp 5.7.0 5.7.1
JsonPath.Net 1.1.3 1.1.4
Azure.Extensions.AspNetCore.Configuration.Secrets 1.3.1 1.3.2
NLog.Web.AspNetCore 5.3.11 5.3.12
OpenIddict.Core 5.7.0 5.7.1
Microsoft.Extensions.Caching.StackExchangeRedis 8.0.7 8.0.8
Microsoft.Extensions.Azure 1.7.4 1.7.5
libphonenumber-csharp 8.13.42 8.13.43
BenchmarkDotNet 0.13.12 0.14.0

Updates Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation from 8.0.7 to 8.0.8

Release notes

Sourced from Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation's releases.

.NET 8.0.8

Release

Commits

Updates Microsoft.AspNetCore.Authentication.Facebook from 8.0.7 to 8.0.8

Release notes

Sourced from Microsoft.AspNetCore.Authentication.Facebook's releases.

.NET 8.0.8

Release

Commits

Updates Microsoft.AspNetCore.Authentication.Google from 8.0.7 to 8.0.8

Release notes

Sourced from Microsoft.AspNetCore.Authentication.Google's releases.

.NET 8.0.8

Release

Commits

Updates Microsoft.AspNetCore.Authentication.MicrosoftAccount from 8.0.7 to 8.0.8

Release notes

Sourced from Microsoft.AspNetCore.Authentication.MicrosoftAccount's releases.

.NET 8.0.8

Release

Commits

Updates Microsoft.AspNetCore.Authentication.OpenIdConnect from 8.0.0 to 8.0.8

Release notes

Sourced from Microsoft.AspNetCore.Authentication.OpenIdConnect's releases.

.NET 8.0.8

Release

.NET 8.0.7

Release

.NET 8.0.6

Release

.NET 8.0.5

Release

What's Changed

Full Changelog: dotnet/aspnetcore@v8.0.4...v8.0.5

.NET 8.0.4

Release

.NET 8.0.3

Release

.NET 8.0.2

Release

.NET 8.0.1

Release

Commits

Updates Microsoft.IdentityModel.Protocols.OpenIdConnect from 6.35.0 to 7.1.2

Release notes

Sourced from Microsoft.IdentityModel.Protocols.OpenIdConnect's releases.

7.1.2

Security fixes

See https://aka.ms/IdentityModel/Jan2024/zip and https://aka.ms/IdentityModel/Jan2024/jku for details.

7.1.0-preview

Include IdentityModel 6.32.0 release updates, including AAD specific signing key issuer validator and fix perf regression.

7.0.3

Bug Fixes:

  • Fix errors like the following reported by multiple customers at dotnet/aspnetcore#51005 when they tried to upgrade their app using AddMicrosoftIdentityWebApp to .NET 8. See PR for details.
  • Fix compatibility issue with 6x when claims are a bool. See issue #2354 for details.

7.0.2

Bug Fixes:

  • Resolved an issue where JsonWebToken properties would throw exceptions when the input string was 'null'. See PR#2335 for details.

7.0.1

Bug fixes:

GetPayloadClaim("aud") returns a string when a single audience is specified, aligning with the behavior in 6.x. See PR #2331 for details.

7.0.0

See IdentityModel7x for the updates on this much anticipated release.

7.0.0-preview5

Bug fixes:

  • Improve log messages. See PR #2289 for details.
  • In AadIssuerValidator return a ValueTask<string> instead of a Task<string>. See Issue #2286 and PR for details.
  • Deprecate int? JwtPayload.Exp, .Iat, and .Nbf. See issue #2266 for details, #92, and #1525.
  • General clean-up. See PR #2285.

7.0.0-preview4

Bug fixes:

  • Add nullables to the properties in WsFederationMessage. See issue #2240 for details.
  • Fix regression where JsonWebToken.TryGetPayloadValue() was not compatible with dictionary types. See issue #2246 for details.
  • Fix regression where dictionary claims added to SecurityTokenDescriptor.Claims are no longer correctly serialized. See issue #2245 for details.
  • Fix regression with a Y2038 bug. See issue #2261 for details.
  • Fix a regression where claims with multiple values are incorrectly serialized. See #2244 for details.

Performance improvements:

  • Remove sync-over-async pattern with JsonWebTokens.ValidateToken, which when in the hot path can lead to threadpool starvation. See issue #2253 for details.
  • Perf testing using brenchmark dotnet and crank, similar to aspnetcore, to better gauge requests per second perf impacts. See issue #2232 for details.
  • Use optimistic synchronization in JsonWebToken.Audiences. See PR for details.
  • Reduce allocations when enumerating over collections. See PR for details.

... (truncated)

Changelog

Sourced from Microsoft.IdentityModel.Protocols.OpenIdConnect's changelog.

7.1.2

Security fixes:

See https://aka.ms/IdentityModel/Jan2024/zip and https://aka.ms/IdentityModel/Jan2024/jku for details.

7.0.3

Bug Fixes:

  • Fix errors like the following reported by multiple customers at dotnet/aspnetcore#51005 when they tried to upgrade their app using AddMicrosoftIdentityWebApp to .NET 8. See PR for details.
  • Fix compatibility issue with 6x when claims are a bool. See issue #2354 for details.

7.0.2

Bug Fixes:

  • Resolved an issue where JsonWebToken properties would throw exceptions when the input string was 'null'. See PR#2335 for details.

7.0.1

Bug Fixes:

  • GetPayloadClaim("aud") returns a string when a single audience is specified, aligning with the behavior in 6.x. See PR#2331 for details.

7.0.0

See IdentityModel7x for the updates on this much anticipated release.

7.0.0-preview5

Bug fixes:

7.0.0-preview4

Bug fixes:

  • Add nullables to the properties in WsFederationMessage. See issue #2240 for details.
  • Fix regression where JsonWebToken.TryGetPayloadValue() was not compatible with dictionary types. See issue #2246 for details.
  • Fix regression where dictionary claims added to SecurityTokenDescriptor.Claims are no longer correctly serialized. See issue #2245 for details.
  • Fix regression with a Y2038 bug. See issue #2261 for details.
  • Fix a regression where claims with multiple values are incorrectly serialized. See #2244 for details.

Performance improvements:

  • Remove sync-over-async pattern with JsonWebTokens.ValidateToken, which when in the hot path can lead to threadpool starvation. See issue #2253 for details.
  • Perf testing using benchmark dotnet and crank, similar to aspnetcore, to better gauge requests per second perf impacts. See issue #2232 for details.
  • Use optimistic synchronization in JsonWebToken.Audiences. See PR for details.
  • Reduce allocations when enumerating over collections. See PR for details.

Documentation:

... (truncated)

Commits
  • a607fa5 Merged PR 10669: update version to 7.1.2
  • 44021bb Merged PR 10664: Update dev branch from public GitHub dev
  • a22ab8e Merged PR 10603: Re-enable Jwt sub claim as either Number or String
  • 1966c05 fixup prefix
  • 97888a2 Merged PR 10258: Compatibility with 6x for bool claims (#2367)
  • 5c1ea4a Merged PR 10241: Update dev to fix the release build
  • ec25d19 reduced size for netcorestandard2.1 compression size is larger.
  • b16f758 Merged PR 10217: Disable test that set statics.
  • ceeff41 Merged PR 10199: Set MaximumDeflateSize
  • e986e22 Merged PR 10198: Don't resolve jku claim by default
  • Additional commits viewable in compare view

Updates Microsoft.AspNetCore.Authentication.Twitter from 8.0.7 to 8.0.8

Release notes

Sourced from Microsoft.AspNetCore.Authentication.Twitter's releases.

.NET 8.0.8

Release

Commits

Updates Microsoft.AspNetCore.DataProtection.StackExchangeRedis from 8.0.7 to 8.0.8

Release notes

Sourced from Microsoft.AspNetCore.DataProtection.StackExchangeRedis's releases.

.NET 8.0.8

Release

Commits

Updates Microsoft.AspNetCore.Mvc.Testing from 8.0.7 to 8.0.8

Release notes

Sourced from Microsoft.AspNetCore.Mvc.Testing's releases.

.NET 8.0.8

Release

Commits

Updates Microsoft.AspNetCore.Owin from 8.0.7 to 8.0.8

Release notes

Sourced from Microsoft.AspNetCore.Owin's releases.

.NET 8.0.8

Release

Commits

Updates GraphQL from 7.8.0 to 7.9.0

Release notes

Sourced from GraphQL's releases.

7.9.0

What's Changed

New Contributors

Full Changelog: graphql-dotnet/graphql-dotnet@7.8.0...7.9.0

Commits

Updates GraphQL.DataLoader from 7.8.0 to 7.9.0

Release notes

Sourced from GraphQL.DataLoader's releases.

7.9.0

What's Changed

New Contributors

Full Changelog: graphql-dotnet/graphql-dotnet@7.8.0...7.9.0

Commits

Updates GraphQL from 7.8.0 to 7.9.0

Release notes

Sourced from GraphQL's releases.

7.9.0

What's Changed

New Contributors

Full Changelog: graphql-dotnet/graphql-dotnet@7.8.0...7.9.0

Commits

Bumps the all-dependencies group with 34 updates:

| Package | From | To |
| --- | --- | --- |
| [Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation](https://github.com/dotnet/aspnetcore) | `8.0.7` | `8.0.8` |
| [Microsoft.AspNetCore.Authentication.Facebook](https://github.com/dotnet/aspnetcore) | `8.0.7` | `8.0.8` |
| [Microsoft.AspNetCore.Authentication.Google](https://github.com/dotnet/aspnetcore) | `8.0.7` | `8.0.8` |
| [Microsoft.AspNetCore.Authentication.MicrosoftAccount](https://github.com/dotnet/aspnetcore) | `8.0.7` | `8.0.8` |
| [Microsoft.AspNetCore.Authentication.OpenIdConnect](https://github.com/dotnet/aspnetcore) | `8.0.0` | `8.0.8` |
| [Microsoft.IdentityModel.Protocols.OpenIdConnect](https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet) | `6.35.0` | `7.1.2` |
| [Microsoft.AspNetCore.Authentication.Twitter](https://github.com/dotnet/aspnetcore) | `8.0.7` | `8.0.8` |
| [Microsoft.AspNetCore.DataProtection.StackExchangeRedis](https://github.com/dotnet/aspnetcore) | `8.0.7` | `8.0.8` |
| [Microsoft.AspNetCore.Mvc.Testing](https://github.com/dotnet/aspnetcore) | `8.0.7` | `8.0.8` |
| [Microsoft.AspNetCore.Owin](https://github.com/dotnet/aspnetcore) | `8.0.7` | `8.0.8` |
| [GraphQL](https://github.com/graphql-dotnet/graphql-dotnet) | `7.8.0` | `7.9.0` |
| [GraphQL.DataLoader](https://github.com/graphql-dotnet/graphql-dotnet) | `7.8.0` | `7.9.0` |
| [GraphQL.MicrosoftDI](https://github.com/graphql-dotnet/graphql-dotnet) | `7.8.0` | `7.9.0` |
| [GraphQL.SystemTextJson](https://github.com/graphql-dotnet/graphql-dotnet) | `7.8.0` | `7.9.0` |
| [Jint](https://github.com/sebastienros/jint) | `4.0.0` | `4.0.1` |
| [Azure.Storage.Blobs](https://github.com/Azure/azure-sdk-for-net) | `12.15.1` | `12.21.2` |
| System.IO.Hashing | `6.0.0` | `8.0.0` |
| [AWSSDK.S3](https://github.com/aws/aws-sdk-net) | `3.7.103.42` | `3.7.401.1` |
| Azure.Identity | `1.11.3` | `1.12.0` |
| [Microsoft.IdentityModel.Protocols.OpenIdConnect](https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet) | `6.35.0` | `8.0.1` |
| [Microsoft.Extensions.Http.Resilience](https://github.com/dotnet/extensions) | `8.4.0` | `8.8.0` |
| [OpenIddict.Server.AspNetCore](https://github.com/openiddict/openiddict-core) | `5.7.0` | `5.7.1` |
| [OpenIddict.Server.DataProtection](https://github.com/openiddict/openiddict-core) | `5.7.0` | `5.7.1` |
| [OpenIddict.Validation.AspNetCore](https://github.com/openiddict/openiddict-core) | `5.7.0` | `5.7.1` |
| [OpenIddict.Validation.DataProtection](https://github.com/openiddict/openiddict-core) | `5.7.0` | `5.7.1` |
| [OpenIddict.Validation.SystemNetHttp](https://github.com/openiddict/openiddict-core) | `5.7.0` | `5.7.1` |
| [JsonPath.Net](https://github.com/json-everything/json-everything) | `1.1.3` | `1.1.4` |
| [Azure.Extensions.AspNetCore.Configuration.Secrets](https://github.com/Azure/azure-sdk-for-net) | `1.3.1` | `1.3.2` |
| [NLog.Web.AspNetCore](https://github.com/NLog/NLog.Web) | `5.3.11` | `5.3.12` |
| [OpenIddict.Core](https://github.com/openiddict/openiddict-core) | `5.7.0` | `5.7.1` |
| [Microsoft.Extensions.Caching.StackExchangeRedis](https://github.com/dotnet/aspnetcore) | `8.0.7` | `8.0.8` |
| [Microsoft.Extensions.Azure](https://github.com/Azure/azure-sdk-for-net) | `1.7.4` | `1.7.5` |
| [libphonenumber-csharp](https://github.com/twcclegg/libphonenumber-csharp) | `8.13.42` | `8.13.43` |
| [BenchmarkDotNet](https://github.com/dotnet/BenchmarkDotNet) | `0.13.12` | `0.14.0` |


Updates `Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation` from 8.0.7 to 8.0.8
- [Release notes](https://github.com/dotnet/aspnetcore/releases)
- [Changelog](https://github.com/dotnet/aspnetcore/blob/main/docs/ReleasePlanning.md)
- [Commits](dotnet/aspnetcore@v8.0.7...v8.0.8)

Updates `Microsoft.AspNetCore.Authentication.Facebook` from 8.0.7 to 8.0.8
- [Release notes](https://github.com/dotnet/aspnetcore/releases)
- [Changelog](https://github.com/dotnet/aspnetcore/blob/main/docs/ReleasePlanning.md)
- [Commits](dotnet/aspnetcore@v8.0.7...v8.0.8)

Updates `Microsoft.AspNetCore.Authentication.Google` from 8.0.7 to 8.0.8
- [Release notes](https://github.com/dotnet/aspnetcore/releases)
- [Changelog](https://github.com/dotnet/aspnetcore/blob/main/docs/ReleasePlanning.md)
- [Commits](dotnet/aspnetcore@v8.0.7...v8.0.8)

Updates `Microsoft.AspNetCore.Authentication.MicrosoftAccount` from 8.0.7 to 8.0.8
- [Release notes](https://github.com/dotnet/aspnetcore/releases)
- [Changelog](https://github.com/dotnet/aspnetcore/blob/main/docs/ReleasePlanning.md)
- [Commits](dotnet/aspnetcore@v8.0.7...v8.0.8)

Updates `Microsoft.AspNetCore.Authentication.OpenIdConnect` from 8.0.0 to 8.0.8
- [Release notes](https://github.com/dotnet/aspnetcore/releases)
- [Changelog](https://github.com/dotnet/aspnetcore/blob/main/docs/ReleasePlanning.md)
- [Commits](dotnet/aspnetcore@v8.0.0...v8.0.8)

Updates `Microsoft.IdentityModel.Protocols.OpenIdConnect` from 6.35.0 to 7.1.2
- [Release notes](https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet/releases)
- [Changelog](https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet/blob/dev/CHANGELOG.md)
- [Commits](AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet@6.35.0...7.1.2)

Updates `Microsoft.AspNetCore.Authentication.Twitter` from 8.0.7 to 8.0.8
- [Release notes](https://github.com/dotnet/aspnetcore/releases)
- [Changelog](https://github.com/dotnet/aspnetcore/blob/main/docs/ReleasePlanning.md)
- [Commits](dotnet/aspnetcore@v8.0.7...v8.0.8)

Updates `Microsoft.AspNetCore.DataProtection.StackExchangeRedis` from 8.0.7 to 8.0.8
- [Release notes](https://github.com/dotnet/aspnetcore/releases)
- [Changelog](https://github.com/dotnet/aspnetcore/blob/main/docs/ReleasePlanning.md)
- [Commits](dotnet/aspnetcore@v8.0.7...v8.0.8)

Updates `Microsoft.AspNetCore.Mvc.Testing` from 8.0.7 to 8.0.8
- [Release notes](https://github.com/dotnet/aspnetcore/releases)
- [Changelog](https://github.com/dotnet/aspnetcore/blob/main/docs/ReleasePlanning.md)
- [Commits](dotnet/aspnetcore@v8.0.7...v8.0.8)

Updates `Microsoft.AspNetCore.Owin` from 8.0.7 to 8.0.8
- [Release notes](https://github.com/dotnet/aspnetcore/releases)
- [Changelog](https://github.com/dotnet/aspnetcore/blob/main/docs/ReleasePlanning.md)
- [Commits](dotnet/aspnetcore@v8.0.7...v8.0.8)

Updates `GraphQL` from 7.8.0 to 7.9.0
- [Release notes](https://github.com/graphql-dotnet/graphql-dotnet/releases)
- [Commits](graphql-dotnet/graphql-dotnet@7.8.0...7.9.0)

Updates `GraphQL.DataLoader` from 7.8.0 to 7.9.0
- [Release notes](https://github.com/graphql-dotnet/graphql-dotnet/releases)
- [Commits](graphql-dotnet/graphql-dotnet@7.8.0...7.9.0)

Updates `GraphQL` from 7.8.0 to 7.9.0
- [Release notes](https://github.com/graphql-dotnet/graphql-dotnet/releases)
- [Commits](graphql-dotnet/graphql-dotnet@7.8.0...7.9.0)

Updates `GraphQL.MicrosoftDI` from 7.8.0 to 7.9.0
- [Release notes](https://github.com/graphql-dotnet/graphql-dotnet/releases)
- [Commits](graphql-dotnet/graphql-dotnet@7.8.0...7.9.0)

Updates `GraphQL` from 7.8.0 to 7.9.0
- [Release notes](https://github.com/graphql-dotnet/graphql-dotnet/releases)
- [Commits](graphql-dotnet/graphql-dotnet@7.8.0...7.9.0)

Updates `GraphQL.SystemTextJson` from 7.8.0 to 7.9.0
- [Release notes](https://github.com/graphql-dotnet/graphql-dotnet/releases)
- [Commits](graphql-dotnet/graphql-dotnet@7.8.0...7.9.0)

Updates `GraphQL` from 7.8.0 to 7.9.0
- [Release notes](https://github.com/graphql-dotnet/graphql-dotnet/releases)
- [Commits](graphql-dotnet/graphql-dotnet@7.8.0...7.9.0)

Updates `Jint` from 4.0.0 to 4.0.1
- [Release notes](https://github.com/sebastienros/jint/releases)
- [Commits](sebastienros/jint@v4.0.0...v4.0.1)

Updates `Azure.Storage.Blobs` from 12.15.1 to 12.21.2
- [Release notes](https://github.com/Azure/azure-sdk-for-net/releases)
- [Commits](Azure/azure-sdk-for-net@Azure.Storage.Blobs_12.15.1...Azure.Storage.Blobs_12.21.2)

Updates `System.IO.Hashing` from 6.0.0 to 8.0.0

Updates `AWSSDK.S3` from 3.7.103.42 to 3.7.401.1
- [Changelog](https://github.com/aws/aws-sdk-net/blob/main/SDK.CHANGELOG.MD)
- [Commits](https://github.com/aws/aws-sdk-net/commits)

Updates `Azure.Identity` from 1.11.3 to 1.12.0

Updates `Microsoft.IdentityModel.Protocols.OpenIdConnect` from 6.35.0 to 8.0.1
- [Release notes](https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet/releases)
- [Changelog](https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet/blob/dev/CHANGELOG.md)
- [Commits](AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet@6.35.0...7.1.2)

Updates `Microsoft.Extensions.Http.Resilience` from 8.4.0 to 8.8.0
- [Release notes](https://github.com/dotnet/extensions/releases)
- [Commits](dotnet/extensions@v8.4.0...v8.8.0)

Updates `OpenIddict.Server.AspNetCore` from 5.7.0 to 5.7.1
- [Release notes](https://github.com/openiddict/openiddict-core/releases)
- [Commits](openiddict/openiddict-core@5.7.0...5.7.1)

Updates `OpenIddict.Server.DataProtection` from 5.7.0 to 5.7.1
- [Release notes](https://github.com/openiddict/openiddict-core/releases)
- [Commits](openiddict/openiddict-core@5.7.0...5.7.1)

Updates `OpenIddict.Validation.AspNetCore` from 5.7.0 to 5.7.1
- [Release notes](https://github.com/openiddict/openiddict-core/releases)
- [Commits](openiddict/openiddict-core@5.7.0...5.7.1)

Updates `OpenIddict.Validation.DataProtection` from 5.7.0 to 5.7.1
- [Release notes](https://github.com/openiddict/openiddict-core/releases)
- [Commits](openiddict/openiddict-core@5.7.0...5.7.1)

Updates `OpenIddict.Validation.SystemNetHttp` from 5.7.0 to 5.7.1
- [Release notes](https://github.com/openiddict/openiddict-core/releases)
- [Commits](openiddict/openiddict-core@5.7.0...5.7.1)

Updates `JsonPath.Net` from 1.1.3 to 1.1.4
- [Commits](https://github.com/json-everything/json-everything/commits)

Updates `Azure.Extensions.AspNetCore.Configuration.Secrets` from 1.3.1 to 1.3.2
- [Release notes](https://github.com/Azure/azure-sdk-for-net/releases)
- [Commits](Azure/azure-sdk-for-net@Azure.Extensions.AspNetCore.Configuration.Secrets_1.3.1...Azure.Extensions.AspNetCore.Configuration.Secrets_1.3.2)

Updates `NLog.Web.AspNetCore` from 5.3.11 to 5.3.12
- [Release notes](https://github.com/NLog/NLog.Web/releases)
- [Changelog](https://github.com/NLog/NLog.Web/blob/master/CHANGELOG.MD)
- [Commits](NLog/NLog.Web@v5.3.11...v5.3.12)

Updates `OpenIddict.Core` from 5.7.0 to 5.7.1
- [Release notes](https://github.com/openiddict/openiddict-core/releases)
- [Commits](openiddict/openiddict-core@5.7.0...5.7.1)

Updates `Microsoft.Extensions.Caching.StackExchangeRedis` from 8.0.7 to 8.0.8
- [Release notes](https://github.com/dotnet/aspnetcore/releases)
- [Changelog](https://github.com/dotnet/aspnetcore/blob/main/docs/ReleasePlanning.md)
- [Commits](dotnet/aspnetcore@v8.0.7...v8.0.8)

Updates `Microsoft.Extensions.Azure` from 1.7.4 to 1.7.5
- [Release notes](https://github.com/Azure/azure-sdk-for-net/releases)
- [Commits](Azure/azure-sdk-for-net@Microsoft.Extensions.Azure_1.7.4...Microsoft.Extensions.Azure_1.7.5)

Updates `Azure.Identity` from 1.11.3 to 1.12.0

Updates `libphonenumber-csharp` from 8.13.42 to 8.13.43
- [Release notes](https://github.com/twcclegg/libphonenumber-csharp/releases)
- [Commits](twcclegg/libphonenumber-csharp@v8.13.42...v8.13.43)

Updates `BenchmarkDotNet` from 0.13.12 to 0.14.0
- [Release notes](https://github.com/dotnet/BenchmarkDotNet/releases)
- [Commits](dotnet/BenchmarkDotNet@v0.13.12...v0.14.0)

---
updated-dependencies:
- dependency-name: Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: Microsoft.AspNetCore.Authentication.Facebook
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: Microsoft.AspNetCore.Authentication.Google
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: Microsoft.AspNetCore.Authentication.MicrosoftAccount
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: Microsoft.AspNetCore.Authentication.OpenIdConnect
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: Microsoft.IdentityModel.Protocols.OpenIdConnect
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: Microsoft.AspNetCore.Authentication.Twitter
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: Microsoft.AspNetCore.DataProtection.StackExchangeRedis
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: Microsoft.AspNetCore.Mvc.Testing
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: Microsoft.AspNetCore.Owin
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: GraphQL
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: GraphQL.DataLoader
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: GraphQL
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: GraphQL.MicrosoftDI
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: GraphQL
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: GraphQL.SystemTextJson
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: GraphQL
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: Jint
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: Azure.Storage.Blobs
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: System.IO.Hashing
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: AWSSDK.S3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: Azure.Identity
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: Microsoft.IdentityModel.Protocols.OpenIdConnect
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: Microsoft.Extensions.Http.Resilience
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: OpenIddict.Server.AspNetCore
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: OpenIddict.Server.DataProtection
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: OpenIddict.Validation.AspNetCore
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: OpenIddict.Validation.DataProtection
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: OpenIddict.Validation.SystemNetHttp
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: JsonPath.Net
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: Azure.Extensions.AspNetCore.Configuration.Secrets
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: NLog.Web.AspNetCore
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: OpenIddict.Core
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: Microsoft.Extensions.Caching.StackExchangeRedis
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: Microsoft.Extensions.Azure
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: Azure.Identity
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: libphonenumber-csharp
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: BenchmarkDotNet
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Aug 19, 2024
Copy link
Author

dependabot bot commented on behalf of github Aug 26, 2024

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Aug 26, 2024
@dependabot dependabot bot deleted the dependabot/nuget/all-dependencies-457f432c6a branch August 26, 2024 12:44
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants