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
5 changes: 4 additions & 1 deletion release_notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,7 @@
- `Microsoft.Azure.WebJobs.Host.Storage` updated to 5.0.1
- `Microsoft.Extensions.Azure` updated to 1.7.1
- `Azure.Storage.Blobs` updated to 12.19.1
- [in-proc] Updating FunctionsNetHost (dotnet isolated worker) to 1.0.10 (#10340)
- [in-proc] Updating FunctionsNetHost (dotnet isolated worker) to 1.0.10 (#10340)
- Upgraded the following package versions (#10326):
- `Azure.Security.KeyVault.Secrets` updated to 4.6.0
- `System.Format.Asn1` updated to 6.0.1
5 changes: 1 addition & 4 deletions src/WebJobs.Script.WebHost/WebJobs.Script.WebHost.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
<ItemGroup>
<PackageReference Include="Azure.Data.Tables" Version="12.8.3" />
<PackageReference Include="Azure.Identity" Version="1.11.4" />
<PackageReference Include="Azure.Security.KeyVault.Secrets" Version="4.2.0" />
<PackageReference Include="Azure.Security.KeyVault.Secrets" Version="4.6.0" />
<PackageReference Include="Microsoft.ApplicationInsights" Version="2.22.0" />
<PackageReference Include="Microsoft.ApplicationInsights.AspNetCore" Version="2.21.0" />
<PackageReference Include="Microsoft.ApplicationInsights.DependencyCollector" Version="2.21.0" />
Expand Down Expand Up @@ -93,9 +93,6 @@
-->
<PackageReference Include="System.IO.FileSystem.AccessControl" Version="5.0.0" />
<PackageReference Include="System.Net.NameResolution" Version="4.3.0" />
<PackageReference Include="System.Private.Uri" Version="4.3.2" />
<PackageReference Include="System.Security.Cryptography.Xml" Version="4.7.1" />
<PackageReference Include="System.Text.RegularExpressions" Version="4.3.1" />
</ItemGroup>

<!---->
Expand Down
24 changes: 10 additions & 14 deletions src/WebJobs.Script/WebJobs.Script.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,8 @@
<PackageReference Include="Microsoft.Azure.Functions.PowerShellWorker.PS7.0" Version="4.0.3148" />
<PackageReference Include="Microsoft.Azure.Functions.PowerShellWorker.PS7.2" Version="4.0.3220" />
<PackageReference Include="Microsoft.Azure.Functions.PowerShellWorker.PS7.4" Version="4.0.3219" />
<!-- /Workers -->

<PackageReference Include="Microsoft.Azure.WebJobs.Extensions" Version="5.0.0-beta.2-10879" />
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions.Http" Version="3.2.0" />
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions.Timers.Storage" Version="1.0.0-beta.1" />
Expand All @@ -76,24 +78,18 @@
<PackageReference Include="Mono.Posix.NETStandard" Version="1.0.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.2" />
<PackageReference Include="NuGet.ProjectModel" Version="5.11.6" />
<PackageReference Include="StyleCop.Analyzers" Version="1.2.0-beta.435">
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="StyleCop.Analyzers" Version="1.2.0-beta.435" PrivateAssets="all" />
<PackageReference Include="System.Drawing.Common" Version="4.7.3" />
<PackageReference Include="System.IO.Abstractions" Version="2.1.0.227">
<NoWarn>NU1701</NoWarn>
</PackageReference>
<PackageReference Include="System.Formats.Asn1" Version="6.0.1" />
<PackageReference Include="System.IO.Abstractions" Version="2.1.0.227" NoWarn="NU1701" />
<PackageReference Include="System.Net.Http" Version="4.3.4" />
<PackageReference Include="System.Private.Uri" Version="4.3.2" />
<PackageReference Include="System.Reactive.Linq" Version="5.0.0" />
<PackageReference Include="System.Reactive.Core" Version="5.0.0" />
<PackageReference Include="System.Runtime.Loader" Version="4.3.0" />
<!--
Explicitly referencing version 6.0.9 of System.Text.Json to get two bug fixes for the Source Generator. Without this, the 6.0.0 version
of the Source Generator is used, which causes issues. This reference can be removed in future framework versions.

https://github.com/dotnet/runtime/issues/62354
https://github.com/dotnet/runtime/issues/62082
-->
<PackageReference Include="System.Text.Json" Version="6.0.9" />
<PackageReference Include="System.Security.Cryptography.Xml" Version="4.7.1" />
<PackageReference Include="System.Text.Json" Version="6.0.9" /> <!-- Pinned to address a bug: https://github.com/dotnet/runtime/issues/62354 -->
<PackageReference Include="System.Text.RegularExpressions" Version="4.3.1" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

<ItemGroup>
<PackageReference Include="Microsoft.IdentityModel.Protocols" Version="5.5.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

<ItemGroup>
<PackageReference Include="Microsoft.IdentityModel.Protocols" Version="5.6.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<_FunctionsSkipCleanOutput>true</_FunctionsSkipCleanOutput>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions.Storage" Version="5.3.0" />
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions.Storage" Version="5.3.1" />
<PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="6.0.0" />
<PackageReference Include="Microsoft.NET.Sdk.Functions" Version="4.3.*" />
</ItemGroup>
Expand Down
9 changes: 5 additions & 4 deletions test/DotNetIsolated60/DotNetIsolated60.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,12 @@
<FunctionsEnableExecutorSourceGen>True</FunctionsEnableExecutorSourceGen>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Azure.Core" Version="1.41.0" />
<PackageReference Include="Microsoft.Azure.Functions.Worker" Version="1.22.0" />
<PackageReference Include="Microsoft.Azure.Functions.Worker.Extensions.Http" Version="3.1.0" />
<PackageReference Include="Microsoft.Azure.Functions.Worker.Extensions.Http.AspNetCore" Version="1.0.0" />
<PackageReference Include="Microsoft.Azure.Functions.Worker.Extensions.Storage" Version="6.4.0" />
<PackageReference Include="Microsoft.Azure.Functions.Worker.Sdk" Version="1.15.1" />
<PackageReference Include="Microsoft.Azure.Functions.Worker.Extensions.Http" Version="3.2.0" />
<PackageReference Include="Microsoft.Azure.Functions.Worker.Extensions.Http.AspNetCore" Version="1.3.2" />
<PackageReference Include="Microsoft.Azure.Functions.Worker.Extensions.Storage" Version="6.6.0" />
<PackageReference Include="Microsoft.Azure.Functions.Worker.Sdk" Version="1.15.1" /> <!-- Do not update. Verifies worker behavior. -->
</ItemGroup>
<ItemGroup>
<None Update="host.json">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,12 @@
<FunctionsEnableWorkerIndexing>True</FunctionsEnableWorkerIndexing>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Azure.Core" Version="1.41.0" />
<PackageReference Include="Microsoft.Azure.Functions.Worker" Version="1.22.0" />
<PackageReference Include="Microsoft.Azure.Functions.Worker.Extensions.Http" Version="3.1.0" />
<PackageReference Include="Microsoft.Azure.Functions.Worker.Extensions.Http.AspNetCore" Version="1.0.0" />
<PackageReference Include="Microsoft.Azure.Functions.Worker.Extensions.Storage" Version="6.4.0" />
<PackageReference Include="Microsoft.Azure.Functions.Worker.Sdk" Version="1.14.0" />
<PackageReference Include="Microsoft.Azure.Functions.Worker.Extensions.Http" Version="3.2.0" />
<PackageReference Include="Microsoft.Azure.Functions.Worker.Extensions.Http.AspNetCore" Version="1.3.2" />
<PackageReference Include="Microsoft.Azure.Functions.Worker.Extensions.Storage" Version="6.6.0" />
<PackageReference Include="Microsoft.Azure.Functions.Worker.Sdk" Version="1.14.0" /> <!-- Do not update. Verifies worker behavior. -->
</ItemGroup>
<ItemGroup>
<None Update="host.json">
Expand Down
1 change: 1 addition & 0 deletions test/TestFunctions/TestFunctions.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@

<ItemGroup>
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions.Http" Version="3.2.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
"compilationOptions": {},
"targets": {
".NETCoreApp,Version=v6.0": {
"Microsoft.Azure.WebJobs.Script.WebHost/4.35.0": {
"Microsoft.Azure.WebJobs.Script.WebHost/4.35.1": {
"dependencies": {
"Azure.Data.Tables": "12.8.3",
"Azure.Identity": "1.11.4",
"Azure.Security.KeyVault.Secrets": "4.2.0",
"Azure.Security.KeyVault.Secrets": "4.6.0",
"Microsoft.ApplicationInsights": "2.22.0",
"Microsoft.ApplicationInsights.AspNetCore": "2.21.0",
"Microsoft.ApplicationInsights.DependencyCollector": "2.21.0",
Expand All @@ -26,8 +26,8 @@
"Microsoft.Azure.Storage.File": "11.1.7",
"Microsoft.Azure.WebJobs": "3.0.41",
"Microsoft.Azure.WebJobs.Host.Storage": "5.0.1",
"Microsoft.Azure.WebJobs.Script": "4.35.0",
"Microsoft.Azure.WebJobs.Script.Grpc": "4.35.0",
"Microsoft.Azure.WebJobs.Script": "4.35.1",
"Microsoft.Azure.WebJobs.Script.Grpc": "4.35.1",
"Microsoft.Azure.WebSites.DataProtection": "2.1.91-alpha",
"Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.35.0",
"Microsoft.IdentityModel.Tokens": "6.35.0",
Expand All @@ -38,8 +38,6 @@
"System.IdentityModel.Tokens.Jwt": "6.35.0",
"System.Net.NameResolution": "4.3.0",
"System.Private.Uri": "4.3.2",
"System.Security.Cryptography.Xml": "4.7.1",
"System.Text.RegularExpressions": "4.3.1",
"Microsoft.Azure.WebJobs.Script.Reference": "4.35.0.0",
"Microsoft.Azure.WebJobs.Script.Grpc.Reference": "4.35.0.0"
},
Expand Down Expand Up @@ -106,7 +104,7 @@
}
}
},
"Azure.Security.KeyVault.Secrets/4.2.0": {
"Azure.Security.KeyVault.Secrets/4.6.0": {
"dependencies": {
"Azure.Core": "1.38.0",
"System.Memory": "4.5.4",
Expand All @@ -115,8 +113,8 @@
},
"runtime": {
"lib/netstandard2.0/Azure.Security.KeyVault.Secrets.dll": {
"assemblyVersion": "4.2.0.0",
"fileVersion": "4.200.21.31503"
"assemblyVersion": "4.6.0.0",
"fileVersion": "4.600.24.11403"
}
}
},
Expand Down Expand Up @@ -1042,7 +1040,7 @@
"runtime": {
"lib/netstandard2.0/Microsoft.Azure.WebJobs.Script.Abstractions.dll": {
"assemblyVersion": "1.0.0.0",
"fileVersion": "1.0.21220.0"
"fileVersion": "1.0.19706.0"
}
}
},
Expand Down Expand Up @@ -2197,7 +2195,14 @@
"System.Threading": "4.3.0"
}
},
"System.Formats.Asn1/5.0.0": {},
"System.Formats.Asn1/6.0.1": {
"runtime": {
"lib/net6.0/System.Formats.Asn1.dll": {
"assemblyVersion": "6.0.0.0",
"fileVersion": "6.0.3224.31407"
}
}
},
"System.Globalization/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "5.0.0",
Expand Down Expand Up @@ -2703,7 +2708,7 @@
},
"System.Security.Cryptography.Cng/5.0.0": {
"dependencies": {
"System.Formats.Asn1": "5.0.0"
"System.Formats.Asn1": "6.0.1"
}
},
"System.Security.Cryptography.Csp/4.3.0": {
Expand Down Expand Up @@ -2758,7 +2763,7 @@
},
"System.Security.Cryptography.Pkcs/5.0.0": {
"dependencies": {
"System.Formats.Asn1": "5.0.0",
"System.Formats.Asn1": "6.0.1",
"System.Security.Cryptography.Cng": "5.0.0"
}
},
Expand Down Expand Up @@ -3016,7 +3021,7 @@
}
}
},
"Microsoft.Azure.WebJobs.Script/4.35.0": {
"Microsoft.Azure.WebJobs.Script/4.35.1": {
"dependencies": {
"Azure.Core": "1.38.0",
"Azure.Identity": "1.11.4",
Expand Down Expand Up @@ -3049,20 +3054,21 @@
"Newtonsoft.Json": "13.0.3",
"NuGet.ProjectModel": "5.11.6",
"System.Drawing.Common": "4.7.3",
"System.Formats.Asn1": "6.0.1",
"System.IO.Abstractions": "2.1.0.227",
"System.Net.Http": "4.3.4",
"System.Reactive.Core": "5.0.0",
"System.Reactive.Linq": "5.0.0",
"System.Runtime.Loader": "4.3.0",
"System.Text.Json": "6.0.9"
"System.Security.Cryptography.Xml": "4.7.1",
"System.Text.Json": "6.0.9",
"System.Text.RegularExpressions": "4.3.1"
},
"runtime": {
"Microsoft.Azure.WebJobs.Script.dll": {
"assemblyVersion": "4.35.0",
"fileVersion": ""
}
"Microsoft.Azure.WebJobs.Script.dll": {}
}
},
"Microsoft.Azure.WebJobs.Script.Grpc/4.35.0": {
"Microsoft.Azure.WebJobs.Script.Grpc/4.35.1": {
"dependencies": {
"Grpc.AspNetCore": "2.55.0",
"Microsoft.ApplicationInsights": "2.22.0",
Expand All @@ -3071,38 +3077,35 @@
"Microsoft.ApplicationInsights.WindowsServer": "2.21.0",
"Microsoft.ApplicationInsights.WindowsServer.TelemetryChannel": "2.21.0",
"Microsoft.Azure.WebJobs.Rpc.Core": "3.0.37",
"Microsoft.Azure.WebJobs.Script": "4.35.0",
"Microsoft.Azure.WebJobs.Script": "4.35.1",
"System.IO.FileSystem.Primitives": "4.3.0",
"System.Threading.Channels": "6.0.0",
"Yarp.ReverseProxy": "2.0.1"
},
"runtime": {
"Microsoft.Azure.WebJobs.Script.Grpc.dll": {
"assemblyVersion": "4.35.0",
"fileVersion": ""
}
"Microsoft.Azure.WebJobs.Script.Grpc.dll": {}
}
},
"Microsoft.Azure.WebJobs.Script.Reference/4.35.0.0": {
"runtime": {
"Microsoft.Azure.WebJobs.Script.dll": {
"assemblyVersion": "4.35.0.0",
"fileVersion": "4.35.0.0"
"fileVersion": "4.35.1.0"
}
}
},
"Microsoft.Azure.WebJobs.Script.Grpc.Reference/4.35.0.0": {
"runtime": {
"Microsoft.Azure.WebJobs.Script.Grpc.dll": {
"assemblyVersion": "4.35.0.0",
"fileVersion": "4.35.0.0"
"fileVersion": "4.35.1.0"
}
}
}
}
},
"libraries": {
"Microsoft.Azure.WebJobs.Script.WebHost/4.35.0": {
"Microsoft.Azure.WebJobs.Script.WebHost/4.35.1": {
"type": "project",
"serviceable": false,
"sha512": ""
Expand Down Expand Up @@ -3135,12 +3138,12 @@
"path": "azure.identity/1.11.4",
"hashPath": "azure.identity.1.11.4.nupkg.sha512"
},
"Azure.Security.KeyVault.Secrets/4.2.0": {
"Azure.Security.KeyVault.Secrets/4.6.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-ujVMKVzEtVNQom5A0iEXSDovNGoSidV0RO5QlOBFfcIZlXwFnBmO5OhOfS4D/F1gbMNCCFS3re39qd/Bgh6+QQ==",
"path": "azure.security.keyvault.secrets/4.2.0",
"hashPath": "azure.security.keyvault.secrets.4.2.0.nupkg.sha512"
"sha512": "sha512-vwPceoznuT6glvirZcXlaCQrh1uzTSxpZUi2hRFNumHiS3hVyqIXI5fgWiLtlBzwqPJMTr0flUoSvGKjXXQlfg==",
"path": "azure.security.keyvault.secrets/4.6.0",
"hashPath": "azure.security.keyvault.secrets.4.6.0.nupkg.sha512"
},
"Azure.Storage.Blobs/12.19.1": {
"type": "package",
Expand Down Expand Up @@ -3726,7 +3729,7 @@
"Microsoft.Azure.WebJobs/3.0.41": {
"type": "package",
"serviceable": true,
"sha512": "sha512-nprqeSOAkhFrpIW1KVkXQb6BZCbnS8d1ytq0nUzIYnpkmbvmfkcQlJE9zp3Dbo26Q/0h0JdPSQ3BaVVBNPOUZg==",
"sha512": "sha512-EOigHt+kjrpbg53s8SYn4dlTpZG9IgWPNrdmcdSG8c7U8qKZvcF4BwZtF7ETy3KGir2NtIpJaIc7dUm2+k9/GA==",
"path": "microsoft.azure.webjobs/3.0.41",
"hashPath": "microsoft.azure.webjobs.3.0.41.nupkg.sha512"
},
Expand Down Expand Up @@ -3761,7 +3764,7 @@
"Microsoft.Azure.WebJobs.Host.Storage/5.0.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-eO/sX41oaGkDiXHpT7y/F1F5Wvzm7e1QqFmd4GGMJOMdLOHGvwOvZR82AfR7rjvpqQZWyKjRHqxAVcntq+ZYwQ==",
"sha512": "sha512-5fF88jDYdxUs4EdYZw3MqK7ghG4mZ5MsCt8MhKk38CiTK90VmoWtXbBYURohil+WJ8vB/i0UwQGg64y6TdvliA==",
"path": "microsoft.azure.webjobs.host.storage/5.0.1",
"hashPath": "microsoft.azure.webjobs.host.storage.5.0.1.nupkg.sha512"
},
Expand All @@ -3782,7 +3785,7 @@
"Microsoft.Azure.WebJobs.Script.Abstractions/1.0.4-preview": {
"type": "package",
"serviceable": true,
"sha512": "sha512-+f2iWeAdES4X4HtvgWoIHPXfTxXeX7UlQDbWMkSuxWdt1vHVJf164IEUZxG7Gtfh42ircV9jy7F1zPhuaWNamQ==",
"sha512": "sha512-mvgXnFKwh4/Gw8BXc99ZJd2iQ8DQJTCotvY9PZ9Y2UHa4KiOsYaEW4kuZ5RFBD9KqGO2vXG56w3wMFVyxmaA2g==",
"path": "microsoft.azure.webjobs.script.abstractions/1.0.4-preview",
"hashPath": "microsoft.azure.webjobs.script.abstractions.1.0.4-preview.nupkg.sha512"
},
Expand Down Expand Up @@ -4563,12 +4566,12 @@
"path": "system.dynamic.runtime/4.0.11",
"hashPath": "system.dynamic.runtime.4.0.11.nupkg.sha512"
},
"System.Formats.Asn1/5.0.0": {
"System.Formats.Asn1/6.0.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-MTvUIktmemNB+El0Fgw9egyqT9AYSIk6DTJeoDSpc3GIHxHCMo8COqkWT1mptX5tZ1SlQ6HJZ0OsSvMth1c12w==",
"path": "system.formats.asn1/5.0.0",
"hashPath": "system.formats.asn1.5.0.0.nupkg.sha512"
"sha512": "sha512-glgtKqWJpH9GDw0m9I5xFiF6WDIQqi/eZXU6MkMRPzAWEERGGAJh+qztkrlWSDbokQ1jalj5NcBNIvVoSDpSSA==",
"path": "system.formats.asn1/6.0.1",
"hashPath": "system.formats.asn1.6.0.1.nupkg.sha512"
},
"System.Globalization/4.3.0": {
"type": "package",
Expand Down Expand Up @@ -5144,12 +5147,12 @@
"path": "yarp.reverseproxy/2.0.1",
"hashPath": "yarp.reverseproxy.2.0.1.nupkg.sha512"
},
"Microsoft.Azure.WebJobs.Script/4.35.0": {
"Microsoft.Azure.WebJobs.Script/4.35.1": {
"type": "project",
"serviceable": false,
"sha512": ""
},
"Microsoft.Azure.WebJobs.Script.Grpc/4.35.0": {
"Microsoft.Azure.WebJobs.Script.Grpc/4.35.1": {
"type": "project",
"serviceable": false,
"sha512": ""
Expand Down
Loading