Skip to content

Commit

Permalink
Storage Extension release prep. (#21151)
Browse files Browse the repository at this point in the history
* prep webjobs release.

* sample config.
  • Loading branch information
kasobol-msft authored May 18, 2021
1 parent 518f191 commit 89a228c
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,21 @@
# Release History

## 5.0.0-beta.4 (Unreleased)
## 5.0.0-beta.4 (2021-05-18)
- Added new configuration formats so extensions that need multiple storage services can specify them in one connection configuration.

Sample config:
```json
{
"MyStorageConnection1": {
"blobServiceUri": "https://<my_account>.blob.core.windows.net",
"queueServiceUri": "https://<my_account>.queue.core.windows.net"
},

"MyStorageConnection2": {
"accountName": "<my_account>"
}
}
```

## 5.0.0-beta.3 (2021-03-09)

Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,22 @@
# Release History

## 5.0.0-beta.4 (Unreleased)

## 5.0.0-beta.4 (2021-05-18)
- Fixed bug where custom implementations of `IQueueProcessorFactory` could overwrite each other settings.
- Added new configuration formats so extensions that need multiple storage services can specify them in one connection configuration.

Sample config:
```json
{
"MyStorageConnection1": {
"blobServiceUri": "https://<my_account>.blob.core.windows.net",
"queueServiceUri": "https://<my_account>.queue.core.windows.net"
},

"MyStorageConnection2": {
"accountName": "<my_account>"
}
}
```

## 5.0.0-beta.3 (2021-03-09)

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Release History

## 5.0.0-beta.4 (Unreleased)

## 5.0.0-beta.4 (2021-05-18)
Please refer to [`Microsoft.Azure.WebJobs.Extension.Storage.Blobs`](https://github.com/Azure/azure-sdk-for-net/blob/master/sdk/storage/Microsoft.Azure.WebJobs.Extensions.Storage.Blobs/CHANGELOG.md) and [`Microsoft.Azure.WebJobs.Extension.Storage.Queues`](https://github.com/Azure/azure-sdk-for-net/blob/master/sdk/storage/Microsoft.Azure.WebJobs.Extensions.Storage.Queues/CHANGELOG.md) for detailed list of changes.

## 5.0.0-beta.3 (2021-03-09)
Please refer to [`Microsoft.Azure.WebJobs.Extension.Storage.Blobs`](https://github.com/Azure/azure-sdk-for-net/blob/master/sdk/storage/Microsoft.Azure.WebJobs.Extensions.Storage.Blobs/CHANGELOG.md) and [`Microsoft.Azure.WebJobs.Extension.Storage.Queues`](https://github.com/Azure/azure-sdk-for-net/blob/master/sdk/storage/Microsoft.Azure.WebJobs.Extensions.Storage.Queues/CHANGELOG.md) for detailed list of changes.
Expand Down

0 comments on commit 89a228c

Please sign in to comment.