Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<!-- This needs to be greater than or equal to the validation baseline version. The conditional logic around TargetNetNext is there
to avoid NU5104 for packing a release version library with prerelease deps. By adding preview to it, that warning is avoided.
-->
<MicrosoftIdentityWebVersion Condition="'$(MicrosoftIdentityWebVersion)' == ''">4.7.1</MicrosoftIdentityWebVersion>
<MicrosoftIdentityWebVersion Condition="'$(MicrosoftIdentityWebVersion)' == ''">4.8.1</MicrosoftIdentityWebVersion>
Comment thread
gladjohn marked this conversation as resolved.
<!--This will generate AssemblyVersion, AssemblyFileVersion and AssemblyInformationVersion-->
<Version>$(MicrosoftIdentityWebVersion)</Version>
<EnablePackageValidation>true</EnablePackageValidation>
Expand Down
18 changes: 18 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
## 4.8.0

### New features
- Add support for mTLS authentication-only mode for `DownstreamApi`. When protocol is set to MTLS, the configured certificate is attached to the request without an authorization header. See [#3747](https://github.com/AzureAD/microsoft-identity-web/pull/3747).
- Add token binding support to `MicrosoftIdentityMessageHandler`. See [#3743](https://github.com/AzureAD/microsoft-identity-web/pull/3743).

### Bug fixes
- Fix race condition in `MergedOptions` causing sporadic "No ClientId was specified" errors under concurrent `GraphServiceClient` usage. See [#3760](https://github.com/AzureAD/microsoft-identity-web/pull/3760).
- Fix `CredentialsProvider` DI lifetime mismatch causing startup crash in Development mode when using `AddMicrosoftIdentityWebApi()`. See [#3783](https://github.com/AzureAD/microsoft-identity-web/pull/3783).

### Dependencies updates
- Upgrade Microsoft Application Insights packages. See [#3763](https://github.com/AzureAD/microsoft-identity-web/pull/3763).
- Bump net8/net9/net10 runtime package baselines to patched crypto servicing versions. See [#3779](https://github.com/AzureAD/microsoft-identity-web/pull/3779).

### Documentation
- Clarify managed identity credential types for containerized vs. VM/App Service deployments. See [#3585](https://github.com/AzureAD/microsoft-identity-web/pull/3585).
- Add examples for using PostgreSQL as a distributed token cache. See [#3766](https://github.com/AzureAD/microsoft-identity-web/pull/3766).

## 4.7.0

### Bug fixes
Expand Down
Loading