Skip to content

Commit f74feb1

Browse files
committed
Update System.Data.SqlClient package
1 parent 75da1eb commit f74feb1

File tree

3 files changed

+133
-171
lines changed

3 files changed

+133
-171
lines changed

release_notes.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,13 @@
33
- My change description (#PR)
44
-->
55
- Fixed [bug](https://github.com/Azure/azure-functions-durable-extension/issues/1467) in sync triggers operations for Durable Functions using custom storage account connection strings.
6-
- Update PowerShell Worker to 3.0.557 (PS6) [Release Note](https://github.com/Azure/azure-functions-powershell-worker/releases/tag/v3.0.557) and 3.0.560 (PS7) [Release Note](https://github.com/Azure/azure-functions-powershell-worker/releases/tag/v3.0.560)
7-
- Update Microsoft.Azure.WebJobs and Microsoft.Azure.WebJobs.Logging.ApplicationInsights to v3.0.25 [Release Notes](https://github.com/Azure/azure-webjobs-sdk/releases/tag/v3.0.25)
8-
- Update Microsoft.Azure.WebJobs.Extensions.Http to 3.0.9-10815
9-
- Update Python Worker to 1.1.8 [Release Note](https://github.com/Azure/azure-functions-python-worker/releases/tag/1.1.8)
10-
- Update Python Library to 1.5.0 [Release Note](https://github.com/Azure/azure-functions-python-library/releases/tag/1.5.0)
6+
- Updated PowerShell Worker to 3.0.557 (PS6) [Release Note](https://github.com/Azure/azure-functions-powershell-worker/releases/tag/v3.0.557) and 3.0.560 (PS7) [Release Note](https://github.com/Azure/azure-functions-powershell-worker/releases/tag/v3.0.560)
7+
- Updated Microsoft.Azure.WebJobs and Microsoft.Azure.WebJobs.Logging.ApplicationInsights to v3.0.25 [Release Notes](https://github.com/Azure/azure-webjobs-sdk/releases/tag/v3.0.25)
8+
- Updated Microsoft.Azure.WebJobs.Extensions.Http to 3.0.9-10815
9+
- Updated Python Worker to 1.1.8 [Release Note](https://github.com/Azure/azure-functions-python-worker/releases/tag/1.1.8)
10+
- Updated Python Library to 1.5.0 [Release Note](https://github.com/Azure/azure-functions-python-library/releases/tag/1.5.0)
11+
- Updated [System.Data.SqlClient to 4.8.2](https://www.nuget.org/packages/System.Data.SqlClient/4.8.2)
12+
- 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
1113

1214
**Release sprint:** Sprint 87
1315
[ [bugs](https://github.com/Azure/azure-functions-host/issues?q=is%3Aissue+milestone%3A%22Functions+Sprint+87%22+label%3Abug+is%3Aclosed) | [features](https://github.com/Azure/azure-functions-host/issues?q=is%3Aissue+milestone%3A%22Functions+Sprint+87%22+label%3Afeature+is%3Aclosed) ]

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,11 +76,13 @@
7676
<!-- The System.Interactive.Async assembly is required to be deployed. See https://github.com/Azure/azure-functions-host/issues/6203 -->
7777
<PackageReference Include="System.Interactive.Async" Version="3.2.0" />
7878
<!-- The System.Data.SqlClient assembly is required to be deployed. -->
79-
<PackageReference Include="System.Data.SqlClient" Version="4.3.1" />
79+
<PackageReference Include="System.Data.SqlClient" Version="4.8.2" />
80+
<PackageReference Include="System.IO.Pipes" Version="4.3.0" />
8081
<PackageReference Include="System.Net.Primitives" Version="4.3.0" />
8182
<PackageReference Include="StyleCop.Analyzers" Version="1.1.0-beta004">
8283
<PrivateAssets>all</PrivateAssets>
8384
</PackageReference>
85+
<PackageReference Include="System.Threading.Overlapped" Version="4.3.0" />
8486
</ItemGroup>
8587

8688
<ItemGroup>

0 commit comments

Comments
 (0)