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 10 updates #16479

Closed

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jul 23, 2024

Bumps the all-dependencies group with 10 updates:

Package From To
YesSql.Abstractions 5.0.0 5.1.0
YesSql.Core 5.0.0 5.1.0
YesSql.Filters.Abstractions 5.0.0 5.1.0
YesSql.Filters.Query 5.0.0 5.1.0
AWSSDK.S3 3.7.310.7 3.7.310.8
Microsoft.Identity.Web 3.0.0 3.0.1
Microsoft.IdentityModel.Protocols.OpenIdConnect 7.6.2 8.0.1
Microsoft.AspNetCore.Authentication.OpenIdConnect 8.0.7 9.0.0-preview.6.24328.4
YesSql 5.0.0 5.1.0
Fluid.Core 2.10.0 2.11.0

Updates YesSql.Abstractions from 5.0.0 to 5.1.0

Release notes

Sourced from YesSql.Abstractions's releases.

5.1.0

What's Changed

New Contributors

Full Changelog: sebastienros/yessql@v5.0.0...v5.0.1

Commits

Updates YesSql.Core from 5.0.0 to 5.1.0

Release notes

Sourced from YesSql.Core's releases.

5.1.0

What's Changed

New Contributors

Full Changelog: sebastienros/yessql@v5.0.0...v5.0.1

Commits

Updates YesSql.Abstractions from 5.0.0 to 5.1.0

Release notes

Sourced from YesSql.Abstractions's releases.

5.1.0

What's Changed

New Contributors

Full Changelog: sebastienros/yessql@v5.0.0...v5.0.1

Commits

Updates YesSql.Filters.Abstractions from 5.0.0 to 5.1.0

Release notes

Sourced from YesSql.Filters.Abstractions's releases.

5.1.0

What's Changed

New Contributors

Full Changelog: sebastienros/yessql@v5.0.0...v5.0.1

Commits

Updates YesSql.Filters.Query from 5.0.0 to 5.1.0

Release notes

Sourced from YesSql.Filters.Query's releases.

5.1.0

What's Changed

New Contributors

Full Changelog: sebastienros/yessql@v5.0.0...v5.0.1

Commits

Updates YesSql.Abstractions from 5.0.0 to 5.1.0

Release notes

Sourced from YesSql.Abstractions's releases.

5.1.0

What's Changed

New Contributors

Full Changelog: sebastienros/yessql@v5.0.0...v5.0.1

Commits

Updates YesSql.Filters.Abstractions from 5.0.0 to 5.1.0

Release notes

Sourced from YesSql.Filters.Abstractions's releases.

5.1.0

What's Changed

New Contributors

Full Changelog: sebastienros/yessql@v5.0.0...v5.0.1

Commits

Updates AWSSDK.S3 from 3.7.310.7 to 3.7.310.8

Commits

Updates Microsoft.Identity.Web from 3.0.0 to 3.0.1

Release notes

Sourced from Microsoft.Identity.Web's releases.

3.0.1

  • Updated to Microsoft.IdentityModel.* 8.0.1
Changelog

Sourced from Microsoft.Identity.Web's changelog.

3.0.1

  • Updated to Microsoft.IdentityModel.* 8.0.1
Commits

Updates Microsoft.IdentityModel.Protocols.OpenIdConnect from 7.6.2 to 8.0.1

Release notes

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

8.0.1

Bug fixes

  • IdentityModel now resolves the public key to EPK. See issue #1951 for details.
  • Fix a race condition where SignatureProvider was disposed but still able to leverage the cache and SignatureProvider now disposes when compacting. See PR #2682 for details.
  • For JWE, JsonWebTokenHandler.ValidateJWEAsync now considers the decrypt keys in the configuration. See issue #2737 for details.

Performance improvement

  • AppContext.TryGetSwitch statically caches internally but takes out a lock. .NET almost always caches these values. They're not expected to change while the process is running unlike normal config. IdentityModel now caches the value. See issue #2722 for details.

8.0.0

CVE package updates

CVE-2024-30105

  • See PR #2707 for details.

Breaking change:

Full list of breaking changes.

  • A derived ClaimsIdentity where claim retrieval is case-sensitive. The current ClaimsIdentity, in .NET, retrieves claims in a case-insensitive manner which is different than querying the underlying SecurityToken. The new CaseSensitiveClaimsIdentity class provides consistent retrieval logic with SecurityToken. Fallback to previous behavior via an AppContext switch. See PR #2700 for details.
  • Make CollectionUtilities.IsNullOrEmpty internal. See issues Order is not preserved when returning documents from SQL query #2651 and #1722 for details.

Overall improvements to the validation in IdentityModel:

  • See design proposal #2711 for details, all work internal for now. Please comment in the GitHub issue and provide feedback there.

New Features:

  • Allow users to provide a Stream to Write in OIDCConfigurationSerializer. See PR #2698 for details.

Bug fixes:

Fundamentals

  • Remove code that was used in target frameworks that got removed. See PR #2673 for details.
  • Rename local variables for better readability. See PR #2674 for details.
  • Refactor XML comments for improved clarity. See PR #2676, #2677, #2678, #2689 and #2703 for details.
  • Fix flaky test. See issue #2683 for details.
  • Made ConfigurationManager.GetConfigurationAsync a virtual method. See PR #2661

8.0.0-preview1

Breaking changes:

  • IdentityModel 8x no longer supports .net461, which has reached end of life and is no longer supported. See issue #2544 for details.
  • Two IdentityModel extension dlls Microsoft.IdentityModel.KeyVaultExtensions and Microsoft.IdentityModel.ManagedKeyVaultSecurityKey were using ADAL, which is no longer supported . The affected packages have been removed, as the replacement is to use Microsoft.Identity.Web. See issue #2454 for details.
  • AppContext.SetSwitch which were included in IdentityModel 7x, have been removed and are the default in IdentityModel 8x. The result is a more performant IdentityModel by default. See issue #2629 and https://aka.ms/IdentityModel8x for details.

... (truncated)

Changelog

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

8.0.1

Bug fixes

  • IdentityModel now resolves the public key to EPK. See issue #1951 for details.
  • Fix a race condition where SignatureProvider was disposed but still able to leverage the cache and SignatureProvider now disposes when compacting. See PR #2682 for details.
  • For JWE, JsonWebTokenHandler.ValidateJWEAsync now considers the decrypt keys in the configuration. See issue #2737 for details.

Performance improvement

  • AppContext.TryGetSwitch statically caches internally but takes out a lock. .NET almost always caches these values. They're not expected to change while the process is running unlike normal config. IdentityModel now caches the value. See issue #2722 for details.

8.0.0

CVE package updates

CVE-2024-30105

  • See PR #2707 for details.

Breaking change:

Full list of breaking changes.

  • A derived ClaimsIdentity where claim retrieval is case-sensitive. The current ClaimsIdentity, in .NET, retrieves claims in a case-insensitive manner which is different than querying the underlying SecurityToken. The new CaseSensitiveClaimsIdentity class provides consistent retrieval logic with SecurityToken. Fallback to previous behavior via an AppContext switch. See PR #2700 for details.
  • Make CollectionUtilities.IsNullOrEmpty internal. See issues Order is not preserved when returning documents from SQL query #2651 and #1722 for details.

Overall improvements to the validation in IdentityModel:

  • See design proposal #2711 for details, all work internal for now. Please comment in the GitHub issue and provide feedback there.

New Features:

  • Allow users to provide a Stream to Write in OIDCConfigurationSerializer. See PR #2698 for details.

Bug fixes:

Fundamentals

  • Remove code that was used in target frameworks that got removed. See PR #2673 for details.
  • Rename local variables for better readability. See PR #2674 for details.
  • Refactor XML comments for improved clarity. See PR #2676, #2677, #2678, #2689 and #2703 for details.
  • Fix flaky test. See issue #2683 for details.
  • Made ConfigurationManager.GetConfigurationAsync a virtual method. See PR #2661

8.0.0-preview1

Breaking changes:

  • IdentityModel 8x no longer supports .net461, which has reached end of life and is no longer supported. See issue #2544 for details.
  • Two IdentityModel extension dlls Microsoft.IdentityModel.KeyVaultExtensions and Microsoft.IdentityModel.ManagedKeyVaultSecurityKey were using ADAL, which is no longer supported . The affected packages have been removed, as the replacement is to use Microsoft.Identity.Web. See issue #2454 for details.
  • AppContext.SetSwitch which were included in IdentityModel 7x, have been removed and are the default in IdentityModel 8x. The result is a more performant IdentityModel by default. See issue #2629 and https://aka.ms/IdentityModel8x for details.

... (truncated)

Commits

Bumps the all-dependencies group with 10 updates:

| Package | From | To |
| --- | --- | --- |
| [YesSql.Abstractions](https://github.com/sebastienros/yessql) | `5.0.0` | `5.1.0` |
| [YesSql.Core](https://github.com/sebastienros/yessql) | `5.0.0` | `5.1.0` |
| [YesSql.Filters.Abstractions](https://github.com/sebastienros/yessql) | `5.0.0` | `5.1.0` |
| [YesSql.Filters.Query](https://github.com/sebastienros/yessql) | `5.0.0` | `5.1.0` |
| [AWSSDK.S3](https://github.com/aws/aws-sdk-net) | `3.7.310.7` | `3.7.310.8` |
| [Microsoft.Identity.Web](https://github.com/AzureAD/microsoft-identity-web) | `3.0.0` | `3.0.1` |
| [Microsoft.IdentityModel.Protocols.OpenIdConnect](https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet) | `7.6.2` | `8.0.1` |
| [Microsoft.AspNetCore.Authentication.OpenIdConnect](https://github.com/dotnet/aspnetcore) | `8.0.7` | `9.0.0-preview.6.24328.4` |
| [YesSql](https://github.com/sebastienros/yessql) | `5.0.0` | `5.1.0` |
| [Fluid.Core](https://github.com/sebastienros/fluid) | `2.10.0` | `2.11.0` |


Updates `YesSql.Abstractions` from 5.0.0 to 5.1.0
- [Release notes](https://github.com/sebastienros/yessql/releases)
- [Commits](sebastienros/yessql@v5.0.0...v5.1.0)

Updates `YesSql.Core` from 5.0.0 to 5.1.0
- [Release notes](https://github.com/sebastienros/yessql/releases)
- [Commits](sebastienros/yessql@v5.0.0...v5.1.0)

Updates `YesSql.Abstractions` from 5.0.0 to 5.1.0
- [Release notes](https://github.com/sebastienros/yessql/releases)
- [Commits](sebastienros/yessql@v5.0.0...v5.1.0)

Updates `YesSql.Filters.Abstractions` from 5.0.0 to 5.1.0
- [Release notes](https://github.com/sebastienros/yessql/releases)
- [Commits](sebastienros/yessql@v5.0.0...v5.1.0)

Updates `YesSql.Filters.Query` from 5.0.0 to 5.1.0
- [Release notes](https://github.com/sebastienros/yessql/releases)
- [Commits](sebastienros/yessql@v5.0.0...v5.1.0)

Updates `YesSql.Abstractions` from 5.0.0 to 5.1.0
- [Release notes](https://github.com/sebastienros/yessql/releases)
- [Commits](sebastienros/yessql@v5.0.0...v5.1.0)

Updates `YesSql.Filters.Abstractions` from 5.0.0 to 5.1.0
- [Release notes](https://github.com/sebastienros/yessql/releases)
- [Commits](sebastienros/yessql@v5.0.0...v5.1.0)

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

Updates `Microsoft.Identity.Web` from 3.0.0 to 3.0.1
- [Release notes](https://github.com/AzureAD/microsoft-identity-web/releases)
- [Changelog](https://github.com/AzureAD/microsoft-identity-web/blob/master/changelog.md)
- [Commits](AzureAD/microsoft-identity-web@3.0.0...3.0.1)

Updates `Microsoft.IdentityModel.Protocols.OpenIdConnect` from 7.6.2 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@7.6.2...8.0.1)

Updates `Microsoft.AspNetCore.Authentication.OpenIdConnect` from 8.0.7 to 9.0.0-preview.6.24328.4
- [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...v9.0.0-preview.6.24328.4)

Updates `YesSql` from 5.0.0 to 5.1.0
- [Release notes](https://github.com/sebastienros/yessql/releases)
- [Commits](sebastienros/yessql@v5.0.0...v5.1.0)

Updates `YesSql.Abstractions` from 5.0.0 to 5.1.0
- [Release notes](https://github.com/sebastienros/yessql/releases)
- [Commits](sebastienros/yessql@v5.0.0...v5.1.0)

Updates `YesSql.Core` from 5.0.0 to 5.1.0
- [Release notes](https://github.com/sebastienros/yessql/releases)
- [Commits](sebastienros/yessql@v5.0.0...v5.1.0)

Updates `Fluid.Core` from 2.10.0 to 2.11.0
- [Release notes](https://github.com/sebastienros/fluid/releases)
- [Commits](sebastienros/fluid@v2.10.0...v2.11.0)

---
updated-dependencies:
- dependency-name: YesSql.Abstractions
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: YesSql.Core
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: YesSql.Abstractions
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: YesSql.Filters.Abstractions
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: YesSql.Filters.Query
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: YesSql.Abstractions
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: YesSql.Filters.Abstractions
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: AWSSDK.S3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: Microsoft.Identity.Web
  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.OpenIdConnect
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: YesSql
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: YesSql.Abstractions
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: YesSql.Core
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: Fluid.Core
  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 .NET Pull requests that update .net code dependencies Pull requests that update a dependency file labels Jul 23, 2024
@Piedone
Copy link
Member

Piedone commented Jul 23, 2024

I've just run Dependabot as a test. This isn't needed, see #16474.

@Piedone Piedone closed this Jul 23, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Jul 23, 2024

This pull request was built based on a group rule. Closing it will not ignore any of these versions in future pull requests.

To ignore these dependencies, configure ignore rules in dependabot.yml

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 .NET Pull requests that update .net code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant