This is an automated email from the ASF dual-hosted git repository. ilgrosso pushed a commit to branch 4_1_X in repository https://gitbox.apache.org/repos/asf/syncope.git
commit 87750fd0cace28cb3a88efee2ef81f3a3ea103de Author: Francesco Chicchiriccò <[email protected]> AuthorDate: Wed Mar 18 15:22:35 2026 +0100 Upgrading Debezium --- .../org/apache/syncope/common/rest/api/service/ExecutableService.java | 2 +- core/persistence-jpa/src/test/resources/domains/MasterContent.xml | 2 +- pom.xml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/common/idrepo/rest-api/src/main/java/org/apache/syncope/common/rest/api/service/ExecutableService.java b/common/idrepo/rest-api/src/main/java/org/apache/syncope/common/rest/api/service/ExecutableService.java index 2f096c1f2f..ed178c1e8f 100644 --- a/common/idrepo/rest-api/src/main/java/org/apache/syncope/common/rest/api/service/ExecutableService.java +++ b/common/idrepo/rest-api/src/main/java/org/apache/syncope/common/rest/api/service/ExecutableService.java @@ -134,5 +134,5 @@ public interface ExecutableService extends JAXRSService { @ApiResponse(responseCode = "204", description = "Operation was successful")) @POST @Path("jobs/{key}") - void actionJob(@NotNull @PathParam("key") String key, @QueryParam("action") JobAction action); + void actionJob(@NotNull @PathParam("key") String key, @NotNull @QueryParam("action") JobAction action); } diff --git a/core/persistence-jpa/src/test/resources/domains/MasterContent.xml b/core/persistence-jpa/src/test/resources/domains/MasterContent.xml index dcdfa2e7ad..59befcd21c 100644 --- a/core/persistence-jpa/src/test/resources/domains/MasterContent.xml +++ b/core/persistence-jpa/src/test/resources/domains/MasterContent.xml @@ -574,7 +574,7 @@ under the License. bundleName="net.tirasa.connid.bundles.kafka" connectorName="net.tirasa.connid.bundles.kafka.KafkaConnector" version="${connid.kafka.version}" - jsonConf='[{"schema":{"name":"bootstrapServers","displayName":"Bootstrap servers","helpMessage":"A list of host/port pairs used to establish the initial connection to the Kafka cluster","type":"java.lang.String","required":true,"order":1,"confidential":false,"defaultValues":[]},"values":["localhost:19092"],"overridable":false},{"schema":{"name":"clientId","displayName":"Client id","helpMessage":"Client id for subscription","type":"java.lang.String","required":true,"order" [...] + jsonConf='[{"schema":{"name":"bootstrapServers","displayName":"Bootstrap servers","helpMessage":"A list of host/port pairs used to establish the initial connection to the Kafka cluster","type":"java.lang.String","required":true,"order":1,"confidential":false,"defaultValues":[]},"values":["localhost:19092"],"overridable":false},{"schema":{"name":"clientId","displayName":"Client id","helpMessage":"Client id for subscription","type":"java.lang.String","required":true,"order" [...] poolConf='{"maxObjects":5,"minIdle":2,"maxIdle":3,"maxWait":10,"minEvictableIdleTimeMillis":5}' capabilities='["DELETE","LIVE_SYNC","CREATE","UPDATE"]'/> diff --git a/pom.xml b/pom.xml index 7dc92946aa..2f09d1402c 100644 --- a/pom.xml +++ b/pom.xml @@ -455,7 +455,7 @@ under the License. <openfga.version>v1</openfga.version> - <debezium.version>3.0</debezium.version> + <debezium.version>3.4</debezium.version> <commons-lang3.version>3.20.0</commons-lang3.version> <commons-jexl.version>3.6.2</commons-jexl.version>
