sdk-java
sdk-java copied to clipboard
Temporal Java SDK
**Describe the solution you'd like** See https://github.com/temporalio/features/issues/441 and https://github.com/temporalio/proposals/blob/master/all-sdk/external-client-configuration.md
Bumps [com.fasterxml.jackson:jackson-bom](https://github.com/FasterXML/jackson-bom) from 2.14.2 to 2.19.1. Commits 8ff1ae1 [maven-release-plugin] prepare release jackson-bom-2.19.1 b5dfc68 Prep for 2.19.1 9a5357b Merge branch '2.18' into 2.19 30e9a6d Revert back to full release set (from...
Should work the same as for workflow task failures
Bumps [io.opentelemetry:opentelemetry-bom](https://github.com/open-telemetry/opentelemetry-java) from 1.25.0 to 1.51.0. Release notes Sourced from io.opentelemetry:opentelemetry-bom's releases. Version 1.51.0 API Context Fix context storage provider property name in log message (#7342) SDK Experimental configurable exception.*...
Bumps [org.eclipse.jetty:jetty-bom](https://github.com/jetty/jetty.project) from 9.4.51.v20230217 to 12.0.22. Release notes Sourced from org.eclipse.jetty:jetty-bom's releases. 12.0.22 Changelog #13182 - Ignore bad cookie names in legacy CookieCutter #13164 - ProxyServlet abort #13161 - Change...
**Is your feature request related to a problem? Please describe.** Currently, the only way for an activity to know that it's canceled is heartbeating and getting a CancellationException from the...
Throw clear error if workflow stub is misused closes https://github.com/temporalio/sdk-java/issues/746
## What was changed Upgrading `io.opentelemetry:opentelemetry-bom` and `i.o:opentelemetry-opentracing-shim` to `1.50.0`. ## Why? The opentracing version transitively referenced by `io.opentelemetry` is `0.26.0` which is quite old and causing issues. Updating this...
https://github.com/temporalio/sdk-java/blob/master/temporal-sdk/src/main/java/io/temporal/internal/sync/DeterministicRunnerImpl.java#L336-L347 Would be useful to have a counter metric for this. Would allow detection so can fix in code if was oversight not to wait on promise,or ignore warning via...
## Expected Behavior I'm using temporal-testing and when I query running workflows: ```java List executions = client.getWorkflowServiceStubs() .blockingStub() .listOpenWorkflowExecutions( ListOpenWorkflowExecutionsRequest.newBuilder() .setNamespace("default") .build() ) .getExecutionsList(); executions.forEach(execution -> { System.err.println(execution.getExecution().getWorkflowId()); System.err.println(execution.getMemo()); });...