Skip to content

Releases: Azure/azure-functions-python-library

Release 1.3.1

08 Sep 18:41
Compare
Choose a tag to compare

In this release

  1. Fix an issue where EnqueuedTimeUtc is returning None in EventHub trigger. (#65)
  2. Fix an issue where Blob trigger throws an exception when the blob does not exist in storage account. Will return None instead. (#67)

Release 1.3.0

01 Jul 21:46
Compare
Choose a tag to compare

In this release

  1. Add support for Kafka extension with KafkaEvent, KafkaConverter, KafkaTriggerConverter. (#62)
  2. 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

01 May 23:47
ac94476
Compare
Choose a tag to compare

In this release

  1. Added EventGrid output binding definition. (#56)
  2. Fixing activity triggers in durable functions (#53, #57)

Release 1.2.0

25 Feb 21:42
Compare
Choose a tag to compare

In this release:

  1. Add supports for Python durable functions
    • Introduce func.OrchestrationContext in function orchestration trigger definition
      (e.g. def main(context: func.OrchestrationContext):)
    • Accepts orchestrationTrigger and activityTrigger as rich bindings in function.json
  2. Fix an issue where the built-in azure.functions library is not loaded correctly on load function request

Release 1.1.0

20 Feb 18:57
10689c0
Compare
Choose a tag to compare

In this release:

  1. Add support for WSGI web framework
  2. Fix a bug where iothub event metadata are missing from the trigger context
  3. Fix an issue when setting eventhub cardinality to many, does not match the function context

Release 1.0.8

30 Jan 01:56
1f9f90c
Compare
Choose a tag to compare

In this release:

  1. Add Python 3.8 support
  2. Fix EventGrid local time parsing (Azure/azure-functions-python-worker#591)

Release 1.0.7

11 Dec 19:05
d5dd5f9
Compare
Choose a tag to compare

In this release:

  1. Allow Python 3.7 to use enumerable function param annotations

Release 1.0.6

10 Dec 21:30
Compare
Choose a tag to compare

In this release:

  1. 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.

Release 1.0.5

21 Nov 00:09
d5e1019
Compare
Choose a tag to compare

In this release:

  1. Allow ComosDB to handle null id parameter
  2. Allow parsing of additional datetime formats

Release 1.0.4

10 Sep 21:53
edce123
Compare
Choose a tag to compare

In this release:

  1. delivery_count property added for Service Bus Trigger