Releases: Azure/azure-webjobs-sdk
Microsoft.Azure.WebJobs.Extensions.Storage 4.0.3
storage-v4.0.3 moving storage to 4.0.3 (#2596)
Microsoft.Azure.WebJobs 3.0.19
Release Notes
- Removed the configuration utility
- Added drain mode capability
This release contains the following packages:
- Microsoft.Azure.WebJobs 3.0.19
Microsoft.Azure.WebJobs 3.0.18
This release contains the following packages:
- Microsoft.Azure.WebJobs 3.0.18
- Microsoft.Azure.WebJobs.Host 3.0.18
- Microsoft.Azure.WebJobs.Logging.ApplicationInsights 3.0.18
- Microsoft.Azure.WebJobs.Logging 4.0.1
- Microsoft.Azure.WebJobs.Host.Storage 4.0.1
Microsoft.Azure.WebJobs.Extensions.Storage 4.0.2
This package is not yet available on nuget
Changes in this release:
- Moving to the latest versions of the
Microsoft.Azure.Storage.Blob
andMicrosoft.Azure.Storage.Queue
nuget packages. There have been several improvements in recent releases of these packages:
Microsoft.Azure.WebJobs.Extensions.Storage 4.0.1
This package is available at https://www.nuget.org/packages/Microsoft.Azure.WebJobs.Extensions.Storage/4.0.1.
Changes in this release:
- Explicitly set
NetworkTimeout
forQueue.GetMessagesAsync()
(#2503). The latest storage packages will cancel network timeouts, but defaults are not correctly applied for Queue operations (Azure/azure-storage-net#999). This change explicitly sets it to 100 seconds, which will also be the Storage default.
Microsoft.Azure.WebJobs.Extensions.Storage 4.0.0
This package is available at https://www.nuget.org/packages/Microsoft.Azure.WebJobs.Extensions.Storage/4.0.0.
See https://github.com/Azure/azure-webjobs-sdk/releases/tag/storage-v4.0.0-preview2 and https://github.com/Azure/azure-webjobs-sdk/releases/tag/storage-v4.0.0-preview1 for details on changes in this release.
Important
Storage namespaces have changed, so you may need to update your code if you are using any of the Storage types directly. Your code may continue to compile as you may have an implicit reference to the old Storage SDK, but it will fail at runtime if these have not been updated in your code:
- For blobs and queues,
Microsoft.WindowsAzure.Storage.*
namespaces are nowMicrosoft.Azure.Storage.*
. - For tables, the namespaces are now
Microsoft.Azure.Cosmos.Table.*
.
Microsoft.Azure.WebJobs.Extensions.Storage 4.0.0-preview2
https://www.nuget.org/packages/Microsoft.Azure.WebJobs.Extensions.Storage/4.0.0-preview2
Bug fixes in this release:
- When deployed on the Functions consumption plan, set MaxConnectionsPerServer to 50 for each created client. This keeps connections low in the consumption sandbox. (#2484)
- Move to latest versions of Storage packages and absorb new deadlock cancellation behavior (#2486)
Microsoft.Azure.WebJobs.Extensions.Storage 3.0.11
https://www.nuget.org/packages/Microsoft.Azure.WebJobs.Extensions.Storage/3.0.11
Fixes in this release:
Microsoft.Azure.WebJobs.Extensions.Storage 4.0.0-preview1
This is a major update to the Microsoft.Azure.WebJobs.Extensions.Storage nuget package. The major changes:
- The extension now depends on:
- Namespaces have changed, so you may need to update your code if you are using any of the Storage types directly:
- For blobs and queues,
Microsoft.WindowsAzure.Storage.*
namespaces are nowMicrosoft.Azure.Storage.*
. - For tables, the namespaces are now
Microsoft.Azure.Cosmos.Table.*
.
- For blobs and queues,
Please let us know via the Issues in this repo if you run into problems with this package.