Skip to content

v1.1.0-beta1

Pre-release
Pre-release
Compare
Choose a tag to compare
@mathewc mathewc released this 09 Nov 20:23
· 1021 commits to dev since this release
  • IEnumerable binding for Blobs
    • You can now bind to a collection of blobs (e.g. IEnumerable, IEnumerable, CloudBlobContainer, etc.)
    • See the tests here for some examples.
  • Multiple Storage Account support
    • You can now use multiple storage accounts in your job functions. The account to use can be specified at the Parameter/Function/Class level using the new StorageAccount attribute.
    • See sample here.
    • Addresses issue #395.
  • Dashboard Multiple Storage Account support
    • The Dashboard can now correctly display Blob links to blobs in different storage accounts.
    • Addresses issue #294.
  • ServiceBus Multiple Storage Account support
    • Similar to the StorageAccountAttribute discussed above, there is a ServiceBusAccountAttribute that allows you to specify the ServiceBus account to use in the same way.
    • See sample here
  • Added JobHostConfiguration.StorageClientFactory
    • Allows you to control/customize the Azure Storage SDK clients used by the WebJobs SDK. You can use this to specify/set advanced options on CloudQueueClient/CloudBlobClient/CloudTableClient, etc.
    • Addresses issue #497.
  • WebHook Trigger
    • A new trigger extension for triggering functions based on WebHook HTTP requests.
    • See the WebHooks Walkthrough for more information.
  • SendGrid Binder
  • Updates to all Nuget dependencies used by the SDK (moved to latest versions of all dependencies within the current major version).