Skip to content

Functions 1.0.10774

Compare
Choose a tag to compare
@mathewc mathewc released this 28 Feb 18:00
· 3159 commits to dev since this release

Main things in this release:

  • Shadow copy assemblies (#1169)
    • addresses file locking deployment issues for .NET languages
  • Automatic runtime restart on managed dependency updates
    • addresses issues where a manual restart was required to reflect assembly updates (#1023)
  • Added support for relative script file references (#1132)
    • you can now use the scriptFile function.json metadata property to point to the primary function file, e.g. "scriptFile": "..\Shared\queueProcessor.js"
  • Fix issues with handling of duplicate http query parameters (#1154)
  • Improving validation for Table binding filter values (Azure/azure-webjobs-sdk#984)
    • auto escape string literal values by escaping single quotes
    • auto format DateTime values
  • Fix JSON array handling for script languages (#1156)
  • Improved host error/restart logic by adding exponential backoff (#1172)
  • Allow TimerTrigger functions to resolve schedule from app settings (Azure/azure-webjobs-sdk-extensions#181)
    • e.g. you can now define a schedule like "schedule": "%MY_SCHEDULE%" where MY_SCHEDULE is the name of an app setting containing the actual CRON schedule value
  • Added verbose,warning,error log methods to context.log object for Node functions (#1058)
  • Make Powershell module loader recursive (#1072)
  • Various other bug fixes