v1.0.0-alpha1-10204
Pre-release
Pre-release
·
3653 commits
to dev
since this release
Main things in this release are called out below. You can also review the raw commits since the last release.
- moved to the latest version of the Azure Storage SDK (7.0) in addition to updating all our other dependencies
- DataType support for Node and other non-strongly typed languages
- input bindings can now specify the data type for the script input via the new
dataType
binding metadata property - e.g
dataType: "binary"
on a Node Blob trigger function will result in the script getting a Node Buffer object as input - current valid values for dataType are binary or string (the default)
- input bindings can now specify the data type for the script input via the new
- Added new
scriptFile
metadata property to allow functions to specify the primary script (i.e. the "entry point") for the function- e.g. if you have more than one script in the function directory and you don't want to / can't use our
run.*
naming convention, you can be explicit
- e.g. if you have more than one script in the function directory and you don't want to / can't use our
- Fixes to C# function reference assembly resolution for shared assemblies (#305)
- Added new ApiHub Table input/output bindings for binding to ApiHub Tabular connectors (e.g. SQL)
- Set up AppVeyor public CI infrastructure for the project (see project here)
- Lots of other bug fixes