Skip to content

Commit 6ad58ba

Browse files
authored
[in-proc backport] Update Azure.Identity to 1.11.0 (#10002) (#10015)
* Update Azure.Identity to 1.11.0 (#10002) * Update Azure.Identity to 1.11.0 * update release_notes.md * Enable and fix Verify_DepsJsonChanges * Update WebJobs.Script Azure.Identity * Fix dependency downgrade * NugetAudit: true * Add explicit System.IO.FileSystem.AccessControl ref * Update deps.json * Add comment explaining AccessControl/5.0.0 * Add System.ClientModel to runtimeassemblies.json * Add ClientModel.dll to test
1 parent 4ab5b53 commit 6ad58ba

File tree

6 files changed

+161
-156
lines changed

6 files changed

+161
-156
lines changed

release_notes.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,4 @@
88
- Update Node.js Worker Version to [3.10.0](https://github.com/Azure/azure-functions-nodejs-worker/releases/tag/v3.10.0) (#9999)
99
- Update PowerShell worker 7.2 to [4.0.3220](https://github.com/Azure/azure-functions-powershell-worker/releases/tag/v4.0.3220)
1010
- Update PowerShell worker 7.4 to [4.0.3219](https://github.com/Azure/azure-functions-powershell-worker/releases/tag/v4.0.3219)
11+
- Update Azure.Identity to 1.11.0 (#10002)

src/WebJobs.Script.WebHost/WebJobs.Script.WebHost.csproj

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
</ItemGroup>
6363

6464
<ItemGroup>
65-
<PackageReference Include="Azure.Identity" Version="1.10.2" />
65+
<PackageReference Include="Azure.Identity" Version="1.11.0" />
6666
<PackageReference Include="Azure.Security.KeyVault.Secrets" Version="4.2.0" />
6767
<PackageReference Include="Microsoft.ApplicationInsights" Version="2.22.0" />
6868
<PackageReference Include="Microsoft.ApplicationInsights.AspNetCore" Version="2.21.0" />
@@ -82,11 +82,16 @@
8282
<PackageReference Include="Microsoft.Azure.WebSites.DataProtection" Version="2.1.91-alpha" />
8383
<PackageReference Include="Microsoft.IdentityModel.Tokens" Version="$(IdentityDependencyVersion)" />
8484
<PackageReference Include="Microsoft.IdentityModel.Protocols.OpenIdConnect" Version="$(IdentityDependencyVersion)" />
85-
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="$(IdentityDependencyVersion)" />
8685
<PackageReference Include="Microsoft.Security.Utilities" Version="1.3.0" />
87-
<PackageReference Include="StyleCop.Analyzers" Version="1.2.0-beta.435">
88-
<PrivateAssets>all</PrivateAssets>
89-
</PackageReference>
86+
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
87+
<PackageReference Include="StyleCop.Analyzers" Version="1.2.0-beta.435" PrivateAssets="all" />
88+
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="$(IdentityDependencyVersion)" />
89+
90+
<!--
91+
System.IO.FileSystem.AccessControl/5.0.0 pinned to avoid an unintented downgrade to 4.7.0.
92+
See https://github.com/Azure/azure-functions-host/pull/10002
93+
-->
94+
<PackageReference Include="System.IO.FileSystem.AccessControl" Version="5.0.0" />
9095
<PackageReference Include="System.Net.NameResolution" Version="4.3.0" />
9196
<PackageReference Include="System.Private.Uri" Version="4.3.2" />
9297
<PackageReference Include="System.Security.Cryptography.Xml" Version="4.7.1" />

src/WebJobs.Script/WebJobs.Script.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@
3939
</ItemGroup>
4040
<ItemGroup>
4141
<!-- Dependencies needed for Storage Providers -->
42-
<PackageReference Include="Azure.Core" Version="1.35.0" />
43-
<PackageReference Include="Azure.Identity" Version="1.10.2" />
42+
<PackageReference Include="Azure.Core" Version="1.38.0" />
43+
<PackageReference Include="Azure.Identity" Version="1.11.0" />
4444
<PackageReference Include="Azure.Storage.Blobs" Version="12.13.0" />
4545
<PackageReference Include="Microsoft.ApplicationInsights" Version="2.22.0" />
4646
<PackageReference Include="Microsoft.ApplicationInsights.AspNetCore" Version="2.21.0" />

src/WebJobs.Script/runtimeassemblies.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -907,6 +907,10 @@
907907
"name": "System.Buffers",
908908
"resolutionPolicy": "minorMatchOrLower"
909909
},
910+
{
911+
"name": "System.ClientModel",
912+
"resolutionPolicy": "runtimeVersion"
913+
},
910914
{
911915
"name": "System.Collections",
912916
"resolutionPolicy": "runtimeVersion"

0 commit comments

Comments
 (0)