v2.0.0-beta2
Pre-release
Pre-release
Main items in this release:
- Table binding
- added new
JObject
/JArray
/IAsyncCollector<JObject>
/ICollector<JObject>
bindings - added the ability to specify table Filter/Take expressions via
TableAttribute
. Used in conjunction with the newJObject
/JArray
bindings to allow query options to be specified declaratively
- added new
- Blob binding
- added support for CloudAppendBlob
- in addition to being able to bind to
CloudBlockBlob
andCloudPageBlob
, you can now bind toCloudAppendBlob
- Additions to
TimeoutAttribute
to allow the host to be brought down when timeout fires- e.g. `[Timeout("00:00:01", ThrowOnTimeout = true)]
- EventHubTrigger
- Allow
EventProcessorOptions
andPartitionManagerOptions
to be specified when creatingEventHubConfiguration
- allow binding to
byte[]
- lots of other improvements to the EventHub bindings
- Allow
- New Twilio binding for sending SMS messages
- send an SMS message easily from your job function!
- details here on usage
- TimerTrigger - lots of fixes and stability improvements. Fixes include:
- Repeated executions Azure/azure-webjobs-sdk-extensions#40
- Fix DailySchedule issue Azure/azure-webjobs-sdk-extensions#132
- Fix for duplicate schedule firings Azure/azure-webjobs-sdk-extensions#106
- Move from file storage to blob storage for schedule monitor Azure/azure-webjobs-sdk-extensions#35
- support
INameResolver
Azure/azure-webjobs-sdk-extensions#33
- ApiHub trigger
- added support for poison queue handling
- max retry count can be specified via
ApiHubConfiguration.MaxFunctionExecutionRetryCount
- when a file exceeds this retry count, a message for that file is written to queue
webjobs-apihubtrigger-poison
- NotificationHub binding
- added
NotificationHubClient
binding - enabled "test send" debugging via
NotificationHubsAttribute.EnableTestSend
- added
- SendGrid binding
- moved to latest SendGrid v3 API (Breaking)
- see samples here for new signatures and usage
- moved to latest versions of our package dependencies (Storage, ServiceBus, etc.)
- bug fixes