Skip to content

Commit e57caee

Browse files
committed
Merge remote-tracking branch 'origin/main' into feature/redis-health-indicator
2 parents a1725fc + d4c9bbf commit e57caee

File tree

3 files changed

+39
-4
lines changed

3 files changed

+39
-4
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,12 +55,12 @@ jobs:
5555
with:
5656
report_paths: "**/build/test-results/test/TEST-*.xml"
5757
- name: Upload build artifacts
58-
uses: actions/upload-artifact@v3
58+
uses: actions/upload-artifact@v4
5959
with:
6060
name: build-artifacts
6161
path: "**/build/reports"
6262
- name: Store Buildscan URL
63-
uses: actions/upload-artifact@v3
63+
uses: actions/upload-artifact@v4
6464
with:
6565
name: build-scan
6666
path: "buildscan.log"
@@ -95,14 +95,14 @@ jobs:
9595
component: true
9696

9797
- name: Archive test screenshots
98-
uses: actions/upload-artifact@v3
98+
uses: actions/upload-artifact@v4
9999
if: failure()
100100
with:
101101
name: cypress-screenshots
102102
path: ui/cypress/screenshots
103103

104104
- name: Archive test videos
105-
uses: actions/upload-artifact@v3
105+
uses: actions/upload-artifact@v4
106106
if: always()
107107
with:
108108
name: cypress-videos
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
## [4.0.0] - 2024-10-09
6+
- New major release – [Read more](https://orkes.io/blog/conductor-java-client-v4/)
7+
8+
## [4.0.1] - 2024-10-30
9+
- Improve Spring modules with auto-configuration - https://github.com/conductor-oss/conductor/pull/287
10+
- Added Jackson Kotlin module to client ObjectMapper - https://github.com/conductor-oss/conductor/pull/294
11+
- Fix chronounit issue in java sdk - https://github.com/conductor-oss/conductor/pull/298
12+
13+
## [4.0.2] - 2024-12-09
14+
- Added ZoneId to `SaveScheduleRequest` - https://github.com/conductor-oss/conductor/pull/302
15+
- Add callTimeout field to ConductorClient builder - https://github.com/conductor-oss/conductor/pull/317
16+
- Task poll update v2 - https://github.com/conductor-oss/conductor/pull/328
17+
18+
## [4.0.3] - 2024-12-17
19+
- Add testWorkflow to OrkesWorkflowClient - https://github.com/conductor-oss/conductor/pull/333
20+
21+
## [4.0.4] - 2025-01-07
22+
- Added lease extension to java sdk and fixed tests - https://github.com/conductor-oss/conductor/pull/349
23+
- Unify environment variable usage - https://github.com/conductor-oss/conductor/pull/353
24+
- Add support for configurable MetricsCollector in Spring client - https://github.com/conductor-oss/conductor/pull/356

conductor-clients/java/conductor-java-sdk/conductor-client/src/main/java/com/netflix/conductor/common/metadata/workflow/SubWorkflowParams.java

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,9 @@ public class SubWorkflowParams {
3434

3535
private IdempotencyStrategy idempotencyStrategy;
3636

37+
// Priority of the sub workflow, not set inherits from the parent
38+
private Integer priority;
39+
3740
public String getIdempotencyKey() {
3841
return idempotencyKey;
3942
}
@@ -150,4 +153,12 @@ public boolean equals(Object o) {
150153
SubWorkflowParams that = (SubWorkflowParams) o;
151154
return Objects.equals(getName(), that.getName()) && Objects.equals(getVersion(), that.getVersion()) && Objects.equals(getTaskToDomain(), that.getTaskToDomain()) && Objects.equals(getWorkflowDefinition(), that.getWorkflowDefinition());
152155
}
156+
157+
public Integer getPriority() {
158+
return priority;
159+
}
160+
161+
public void setPriority(Integer priority) {
162+
this.priority = priority;
163+
}
153164
}

0 commit comments

Comments
 (0)