Skip to content

Release 1.7.0

Compare
Choose a tag to compare
@Hazhzeng Hazhzeng released this 23 Mar 21:11
· 180 commits to dev since this release
  • Exposed Python Worker Extension Interfaces for third-party libraries to integrate into Azure Functions Python Worker.
    • Third-party library vendors can now implement the abstract classes FuncExtensionBase (apply to specific trigger) and AppExtensionBase (apply to all triggers in function app) to allow Python Worker execute your lifecycle hooks.
    • Lifecycle hooks that is supported in AppExtensionBase: post_function_load_app_level, pre_invocation_app_level, post_invocation_app_level
    • Lifecycle hooks that is supported in FuncExtensionBasse: post_function_load, pre_invocation, post_invocation