Functions 1.0.10826
Main things in this release:
- Swagger support for HTTP APIs
- automatic generation of swagger documentation for all HTTP/WebHook functions
- runtime API that returns this swagger, facilitating integration scenarios
- Lots of stability/reliability improvements
- improve host startup error handling. E.g. for functions with critical startup errors (e.g. invalid connection strings, etc. the host will now start successfully and errors for that function will be displayed). Previously the host would not start at all.
- improvements to key APIs improving reliability of portal UI for functions in error
- Error reporting improvements (#1235)
- we now remove all the async state machine goo from error stack traces, making the actual error info much more discoverable
- DocumentDB Query support
- A new
sqlQuery
binding property is now supported allowing you to declaratively specify a query with full parameter binding support. - e.g.
"sqlQuery": "SELECT f.id, f.related FROM f WHERE f.related = {documentId}"
- See here for more details
- A new
- Increased max request content size limit to 100MB (#1161)
- TimerTrigger schedule fixes for past due timers (Azure/azure-webjobs-sdk-extensions#194)
- Misc. bug fixes