Skip to content

Commit 9c2ce4c

Browse files
authored
Updating HTTP extension to 3.1.0 (#7263)
1 parent f886d8c commit 9c2ce4c

File tree

3 files changed

+11
-13
lines changed

3 files changed

+11
-13
lines changed

release_notes.md

Lines changed: 9 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,19 @@
22
<!-- Please add your release notes in the following format:
33
- My change description (#PR)
44
-->
5-
- Fix ignoring of System assemblies was over matching to include non-system assemblies (#7058)
6-
- Updated HTTP extension to [3.0.10](https://github.com/Azure/azure-webjobs-sdk-extensions/releases/tag/http-v3.0.10)
7-
- Configure host.json to use workflow when creating a default host.json and app is identified as a logic app. (#6810)
8-
- Update Python Worker Version to [1.1.12](https://github.com/Azure/azure-functions-python-worker/releases/tag/1.1.12)
9-
- Updated Node.js Worker Version to [2.1.0](https://github.com/Azure/azure-functions-nodejs-worker/releases/tag/v2.1.0)
10-
- Updated Java Worker Version to [1.8.1](https://github.com/Azure/azure-functions-java-worker/releases/tag/1.8.1)
11-
- Updated PowerShell Worker to [3.0.629](https://github.com/Azure/azure-functions-powershell-worker/releases/tag/v3.0.629) (PS7) and [3.0.630](https://github.com/Azure/azure-functions-powershell-worker/releases/tag/v3.0.630) (PS6)
12-
- Updated [System.Data.SqlClient to 4.8.2](https://www.nuget.org/packages/System.Data.SqlClient/4.8.2)
13-
- Added direct refereces to [System.IO.Pipes](https://www.nuget.org/packages/System.IO.Pipes/4.3.0) and [System.Threading.Overlapped](https://www.nuget.org/packages/System.Threading.Overlapped/4.3.0) to ensure System.Data.SqlClient package update does not impact unification
145
- Updated Java Worker Version to [1.8.2-SNAPSHOT](https://github.com/Azure/azure-functions-java-worker/releases/tag/1.8.2-SNAPSHOT)
156
- Skip external config validation if RuntimeDrivenScaling is enabled in Elastic Premium sku (#6542)
167
- Re-added dependencies: Microsoft.Extensions.PlatformAbstractions and Microsoft.Extensions.DiagnosticAdapter
178
- Updated PowerShell Worker (PS7) to [3.0.705](https://github.com/Azure/azure-functions-powershell-worker/releases/tag/v3.0.705)
189
- Set bundle v2.x as the default version
1910
- Fixed issue where multiple worker processes are started slower than expected (#7136)
11+
- Updated HTTP extension to [3.1.0](https://github.com/Azure/azure-webjobs-sdk-extensions/releases/tag/http-v3.1.0)
2012

21-
**Release sprint:** Sprint 89, 90, 91
22-
[ [bugs](https://github.com/Azure/azure-functions-host/issues?q=is%3Aissue+milestone%3A%22Functions+Sprint+89%22+label%3Abug+is%3Aclosed) | [features](https://github.com/Azure/azure-functions-host/issues?q=is%3Aissue+milestone%3A%22Functions+Sprint+89%22+label%3Afeature+is%3Aclosed) ]
13+
**Release sprint:** Sprint 96
14+
[ [bugs](https://github.com/Azure/azure-functions-host/issues?q=is%3Aissue+milestone%3A%22Functions+Sprint+96%22+label%3Abug+is%3Aclosed) | [features](https://github.com/Azure/azure-functions-host/issues?q=is%3Aissue+milestone%3A%22Functions+Sprint+96%22+label%3Afeature+is%3Aclosed) ]
15+
16+
**Release sprint:** Sprint 97
17+
[ [bugs](https://github.com/Azure/azure-functions-host/issues?q=is%3Aissue+milestone%3A%22Functions+Sprint+97%22+label%3Abug+is%3Aclosed) | [features](https://github.com/Azure/azure-functions-host/issues?q=is%3Aissue+milestone%3A%22Functions+Sprint+97%22+label%3Afeature+is%3Aclosed) ]
18+
19+
**Release sprint:** Sprint 98
20+
[ [bugs](https://github.com/Azure/azure-functions-host/issues?q=is%3Aissue+milestone%3A%22Functions+Sprint+98%22+label%3Abug+is%3Aclosed) | [features](https://github.com/Azure/azure-functions-host/issues?q=is%3Aissue+milestone%3A%22Functions+Sprint+98%22+label%3Afeature+is%3Aclosed) ]

src/WebJobs.Script/WebJobs.Script.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
<PackageReference Include="Microsoft.Azure.Functions.PowerShellWorker.PS7" Version="3.0.705" />
4747
<PackageReference Include="Microsoft.Azure.WebJobs" Version="3.0.27" />
4848
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions" Version="4.0.3" />
49-
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions.Http" Version="3.0.10" />
49+
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions.Http" Version="3.1.0" />
5050
<PackageReference Include="Microsoft.Azure.WebJobs.Logging.ApplicationInsights" Version="3.0.27" />
5151
<PackageReference Include="Microsoft.Azure.WebJobs.Script.Abstractions" Version="1.0.2-preview" />
5252
<PackageReference Include="Microsoft.Build" Version="15.8.166" />

test/TestFunctions/TestFunctions.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
</PropertyGroup>
1818

1919
<ItemGroup>
20-
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions.Http" Version="3.0.10" />
20+
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions.Http" Version="3.1.0" />
2121
</ItemGroup>
2222

2323
</Project>

0 commit comments

Comments
 (0)