Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 11, 2025

Updated Duende.IdentityModel from 7.0.0 to 8.0.0.

Release notes

Sourced from Duende.IdentityModel's releases.

8.0.0

This is a major release which brings a variety of changes including support for .NET 10.

There are no changes from the Release Candidate.

Breaking Changes

  • Remove Base64Url, using SDK/Runtime provided type instead. by @​damianh in #​249
  • Removed Obsolete DateTimeExtensions by @​bhazen in #​255
  • Make DynamicClientRegistrationDocument.Extensions Non Nullable by @​bhazen in #​258

Enhancements

  • Add IDisposable to ProtocolResponse by @​stefannikolei in #​192
  • .NET 10 RC1 support by @​damianh in #​211
  • Add Additional Metadata Document Fields by @​bhazen in #​236
  • Remove unused package references by @​damianh in #​242
  • Add support for JSON claim value type originally by @​taufikdev88 in #​62, merged in #​248
  • Support POST for GetUserInfo by @​bhazen in #​256
  • Allow Using HttpClient BaseAddress for Authority in DiscoveryCache by @​bhazen in #​257
  • .NET 10 RC2 by @​damianh in #​277
  • Update to .NET 10 GA Release by @​bhazen in #​294

Bug Fixes

  • Fix broken documentation link by @​StuFrankish in #​213
  • Fix some formatting that is causing .NET 10 PR to fail by @​damianh in #​238

Upgrading

Replacing Use of Base64Url

Code which was previously using the public static Base64Url class from this library, should be updated to use the Base64Url class found in the System.Buffers.Text namespace.

Uses of the Encode method should be replaced with the EncodeToString method and uses of the Decode method should be replaced with the DecodeFromChars method.

For example, code which previously looked like this:

var jsonString = Base64Url.Decode(payload);

should be updated to this:

using System.Buffers.Text;

var jsonString = Base64Url.DecodeFromChars(payload);

Replacing Use of DateTimeExtensions

Code which was previously using the public static DateTimeExtensions class from this library, should be updated to use DateTimeOffset.ToUnixTimeSeconds() instead.

For example. code which previously looked like this:

DateTime.UtcNow.ToEpochTime()

... (truncated)

8.0.0-rc.1

This is a release candidate which contains a mix of bug fixes, enhancements, a few breaking changes, and support for .NET 10.

The only change from the most recent preview release is that this release candidate targets the released version of .NET 10 rather than .NET 10 RC2.

Breaking Changes

  • Remove Base64Url, using SDK/Runtime provided type instead. by @​damianh in #​249
  • Removed Obsolete DateTimeExtensions by @​bhazen in #​255
  • Make DynamicClientRegistrationDocument.Extensions Non Nullable by @​bhazen in #​258

Enhancements

  • Add IDisposable to ProtocolResponse by @​stefannikolei in #​192
  • .NET 10 RC1 support by @​damianh in #​211
  • Add Additional Metadata Document Fields by @​bhazen in #​236
  • Remove unused package references by @​damianh in #​242
  • Add support for JSON claim value type originally by @​taufikdev88 in #​62, merged in #​248
  • Support POST for GetUserInfo by @​bhazen in #​256
  • Allow Using HttpClient BaseAddress for Authority in DiscoveryCache by @​bhazen in #​257
  • .NET 10 RC2 by @​damianh in #​277
  • Update to .NET 10 GA Release by @​bhazen in #​294

Bug Fixes

  • Fix broken documentation link by @​StuFrankish in #​213
  • Fix some formatting that is causing .NET 10 PR to fail by @​damianh in #​238

Upgrading

Replacing Use of Base64Url

Code which was previously using the public static Base64Url class from this library, should be updated to use the Base64Url class found in the System.Buffers.Text namespace.

Uses of the Encode method should be replaced with the EncodeToString method and uses of the Decode method should be replaced with the DecodeFromChars method.

For example, code which previously looked like this:

var jsonString = Base64Url.Decode(payload);

should be updated to this:

using System.Buffers.Text;

var jsonString = Base64Url.DecodeFromChars(payload);

Replacing Use of DateTimeExtensions

Code which was previously using the public static DateTimeExtensions class from this library, should be updated to use DateTimeOffset.ToUnixTimeSeconds() instead.

For example. code which previously looked like this:

DateTime.UtcNow.ToEpochTime()

... (truncated)

8.0.0-preview.1

This is a preview release which contains a mix of bug fixes, enhancements, a few breaking changes, and support for .NET 10 RC2.

Breaking Changes

  • Remove Base64Url, using SDK/Runtime provided type instead. by @​damianh in #​249
  • Removed Obsolete DateTimeExtensions by @​bhazen in #​255
  • Make DynamicClientRegistrationDocument.Extensions Non Nullable by @​bhazen in #​258

Enhancements

  • Add IDisposable to ProtocolResponse by @​stefannikolei in #​192
  • .NET 10 RC1 support by @​damianh in #​211
  • Add Additional Metadata Document Fields by @​bhazen in #​236
  • Remove unused package references by @​damianh in #​242
  • Add support for JSON claim value type originally by @​taufikdev88 in #​62, merged in #​248
  • Support POST for GetUserInfo by @​bhazen in #​256
  • Allow Using HttpClient BaseAddress for Authority in DiscoveryCache by @​bhazen in #​257
  • .NET 10 RC2 by @​damianh in #​277

Bug Fixes

  • Fix broken documentation link by @​StuFrankish in #​213
  • Fix some formatting that is causing .NET 10 PR to fail by @​damianh in #​238

Upgrading

Replacing Use of Base64Url

Code which was previously using the public static Base64Url class from this library, should be updated to use the Base64Url class found in the System.Buffers.Text namespace.

Uses of the Encode method should be replaced with the EncodeToString method and uses of the Decode method should be replaced with the DecodeFromChars method.

For example, code which previously looked like this:

var jsonString = Base64Url.Decode(payload);

should be updated to this:

using System.Buffers.Text;

var jsonString = Base64Url.DecodeFromChars(payload);

Replacing Use of DateTimeExtensions

Code which was previously using the public static DateTimeExtensions class from this library, should be updated to use DateTimeOffset.ToUnixTimeSeconds() instead.

For example. code which previously looked like this:

DateTime.UtcNow.ToEpochTime()

should be updated to this:

 ... (truncated)

## 7.1.0

This is a minor release which adds:
- Support for RFC 9701 (JWT Introspection Response)
- Support for optional claims from RFC 7662 (Token Introspection) 
- Support for new token 'typ' from RFC 7523 bis (JWT Client Authentication)
- Support for token endpoint authentication signing algorithms in discovery document

## Detailed Changes
- Add properties to TokenIntrospectionResponse for all optional claims in RFC 7662 by @​0xced in #​55 
- Mark DateTimeExtensions methods as obsolete by @​0xced in #​56
- Add constants for protocol parameters from RFC 9701 by @​bhazen in #​174
- Adds support for requesting & receiving JWT-based token introspection requests by @​StuFrankish in #​179
- Edit DiscoveryEndpoint xmldoc for clarity by @​josephdecock in #​181
- Add PAR endpoint to mtls_endpoint_aliases by @​josephdecock in #​182
- Add ClientAuthentication JWT claim type for private_key_jwt by @​josephdecock in #​186
- Support token_endpoint_auth_signing_alg_values_supported by @​josephdecock in #​203

## Contributors
Thanks to the Duende.IdentityModel community for your involvement with issues and pull requests!
- @​0xced
- @​bhazen 
- @​StuFrankish 
- @​josephdecock  

## 7.1.0-preview.1

This is the first preview release of Duende.IdentityModel 7.1.0. Highlights include
- Support for RFC 9701 (JWT Introspection Response)
- Support for optional claims from RFC 7662 (Token Introspection) 
- Support for new token 'typ' from RFC 7523 bis (JWT Client Authentication)

## Detailed Changes
- Add properties to TokenIntrospectionResponse for all optional claims in RFC 7662 by @​0xced in #​55 
- Mark DateTimeExtensions methods as obsolete by @​0xced in #​56
- Add constants for protocol parameters from RFC 9701 by @​bhazen in #​174
- Adds support for requesting & receiving JWT-based token introspection requests by @​StuFrankish in #​179
- Edit DiscoveryEndpoint xmldoc for clarity by @​josephdecock in #​181
- Add PAR endpoint to mtls_endpoint_aliases by @​josephdecock in #​182
- Add ClientAuthentication JWT claim type for private_key_jwt by @​josephdecock in #​186

## Contributors
Thanks to the Duende.IdentityModel community for your involvement with issues and pull requests!
- @​0xced
- @​bhazen 
- @​StuFrankish 
- @​josephdecock  

Commits viewable in [compare view](https://github.com/DuendeSoftware/foss/compare/imoc-7.0.0...im-8.0.0).
</details>

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=Duende.IdentityModel&package-manager=nuget&previous-version=7.0.0&new-version=8.0.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)


</details>

@dependabot dependabot bot added .NET Pull requests that update .net code dependencies Pull requests that update a dependency file labels Dec 11, 2025
---
updated-dependencies:
- dependency-name: Duende.IdentityModel
  dependency-version: 8.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/nuget/HelseId.Core.BFF.Sample/Api/Duende.IdentityModel-8.0.0 branch from b7c6dd1 to e287bf4 Compare December 12, 2025 06:12
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