Skip to content

Commit 2bcf4dd

Browse files
committed
release: bump version to 26.02.07
1 parent 2b1d1a5 commit 2bcf4dd

219 files changed

Lines changed: 556 additions & 3911 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.factorypath

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<factorypath>
2+
<factorypathentry kind="VARJAR" id="M2_REPO/org/projectlombok/lombok/1.18.42/lombok-1.18.42.jar" enabled="true" runInBatchMode="false"/>
3+
<factorypathentry kind="VARJAR" id="M2_REPO/org/mapstruct/mapstruct-processor/1.6.3/mapstruct-processor-1.6.3.jar" enabled="true" runInBatchMode="false"/>
4+
<factorypathentry kind="VARJAR" id="M2_REPO/org/projectlombok/lombok-mapstruct-binding/0.2.0/lombok-mapstruct-binding-0.2.0.jar" enabled="true" runInBatchMode="false"/>
5+
<factorypathentry kind="VARJAR" id="M2_REPO/org/springframework/boot/spring-boot-configuration-processor/3.5.10/spring-boot-configuration-processor-3.5.10.jar" enabled="true" runInBatchMode="false"/>
6+
</factorypath>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>org.fireflyframework</groupId>
99
<artifactId>fireflyframework-parent</artifactId>
10-
<version>26.02.06</version>
10+
<version>26.02.07</version>
1111
<relativePath/>
1212
</parent>
1313

target/classes/META-INF/spring-configuration-metadata.json

Lines changed: 133 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,30 @@
55
"type": "org.fireflyframework.orchestration.config.OrchestrationProperties",
66
"sourceType": "org.fireflyframework.orchestration.config.OrchestrationProperties"
77
},
8+
{
9+
"name": "firefly.orchestration.backpressure",
10+
"type": "org.fireflyframework.orchestration.config.OrchestrationProperties$BackpressureProperties",
11+
"sourceType": "org.fireflyframework.orchestration.config.OrchestrationProperties",
12+
"sourceMethod": "getBackpressure()"
13+
},
14+
{
15+
"name": "firefly.orchestration.backpressure.circuit-breaker",
16+
"type": "org.fireflyframework.orchestration.config.OrchestrationProperties$CircuitBreakerProperties",
17+
"sourceType": "org.fireflyframework.orchestration.config.OrchestrationProperties$BackpressureProperties",
18+
"sourceMethod": "getCircuitBreaker()"
19+
},
820
{
921
"name": "firefly.orchestration.dlq",
1022
"type": "org.fireflyframework.orchestration.config.OrchestrationProperties$DlqProperties",
1123
"sourceType": "org.fireflyframework.orchestration.config.OrchestrationProperties",
1224
"sourceMethod": "getDlq()"
1325
},
26+
{
27+
"name": "firefly.orchestration.eventsourcing",
28+
"type": "org.fireflyframework.orchestration.config.OrchestrationProperties$EventSourcingProperties",
29+
"sourceType": "org.fireflyframework.orchestration.config.OrchestrationProperties",
30+
"sourceMethod": "getEventsourcing()"
31+
},
1432
{
1533
"name": "firefly.orchestration.health",
1634
"type": "org.fireflyframework.orchestration.config.OrchestrationProperties$HealthProperties",
@@ -65,26 +83,85 @@
6583
"sourceType": "org.fireflyframework.orchestration.config.OrchestrationProperties",
6684
"sourceMethod": "getTcc()"
6785
},
86+
{
87+
"name": "firefly.orchestration.tcc.composition",
88+
"type": "org.fireflyframework.orchestration.config.OrchestrationProperties$TccCompositionProperties",
89+
"sourceType": "org.fireflyframework.orchestration.config.OrchestrationProperties$TccProperties",
90+
"sourceMethod": "getComposition()"
91+
},
6892
{
6993
"name": "firefly.orchestration.tracing",
7094
"type": "org.fireflyframework.orchestration.config.OrchestrationProperties$TracingProperties",
7195
"sourceType": "org.fireflyframework.orchestration.config.OrchestrationProperties",
7296
"sourceMethod": "getTracing()"
7397
},
98+
{
99+
"name": "firefly.orchestration.validation",
100+
"type": "org.fireflyframework.orchestration.config.OrchestrationProperties$ValidationProperties",
101+
"sourceType": "org.fireflyframework.orchestration.config.OrchestrationProperties",
102+
"sourceMethod": "getValidation()"
103+
},
74104
{
75105
"name": "firefly.orchestration.workflow",
76106
"type": "org.fireflyframework.orchestration.config.OrchestrationProperties$WorkflowProperties",
77107
"sourceType": "org.fireflyframework.orchestration.config.OrchestrationProperties",
78108
"sourceMethod": "getWorkflow()"
109+
},
110+
{
111+
"name": "management.endpoint.orchestration-metrics",
112+
"type": "org.fireflyframework.orchestration.core.observability.OrchestrationMetricsEndpoint",
113+
"sourceType": "org.fireflyframework.orchestration.core.observability.OrchestrationMetricsEndpoint"
79114
}
80115
],
81116
"properties": [
117+
{
118+
"name": "firefly.orchestration.backpressure.batch-size",
119+
"type": "java.lang.Integer",
120+
"sourceType": "org.fireflyframework.orchestration.config.OrchestrationProperties$BackpressureProperties",
121+
"defaultValue": 10
122+
},
123+
{
124+
"name": "firefly.orchestration.backpressure.circuit-breaker.failure-threshold",
125+
"type": "java.lang.Integer",
126+
"sourceType": "org.fireflyframework.orchestration.config.OrchestrationProperties$CircuitBreakerProperties",
127+
"defaultValue": 5
128+
},
129+
{
130+
"name": "firefly.orchestration.backpressure.circuit-breaker.half-open-max-calls",
131+
"type": "java.lang.Integer",
132+
"sourceType": "org.fireflyframework.orchestration.config.OrchestrationProperties$CircuitBreakerProperties",
133+
"defaultValue": 3
134+
},
135+
{
136+
"name": "firefly.orchestration.backpressure.circuit-breaker.recovery-timeout",
137+
"type": "java.time.Duration",
138+
"sourceType": "org.fireflyframework.orchestration.config.OrchestrationProperties$CircuitBreakerProperties",
139+
"defaultValue": "30s"
140+
},
141+
{
142+
"name": "firefly.orchestration.backpressure.strategy",
143+
"type": "java.lang.String",
144+
"sourceType": "org.fireflyframework.orchestration.config.OrchestrationProperties$BackpressureProperties",
145+
"defaultValue": "adaptive"
146+
},
82147
{
83148
"name": "firefly.orchestration.dlq.enabled",
84149
"type": "java.lang.Boolean",
85150
"sourceType": "org.fireflyframework.orchestration.config.OrchestrationProperties$DlqProperties",
86151
"defaultValue": true
87152
},
153+
{
154+
"name": "firefly.orchestration.eventsourcing.projection-poll-interval",
155+
"type": "java.time.Duration",
156+
"sourceType": "org.fireflyframework.orchestration.config.OrchestrationProperties$EventSourcingProperties",
157+
"defaultValue": "5s"
158+
},
159+
{
160+
"name": "firefly.orchestration.eventsourcing.snapshot-interval",
161+
"type": "java.lang.Integer",
162+
"sourceType": "org.fireflyframework.orchestration.config.OrchestrationProperties$EventSourcingProperties",
163+
"defaultValue": 100
164+
},
88165
{
89166
"name": "firefly.orchestration.health.enabled",
90167
"type": "java.lang.Boolean",
@@ -150,6 +227,12 @@
150227
"sourceType": "org.fireflyframework.orchestration.config.OrchestrationProperties$RestProperties",
151228
"defaultValue": true
152229
},
230+
{
231+
"name": "firefly.orchestration.saga.compensation-error-handler",
232+
"type": "java.lang.String",
233+
"sourceType": "org.fireflyframework.orchestration.config.OrchestrationProperties$SagaProperties",
234+
"defaultValue": "default"
235+
},
153236
{
154237
"name": "firefly.orchestration.saga.compensation-policy",
155238
"type": "org.fireflyframework.orchestration.core.model.CompensationPolicy",
@@ -174,6 +257,18 @@
174257
"sourceType": "org.fireflyframework.orchestration.config.OrchestrationProperties$SchedulingProperties",
175258
"defaultValue": 4
176259
},
260+
{
261+
"name": "firefly.orchestration.tcc.composition.compensation-policy",
262+
"type": "org.fireflyframework.orchestration.core.model.CompensationPolicy",
263+
"sourceType": "org.fireflyframework.orchestration.config.OrchestrationProperties$TccCompositionProperties",
264+
"defaultValue": "strict-sequential"
265+
},
266+
{
267+
"name": "firefly.orchestration.tcc.composition.enabled",
268+
"type": "java.lang.Boolean",
269+
"sourceType": "org.fireflyframework.orchestration.config.OrchestrationProperties$TccCompositionProperties",
270+
"defaultValue": true
271+
},
177272
{
178273
"name": "firefly.orchestration.tcc.default-timeout",
179274
"type": "java.time.Duration",
@@ -192,11 +287,49 @@
192287
"sourceType": "org.fireflyframework.orchestration.config.OrchestrationProperties$TracingProperties",
193288
"defaultValue": true
194289
},
290+
{
291+
"name": "firefly.orchestration.validation.enabled",
292+
"type": "java.lang.Boolean",
293+
"sourceType": "org.fireflyframework.orchestration.config.OrchestrationProperties$ValidationProperties",
294+
"defaultValue": true
295+
},
296+
{
297+
"name": "firefly.orchestration.validation.fail-on-warning",
298+
"type": "java.lang.Boolean",
299+
"sourceType": "org.fireflyframework.orchestration.config.OrchestrationProperties$ValidationProperties",
300+
"defaultValue": false
301+
},
195302
{
196303
"name": "firefly.orchestration.workflow.enabled",
197304
"type": "java.lang.Boolean",
198305
"sourceType": "org.fireflyframework.orchestration.config.OrchestrationProperties$WorkflowProperties",
199306
"defaultValue": true
307+
},
308+
{
309+
"name": "management.endpoint.orchestration-metrics.access",
310+
"type": "org.springframework.boot.actuate.endpoint.Access",
311+
"description": "Permitted level of access for the orchestration-metrics endpoint.",
312+
"sourceType": "org.fireflyframework.orchestration.core.observability.OrchestrationMetricsEndpoint",
313+
"defaultValue": "unrestricted"
314+
},
315+
{
316+
"name": "management.endpoint.orchestration-metrics.cache.time-to-live",
317+
"type": "java.time.Duration",
318+
"description": "Maximum time that a response can be cached.",
319+
"sourceType": "org.fireflyframework.orchestration.core.observability.OrchestrationMetricsEndpoint",
320+
"defaultValue": "0ms"
321+
},
322+
{
323+
"name": "management.endpoint.orchestration-metrics.enabled",
324+
"type": "java.lang.Boolean",
325+
"description": "Whether to enable the orchestration-metrics endpoint.",
326+
"sourceType": "org.fireflyframework.orchestration.core.observability.OrchestrationMetricsEndpoint",
327+
"defaultValue": true,
328+
"deprecated": true,
329+
"deprecation": {
330+
"replacement": "management.endpoint.orchestration-metrics.access",
331+
"since": "3.4.0"
332+
}
200333
}
201334
],
202335
"hints": [],
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)