Releases: Azure/azure-functions-java-worker
Releases · Azure/azure-functions-java-worker
Release 2.5.0
New
- Gracefully shutdown worker on WorkerTerminate request (#631)
Azure Functions Java Worker 2.4.0
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
- Release Notes
- Added support for Java 17
Azure Functions Java Worker 2.2.3
- 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
- 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
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
Azure Functions Java Worker 1.10.0-SNAPSHOT
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
This release includes two break changes:
- For java 11 a synchronized singleton classloader will be used. This fixes the issue Azure/Azure-Functions#1997
- 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
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