sdk-java
sdk-java copied to clipboard
Temporal Java SDK
Bumps [org.eclipse.jetty:jetty-bom](https://github.com/jetty/jetty.project) from 9.4.51.v20230217 to 12.1.3. Release notes Sourced from org.eclipse.jetty:jetty-bom's releases. 12.1.3 Changelog #13768 - Sanitizing of HTTP headers names and values should remove NUL bytes (U+0000) #13708 -...
``` public ScheduleRange(int start, int end, int step) { Preconditions.checkState(start >= 0 && step >= 0 && step >= 0); ``` Why do we need to check step twice?
Bumps [io.opentelemetry:opentelemetry-bom](https://github.com/open-telemetry/opentelemetry-java) from 1.25.0 to 1.55.0. Release notes Sourced from io.opentelemetry:opentelemetry-bom's releases. Version 1.55.0 API Common Improve GraalVM native image compatibility (#7160) Traces Fix TraceState key validation limits to match...
Fix the bug where activities that return with the 'interrupted' flag set, were **unable** to report their completion to the server. Activities can **now successfully report completion** even when they...
Bumps [com.squareup.okhttp3:okhttp](https://github.com/square/okhttp) from 4.11.0 to 5.2.1. Changelog Sourced from com.squareup.okhttp3:okhttp's changelog. Version 5.2.1 2025-10-09 Fix: Don't crash when calling Socket.shutdownOutput() or shutdownInput() on an SSLSocket on Android API 21 through...
**Is your feature request related to a problem? Please describe.** Users want to override the target version on a workflow, especially when doing pre-deployment testing. This should work the same...
Bumps `jacksonVersion` from 2.14.2 to 2.20.0. Updates `com.fasterxml.jackson:jackson-bom` from 2.14.2 to 2.20.0 Commits 54f854b [maven-release-plugin] prepare release jackson-bom-2.20.0 9cc68d4 Prep for 2.20.0 cbef800 Version sync for 2.20.0 release (in near...
Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 5 to 6. Release notes Sourced from actions/download-artifact's releases. v6.0.0 What's Changed BREAKING CHANGE: this update supports Node v24.x. This is not a breaking change per-se but...
**Describe the solution you'd like** Implement worker heartbeating, which is sent via a new background nexus worker. Basically need to design a Java version of https://github.com/temporalio/sdk-core/pull/953 and https://github.com/temporalio/sdk-core/pull/1038 **Describe alternatives...
TestWorkflowExtension throws diagnostics error when - using `useExternalService` - and tests Fail https://github.com/temporalio/sdk-java/blob/master/temporal-testing/src/main/java/io/temporal/testing/TestWorkflowEnvironmentInternal.java#L262 ## Expected Behavior ``` Failed tests . . . ``` ## Actual Behavior ``` java.lang.IllegalStateException: getDiagnostics is...