azure-functions-java-worker icon indicating copy to clipboard operation
azure-functions-java-worker copied to clipboard

Java runtime and core types for Microsoft Azure Functions

Results 145 azure-functions-java-worker issues
Sort by recently updated
recently updated
newest added

### Issue describing the changes in this PR MySql Java E2E tests resolves #issue_for_this_pr ### Pull request checklist * [ ] My changes **do not** require documentation changes * [...

### Issue describing the changes in this PR Added E2E tests for "MySQL Extensions for Azure Functions" ### Pull request checklist * [x] My changes **do not** require documentation changes...

**Context** When we upgraded from GSON 2.9 to 2.11, certain code paths that rely on reflection (especially on Java 17+) began throwing InaccessibleObjectException. This most commonly happens when GSON tries...

Reverts Azure/azure-functions-java-worker#799 Upgrading the Gson version to 2.11.0 can cause customers to run into issues similar to this: https://stackoverflow.com/questions/76778605/inaccessibleobjectexception-while-working-in-gson-2-10-1-with-java-17-and-spring

[Azure Functions Java supports dependency injection](https://learn.microsoft.com/en-us/azure/azure-functions/functions-reference-java?tabs=bash%2Cconsumption#use-dependency-injection-in-java-functions) by implementing `com.microsoft.azure.functions.spi.inject.FunctionInstanceInjector` and registering the implementation via SPI. However, when the DI container creates resources that need to be closed (via the `Closeable`...