Releases: Azure/azure-functions-python-library
Releases · Azure/azure-functions-python-library
Release 1.7.0
- 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
Release 1.6.0
- Exposing properties and metadata fields for blobs (#77)
Release 1.5.0
In this release:
- Added support to ServiceBusTrigger batch processing when cardinality is set to many in function.json (#66)
Release 1.4.0
In this release:
- Added support for Entity Trigger (#68)
Release 1.3.1
Release 1.3.0
In this release
- Add support for Kafka extension with KafkaEvent, KafkaConverter, KafkaTriggerConverter. (#62)
- Add metadata field in ServiceBus and EventHub
- This feature is not available yet: the python_value and python_type is not yet enabled on the worker side
Release 1.2.1
Release 1.2.0
In this release:
- Add supports for Python durable functions
- Introduce
func.OrchestrationContext
in function orchestration trigger definition
(e.g.def main(context: func.OrchestrationContext):
) - Accepts
orchestrationTrigger
andactivityTrigger
as rich bindings in function.json
- Introduce
- Fix an issue where the built-in azure.functions library is not loaded correctly on load function request
Release 1.1.0
In this release:
- Add support for WSGI web framework
- Fix a bug where iothub event metadata are missing from the trigger context
- Fix an issue when setting eventhub cardinality to many, does not match the function context
Release 1.0.8
In this release:
- Add Python 3.8 support
- Fix EventGrid local time parsing (Azure/azure-functions-python-worker#591)