Releases: Azure/azure-functions-python-library
Releases · Azure/azure-functions-python-library
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)
Release 1.0.7
In this release:
- Allow Python 3.7 to use enumerable function param annotations
Release 1.0.6
In this release:
- Allow EventHub function param annotation to be set to List[func.EventHubEvent]
- This provides a much cleaner function signature
def main(events: List[func.EventHubEvent]):
when cardinality=many is set and it is used for processing multiple EventHub events.
- This provides a much cleaner function signature
Release 1.0.5
In this release:
- Allow ComosDB to handle null id parameter
- Allow parsing of additional datetime formats
Release 1.0.4
In this release:
delivery_count
property added for Service Bus Trigger