Skip to content

Releases: Azure/azure-functions-java-worker

Release 2.5.0

22 Sep 20:06
Compare
Choose a tag to compare

New

  • Gracefully shutdown worker on WorkerTerminate request (#631)

Azure Functions Java Worker 2.4.0

17 Aug 19:56
8845d98
Compare
Choose a tag to compare

Highlights

  • Populate WorkerMetadata in WorkerInitResponse message. #600

What's Changed

  • fixing bug - missing system logs in kusto. #593
  • update pipeline to run tests on Linux. #606
  • update extension bundle to 3 for e2e tests. #607
  • Read worker directory from WorkerInitRequest. #608
  • add spring cloud functions to end2end test cases. #609
  • remove unnecessary ServiceLoader load logic. #614
  • adding logs for easier debugging. #615

Full Changelog: 2.3.1...2.4.0

Azure Functions Java Worker 2.3.1

21 Jun 21:22
23750f0
Compare
Choose a tag to compare
  • Release Notes
    • Added support for Java 17

Azure Functions Java Worker 2.2.3

07 Apr 23:22
Compare
Choose a tag to compare
  • Release Notes
    • Add support for function return value with new annotation @HasImplicitOutput
    • Update modules for vulnerability
      • grpc to 1.45.0
      • gson to 2.9.0
      • protobuf-java to 3.19.4

Azure Functions Java Worker 1.11.0

07 Apr 23:49
Compare
Choose a tag to compare
  • Release Notes
    • Add support for function return value with new annotation @HasImplicitOutput
    • Update worker to work with restructured azure-functions-java-library. The restructured azure-functions-java-library will only have annotation files and the other core files will be included in azure-functions-java-core-library.
    • Update modules for vulnerability
      • grpc to 1.45.0
      • gson to 2.9.0
      • protobuf-java to 3.19.4

Azure Functions Java Worker 2.2.2-SNAPSHOT

10 Mar 19:15
Compare
Choose a tag to compare

Update worker to work with restructured azure-functions-java-library. The restructured azure-functions-java-library will only have annotation files and the other core files will be included in azure-functions-java-core-library.

Azure Functions Java Worker 2.1.0-SNAPSHOT

05 Jan 22:43
Compare
Choose a tag to compare

Release notes

  • Added retry context as part of execution context #418
  • Fix bug - function with same name as any method in the Parent class will fail #451
  • Updated dependency from grpc-netty to use grpc-netty-shaded and adjusted the shading logic

Azure Functions Java Worker 1.10.0-SNAPSHOT

05 Jan 22:42
Compare
Choose a tag to compare

Release notes

  • Added retry context as part of execution context #418
  • Updated dependency from grpc-netty to use grpc-netty-shaded and adjusted the shading logic

Azure Functions Java Worker 2.0.0

30 Sep 21:19
Compare
Choose a tag to compare

This release includes two break changes:

  1. For java 11 a synchronized singleton classloader will be used. This fixes the issue Azure/Azure-Functions#1997
  2. Java 8 stop supporting loading the worker jars, working jars are removed from java worker. Azure/Azure-Functions#1991

Azure Functions Java Worker 1.9.0

30 Sep 20:41
Compare
Choose a tag to compare

Fixes the issue - multiple instances of the static variable even though it's in the same class: #412
Including a environment variable FUNCTIONS_WORKER_JAVA_SINGLE_CLASSLOADER. If this variable is set to true then the following changes are made

  • For java 11 a synchronized singleton classloader is created for usage