Releases: Azure/azure-functions-python-worker
Releases · Azure/azure-functions-python-worker
Release 1.1.5
- Update azure-functions library to 1.3.1
- Fix an issue where EnqueuedTimeUtc is returning None in EventHub trigger.
- Fix an issue where Blob trigger throws an exception when the blob does not exist in storage account. Will return None instead.
- Append /home/site/wwwroot to sys.path to support import statement without __app__ namespace prefix (#726)
Release 1.1.4
- Fix the 'EnumTypeWrapper' object has no attribute 'System' issue for customers who use protobuf < 3.8.0 package. (#725)
- This issue is caused by protocolbuffers/protobuf#6028
- The Azure Functions Python Worker has a dependency on protobuf >= 3.12.0 and previously we're using a new syntax for referencing protobuf enum class.
- This fix ensure our worker will still function under old protobuf version.
- Fix an issue where EventHubEvent.metadata and ServiceBusMessage.metadata are not accessible from Python functions.
Release 1.1.3
- [Hotfix] Fix an issue where the dispatcher cannot be found ("no currently running Dispatcher is found") due to asyncio event loop collision with third-party libraries.
Release 1.1.2
[#703] Hotfix - issue found which prevent workload > 4MB.
Release 1.1.1
Release 1.1.0
In this release:
- Update azure-functions library to 1.2.0
- Fix an issue where worker fails to load failover azure.functions library when customer's code is not importing the library properly.
- Add Python Durable Functions support #227
Release 1.0.4
In this release:
- Update azure-functions library to 1.1.0
- Fix an issue where iothub metadata are missing in the EventHub trigger azure-functions #42
- Fix an issue where cardinality is not handled correctly in EventHub when setting
cardinality = 'many'
- Fix an issue where current working directory is not pointing to project root in Linux Consumption apps #613
- Add WSGI support azure-functions #45
Release 1.0.3
Release 1.0.2
In this release:
- Ensure that
EventHub
trigger/bindings accepts enumerable parameter annotations. - Update E2E tests for
EventHub
trigger.
Release 1.0.1
In this release:
- Pass bytes from invocation request metadata
- Generate platform-specific NuGet for packing with Azure Functions Host
- Add Azure-environment startup code to worker with separate path for local development