Skip to content
Draft
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
1 change: 1 addition & 0 deletions src/Accounts/Accounts/ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
-->

## Upcoming Release
* Aligned authentication dependency versions with the module manifest.
Copy link

Copilot AI May 1, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This entry is quite internal/vague (“aligned dependency versions with the module manifest”) and doesn’t tell users what changed. Please make the entry user-impact oriented (what behavior is fixed/changed) and reference an issue if available.

Suggested change
* Aligned authentication dependency versions with the module manifest.
* Improved authentication reliability in Az.Accounts by updating packaged dependency versions to match the module manifest.
- Helps prevent version mismatch issues when loading the module and signing in to Azure.

Copilot uses AI. Check for mistakes.

## Version 5.4.0
* Updated the `System.Memory` dependency to v4.6.3 to support the Storage SDK update.
Expand Down
6 changes: 3 additions & 3 deletions src/Accounts/Authentication/Authentication.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
<ItemGroup>
<PackageReference Include="Azure.Identity" Version="1.13.0" />
<PackageReference Include="Azure.Identity.Broker" Version="1.1.0" />
<PackageReference Include="Microsoft.Identity.Client" Version="4.82.1" />
<PackageReference Include="Microsoft.Identity.Client.Extensions.Msal" Version="4.82.1" />
<PackageReference Include="Microsoft.Identity.Client.Broker" Version="4.82.1" />
<PackageReference Include="Microsoft.Identity.Client" Version="4.83.1" />
<PackageReference Include="Microsoft.Identity.Client.Extensions.Msal" Version="4.83.1" />
<PackageReference Include="Microsoft.Identity.Client.Broker" Version="4.83.1" />
<PackageReference Include="Microsoft.Security.Utilities.Core" Version="1.8.0" />
</ItemGroup>

Expand Down
2 changes: 1 addition & 1 deletion src/ArtifactSigning/ArtifactSigning/ArtifactSigning.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<PackageReference Include="Polly" Version="7.2.4" />
<PackageReference Include="Azure.Developer.TrustedSigning.CryptoProvider" Version="0.1.38" />
<PackageReference Include="Azure.CodeSigning.Sdk" Version="0.1.127" />
<PackageReference Include="System.Formats.Asn1" Version="6.0.1" />
<PackageReference Include="System.Formats.Asn1" Version="8.0.1" />
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

These transient dependencies have to be managed universally.
Possible solution: modules add package references without version, a common manifest defines universal version for each packge

https://github.com/search?q=repo%3AAzure%2Fazure-sdk-for-net+packagereference+update+language%3AXML&type=code&l=XML

<PackageReference Include="System.Security.Cryptography.Pkcs" Version="6.0.3" />
</ItemGroup>

Expand Down
1 change: 1 addition & 0 deletions src/ArtifactSigning/ArtifactSigning/ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
- Additional information about change #1
-->
## Upcoming Release
* Updated the `System.Formats.Asn1` dependency to v8.0.1.
Copy link

Copilot AI May 1, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This changelog entry is a dependency-version note without user-facing context. Please update it to explain the user impact (e.g., compatibility/security fix) and add an issue reference if applicable, or omit if it’s purely internal alignment.

Suggested change
* Updated the `System.Formats.Asn1` dependency to v8.0.1.

Copilot uses AI. Check for mistakes.

## Version 0.1.6
* Updated docs and code comments to reference artifact signing accounts instead of trusted signing accounts.
Expand Down
1 change: 1 addition & 0 deletions src/KeyVault/KeyVault/ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
- Additional information about change #1
-->
## Upcoming Release
* Updated the `System.Security.Cryptography.Cng` dependency to v5.0.0.
Copy link

Copilot AI May 1, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The changelog is user-facing; this entry only states an internal dependency bump. Please reword to describe what this changes for users (bug fix/compatibility/security), and include a GitHub issue reference if there is one, or omit if no user-visible change.

Suggested change
* Updated the `System.Security.Cryptography.Cng` dependency to v5.0.0.

Copilot uses AI. Check for mistakes.

## Version 6.4.3
* Added upcoming breaking change warning messages to `Get-AzKeyVaultKey` and `Get-AzKeyVaultSecret` for filtering certificate-backed keys and secrets.
Expand Down
2 changes: 1 addition & 1 deletion src/KeyVault/KeyVault/KeyVault.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<PackageReference Include="Portable.BouncyCastle" Version="1.8.8" />
<PackageReference Include="Microsoft.Azure.KeyVault" Version="3.0.1" />
<PackageReference Include="Microsoft.Azure.KeyVault.WebKey" Version="3.0.1" />
<PackageReference Include="System.Security.Cryptography.Cng" Version="4.5.0" />
<PackageReference Include="System.Security.Cryptography.Cng" Version="5.0.0" />
</ItemGroup>

<ItemGroup>
Expand Down
1 change: 1 addition & 0 deletions src/RecoveryServices/RecoveryServices/ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
-->

## Upcoming Release
* Updated the `System.Security.Cryptography.Cng` dependency to v5.0.0.
Copy link

Copilot AI May 1, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The changelog is user-facing; this entry is an internal dependency/version note and doesn’t explain any user-visible impact. Consider rewording to describe the behavioral/fix impact (and add an issue reference if applicable), or omit the entry if there is no user-facing change.

Suggested change
* Updated the `System.Security.Cryptography.Cng` dependency to v5.0.0.

Copilot uses AI. Check for mistakes.

## Version 7.11.2
* Added Cross region restore support for upcoming regions Southeast Asia 3
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="System.Security.Cryptography.Cng" Version="4.4.0" />
<PackageReference Include="System.Security.Cryptography.Cng" Version="5.0.0" />
</ItemGroup>

<ItemGroup>
Expand Down
Loading