From 9947adad175e4818236df3294caaceb6334d9041 Mon Sep 17 00:00:00 2001 From: "Serhii Plyhun (commercial)" Date: Mon, 30 Sep 2024 10:28:55 +0200 Subject: [PATCH 1/3] SUP-17450: Duplicated data crash fix (#1626) * SUP-17450: Duplicated data crash fix * More cases --- LTS-CHANGELOG.adoc | 5 +++++ .../gentics/mesh/core/data/dao/impl/NodeDaoWrapperImpl.java | 6 ++++-- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/LTS-CHANGELOG.adoc b/LTS-CHANGELOG.adoc index 4df483dbe2..01d4a968de 100644 --- a/LTS-CHANGELOG.adoc +++ b/LTS-CHANGELOG.adoc @@ -17,6 +17,11 @@ include::content/docs/variables.adoc-include[] The LTS changelog lists releases which are only accessible via a commercial subscription. All fixes and changes in LTS releases will be released the next minor release. Changes from LTS 1.4.x will be included in release 1.5.0. +[[v1.10.35]] +== 1.10.35 (27.09.2024) + +icon:check[] Core: A crash, caused by duplicated nodes in a GraphQL resulting set, has been fixed. + [[v1.10.34]] == 1.10.34 (11.09.2024) diff --git a/mdm/orientdb-wrapper/src/main/java/com/gentics/mesh/core/data/dao/impl/NodeDaoWrapperImpl.java b/mdm/orientdb-wrapper/src/main/java/com/gentics/mesh/core/data/dao/impl/NodeDaoWrapperImpl.java index dc5c255956..0f4c500005 100644 --- a/mdm/orientdb-wrapper/src/main/java/com/gentics/mesh/core/data/dao/impl/NodeDaoWrapperImpl.java +++ b/mdm/orientdb-wrapper/src/main/java/com/gentics/mesh/core/data/dao/impl/NodeDaoWrapperImpl.java @@ -7,6 +7,7 @@ import java.util.Collection; import java.util.HashMap; +import java.util.HashSet; import java.util.Iterator; import java.util.List; import java.util.Map; @@ -108,9 +109,10 @@ public Stream getChildrenStream(HibNode node, InternalActionC return toGraph(node).getChildrenStream(ac, perm); } + @SuppressWarnings("unchecked") @Override public Map> getChildren(Collection nodes, String branchUuid) { - return nodes.stream() + return new HashSet<>(nodes).stream() .map(node -> Pair.of(node, (List) getChildren(node, branchUuid).list())) .collect(Collectors.toMap(Pair::getKey, Pair::getValue)); } @@ -223,7 +225,7 @@ public long globalCount() { @Override public Map> getBreadcrumbNodesMap(Collection nodes, InternalActionContext ac) { - return nodes.stream().map(node -> Pair.of(node, + return new HashSet<>(nodes).stream().map(node -> Pair.of(node, getBreadcrumbNodes(node, ac) .stream() .map(HibNode.class::cast) From c731788f816ba24281793d13f14f9ea15d4246db Mon Sep 17 00:00:00 2001 From: 1000 user <1000@a66feb33f7bb> Date: Tue, 1 Oct 2024 11:43:57 +0200 Subject: [PATCH 2/3] Raise version --- api/pom.xml | 2 +- bom/pom.xml | 2 +- changelog-system/pom.xml | 2 +- common-api/pom.xml | 2 +- common/pom.xml | 2 +- core/pom.xml | 2 +- databases/orientdb/pom.xml | 2 +- databases/pom.xml | 2 +- demo/common/pom.xml | 2 +- demo/default/pom.xml | 2 +- demo/pom.xml | 2 +- distributed-coordinator/pom.xml | 2 +- distributed/pom.xml | 2 +- doc/pom.xml | 2 +- elasticsearch/pom.xml | 2 +- ferma/pom.xml | 2 +- hazelcast3-cluster-manager/pom.xml | 2 +- madl/api/pom.xml | 2 +- madl/core/pom.xml | 2 +- madl/madl-ferma/pom.xml | 2 +- madl/orientdb/pom.xml | 2 +- madl/pom.xml | 2 +- mdm/api/pom.xml | 2 +- mdm/common/pom.xml | 2 +- mdm/orientdb-api/pom.xml | 2 +- mdm/orientdb-wrapper/pom.xml | 2 +- mdm/pom.xml | 2 +- performance-tests/pom.xml | 2 +- plugin-api/pom.xml | 2 +- plugin-bom/pom.xml | 2 +- plugin-dep/pom.xml | 2 +- plugin-parent/pom.xml | 2 +- pom.xml | 2 +- rest-client/pom.xml | 2 +- rest-model/pom.xml | 2 +- server/pom.xml | 2 +- services/aws-s3-storage/pom.xml | 2 +- services/image-imgscalr/pom.xml | 2 +- services/jwt-auth/pom.xml | 2 +- services/local-storage/pom.xml | 2 +- services/metrics-prometheus/pom.xml | 2 +- services/pom.xml | 2 +- tests/api/pom.xml | 2 +- tests/common/pom.xml | 2 +- tests/context-api/pom.xml | 2 +- tests/context-orientdb/pom.xml | 2 +- tests/orientdb-runner/pom.xml | 2 +- tests/pom.xml | 2 +- tests/tests-admin-gui/pom.xml | 2 +- tests/tests-api/pom.xml | 2 +- tests/tests-changelog-system/pom.xml | 2 +- tests/tests-common/pom.xml | 2 +- tests/tests-core/pom.xml | 2 +- tests/tests-distributed-coordinator/pom.xml | 2 +- tests/tests-distributed/pom.xml | 2 +- tests/tests-elasticsearch/pom.xml | 2 +- tests/tests-plugin-api/pom.xml | 2 +- tests/tests-rest-client/pom.xml | 2 +- tests/tests-rest-model/pom.xml | 2 +- tests/tests-server/pom.xml | 2 +- tests/tests-service-aws-s3-storage/pom.xml | 2 +- tests/tests-service-image-imgscalr/pom.xml | 2 +- tests/tests-service-jwt-auth/pom.xml | 2 +- tests/tests-service-local-storage/pom.xml | 2 +- tests/tests-service-metrics-prometheus/pom.xml | 2 +- verticles/admin-gui/pom.xml | 2 +- verticles/graphql/pom.xml | 2 +- verticles/pom.xml | 2 +- verticles/rest/pom.xml | 2 +- 69 files changed, 69 insertions(+), 69 deletions(-) diff --git a/api/pom.xml b/api/pom.xml index 6d17af4d35..23001b7756 100644 --- a/api/pom.xml +++ b/api/pom.xml @@ -11,7 +11,7 @@ com.gentics.mesh mesh - 1.10.35-SNAPSHOT + 1.10.35 diff --git a/bom/pom.xml b/bom/pom.xml index 153f093800..5daa89e645 100644 --- a/bom/pom.xml +++ b/bom/pom.xml @@ -11,7 +11,7 @@ com.gentics.mesh mesh - 1.10.35-SNAPSHOT + 1.10.35 diff --git a/changelog-system/pom.xml b/changelog-system/pom.xml index f3ab24e111..00fcbb404f 100644 --- a/changelog-system/pom.xml +++ b/changelog-system/pom.xml @@ -12,7 +12,7 @@ com.gentics.mesh mesh - 1.10.35-SNAPSHOT + 1.10.35 diff --git a/common-api/pom.xml b/common-api/pom.xml index c10e8377ed..1a4fc8b54d 100644 --- a/common-api/pom.xml +++ b/common-api/pom.xml @@ -11,7 +11,7 @@ com.gentics.mesh mesh - 1.10.35-SNAPSHOT + 1.10.35 diff --git a/common/pom.xml b/common/pom.xml index 6ee103af57..e802fb95a0 100644 --- a/common/pom.xml +++ b/common/pom.xml @@ -11,7 +11,7 @@ com.gentics.mesh mesh - 1.10.35-SNAPSHOT + 1.10.35 diff --git a/core/pom.xml b/core/pom.xml index 904df9df9d..f370e18c99 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -11,7 +11,7 @@ com.gentics.mesh mesh - 1.10.35-SNAPSHOT + 1.10.35 diff --git a/databases/orientdb/pom.xml b/databases/orientdb/pom.xml index f876f267af..c8a2cf57a8 100644 --- a/databases/orientdb/pom.xml +++ b/databases/orientdb/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh-databases - 1.10.35-SNAPSHOT + 1.10.35 diff --git a/databases/pom.xml b/databases/pom.xml index c3ac96a667..f2d921d52b 100644 --- a/databases/pom.xml +++ b/databases/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh - 1.10.35-SNAPSHOT + 1.10.35 diff --git a/demo/common/pom.xml b/demo/common/pom.xml index 66e7de04c7..37935c8e9a 100644 --- a/demo/common/pom.xml +++ b/demo/common/pom.xml @@ -11,7 +11,7 @@ com.gentics.mesh mesh-demos - 1.10.35-SNAPSHOT + 1.10.35 diff --git a/demo/default/pom.xml b/demo/default/pom.xml index 7b3d8feb21..dacfd7eca6 100644 --- a/demo/default/pom.xml +++ b/demo/default/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh-demos - 1.10.35-SNAPSHOT + 1.10.35 diff --git a/demo/pom.xml b/demo/pom.xml index 8598f35fef..aa107d1635 100644 --- a/demo/pom.xml +++ b/demo/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh - 1.10.35-SNAPSHOT + 1.10.35 diff --git a/distributed-coordinator/pom.xml b/distributed-coordinator/pom.xml index 804ce8ca70..bc0434c94a 100644 --- a/distributed-coordinator/pom.xml +++ b/distributed-coordinator/pom.xml @@ -7,7 +7,7 @@ com.gentics.mesh mesh - 1.10.35-SNAPSHOT + 1.10.35 mesh-distributed-coordinator diff --git a/distributed/pom.xml b/distributed/pom.xml index 34ba3ab482..7b99d12bdc 100644 --- a/distributed/pom.xml +++ b/distributed/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh - 1.10.35-SNAPSHOT + 1.10.35 diff --git a/doc/pom.xml b/doc/pom.xml index 2ec98bb9ef..e25b95b2c9 100644 --- a/doc/pom.xml +++ b/doc/pom.xml @@ -6,7 +6,7 @@ com.gentics.mesh mesh - 1.10.35-SNAPSHOT + 1.10.35 mesh-doc diff --git a/elasticsearch/pom.xml b/elasticsearch/pom.xml index ef38134dd9..be4a99e592 100644 --- a/elasticsearch/pom.xml +++ b/elasticsearch/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh - 1.10.35-SNAPSHOT + 1.10.35 diff --git a/ferma/pom.xml b/ferma/pom.xml index 4505b994d7..292574510d 100644 --- a/ferma/pom.xml +++ b/ferma/pom.xml @@ -6,7 +6,7 @@ com.gentics.mesh mesh - 1.10.35-SNAPSHOT + 1.10.35 ferma diff --git a/hazelcast3-cluster-manager/pom.xml b/hazelcast3-cluster-manager/pom.xml index b758770a68..2cc2b8b285 100644 --- a/hazelcast3-cluster-manager/pom.xml +++ b/hazelcast3-cluster-manager/pom.xml @@ -6,7 +6,7 @@ mesh com.gentics.mesh - 1.10.35-SNAPSHOT + 1.10.35 hazelcast3-cluster-manager diff --git a/madl/api/pom.xml b/madl/api/pom.xml index 939758e15e..dcb2bd45ac 100644 --- a/madl/api/pom.xml +++ b/madl/api/pom.xml @@ -6,7 +6,7 @@ com.gentics.mesh madl - 1.10.35-SNAPSHOT + 1.10.35 madl-api diff --git a/madl/core/pom.xml b/madl/core/pom.xml index aec52cc1f1..404cce33b4 100644 --- a/madl/core/pom.xml +++ b/madl/core/pom.xml @@ -6,7 +6,7 @@ com.gentics.mesh madl - 1.10.35-SNAPSHOT + 1.10.35 madl-core diff --git a/madl/madl-ferma/pom.xml b/madl/madl-ferma/pom.xml index ef05061e8e..0ad6e56069 100644 --- a/madl/madl-ferma/pom.xml +++ b/madl/madl-ferma/pom.xml @@ -6,7 +6,7 @@ com.gentics.mesh madl - 1.10.35-SNAPSHOT + 1.10.35 madl-ferma diff --git a/madl/orientdb/pom.xml b/madl/orientdb/pom.xml index 8712f725f1..624c08e21b 100644 --- a/madl/orientdb/pom.xml +++ b/madl/orientdb/pom.xml @@ -7,7 +7,7 @@ com.gentics.mesh madl - 1.10.35-SNAPSHOT + 1.10.35 madl-orientdb diff --git a/madl/pom.xml b/madl/pom.xml index cac61373f4..5f77a91024 100644 --- a/madl/pom.xml +++ b/madl/pom.xml @@ -7,7 +7,7 @@ com.gentics.mesh mesh - 1.10.35-SNAPSHOT + 1.10.35 madl diff --git a/mdm/api/pom.xml b/mdm/api/pom.xml index b15cdfd034..61bc2d7452 100644 --- a/mdm/api/pom.xml +++ b/mdm/api/pom.xml @@ -7,7 +7,7 @@ com.gentics.mesh mesh-mdm - 1.10.35-SNAPSHOT + 1.10.35 mesh-mdm-api diff --git a/mdm/common/pom.xml b/mdm/common/pom.xml index ba63ea0bcf..8008dbc71b 100644 --- a/mdm/common/pom.xml +++ b/mdm/common/pom.xml @@ -7,7 +7,7 @@ com.gentics.mesh mesh-mdm - 1.10.35-SNAPSHOT + 1.10.35 mesh-mdm-common diff --git a/mdm/orientdb-api/pom.xml b/mdm/orientdb-api/pom.xml index 16c71d13c9..d8316fecce 100644 --- a/mdm/orientdb-api/pom.xml +++ b/mdm/orientdb-api/pom.xml @@ -7,7 +7,7 @@ com.gentics.mesh mesh-mdm - 1.10.35-SNAPSHOT + 1.10.35 mesh-mdm-orientdb-api diff --git a/mdm/orientdb-wrapper/pom.xml b/mdm/orientdb-wrapper/pom.xml index f3587a3603..38e963f2d2 100644 --- a/mdm/orientdb-wrapper/pom.xml +++ b/mdm/orientdb-wrapper/pom.xml @@ -7,7 +7,7 @@ com.gentics.mesh mesh-mdm - 1.10.35-SNAPSHOT + 1.10.35 mesh-mdm-orientdb-wrapper diff --git a/mdm/pom.xml b/mdm/pom.xml index e5323c0f38..93c06f70a9 100644 --- a/mdm/pom.xml +++ b/mdm/pom.xml @@ -7,7 +7,7 @@ com.gentics.mesh mesh - 1.10.35-SNAPSHOT + 1.10.35 mesh-mdm diff --git a/performance-tests/pom.xml b/performance-tests/pom.xml index d0ca1bd627..08cb4619eb 100644 --- a/performance-tests/pom.xml +++ b/performance-tests/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh - 1.10.35-SNAPSHOT + 1.10.35 diff --git a/plugin-api/pom.xml b/plugin-api/pom.xml index ef5547ebf9..63e33417ff 100644 --- a/plugin-api/pom.xml +++ b/plugin-api/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh - 1.10.35-SNAPSHOT + 1.10.35 diff --git a/plugin-bom/pom.xml b/plugin-bom/pom.xml index 03f9eca7f3..f6448d9417 100644 --- a/plugin-bom/pom.xml +++ b/plugin-bom/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh - 1.10.35-SNAPSHOT + 1.10.35 diff --git a/plugin-dep/pom.xml b/plugin-dep/pom.xml index 9e8fe1e060..984653d28f 100644 --- a/plugin-dep/pom.xml +++ b/plugin-dep/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh - 1.10.35-SNAPSHOT + 1.10.35 diff --git a/plugin-parent/pom.xml b/plugin-parent/pom.xml index 6cb89e797b..4471a27aa0 100644 --- a/plugin-parent/pom.xml +++ b/plugin-parent/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh - 1.10.35-SNAPSHOT + 1.10.35 diff --git a/pom.xml b/pom.xml index 8fd63d8ad0..f79be04f6a 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ com.gentics.mesh mesh - 1.10.35-SNAPSHOT + 1.10.35 pom Gentics Mesh diff --git a/rest-client/pom.xml b/rest-client/pom.xml index 956caf0592..707eb47fab 100644 --- a/rest-client/pom.xml +++ b/rest-client/pom.xml @@ -11,7 +11,7 @@ com.gentics.mesh mesh - 1.10.35-SNAPSHOT + 1.10.35 diff --git a/rest-model/pom.xml b/rest-model/pom.xml index eced239770..4539a62aac 100644 --- a/rest-model/pom.xml +++ b/rest-model/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh - 1.10.35-SNAPSHOT + 1.10.35 diff --git a/server/pom.xml b/server/pom.xml index 9ff5ac0453..8af2860a02 100644 --- a/server/pom.xml +++ b/server/pom.xml @@ -11,7 +11,7 @@ com.gentics.mesh mesh - 1.10.35-SNAPSHOT + 1.10.35 diff --git a/services/aws-s3-storage/pom.xml b/services/aws-s3-storage/pom.xml index a2ab5f8e7c..6327c790e2 100644 --- a/services/aws-s3-storage/pom.xml +++ b/services/aws-s3-storage/pom.xml @@ -11,7 +11,7 @@ com.gentics.mesh mesh-services - 1.10.35-SNAPSHOT + 1.10.35 diff --git a/services/image-imgscalr/pom.xml b/services/image-imgscalr/pom.xml index dbd3a36c58..41be8c2096 100644 --- a/services/image-imgscalr/pom.xml +++ b/services/image-imgscalr/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh-services - 1.10.35-SNAPSHOT + 1.10.35 diff --git a/services/jwt-auth/pom.xml b/services/jwt-auth/pom.xml index d69f815826..5513b828c6 100644 --- a/services/jwt-auth/pom.xml +++ b/services/jwt-auth/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh-services - 1.10.35-SNAPSHOT + 1.10.35 diff --git a/services/local-storage/pom.xml b/services/local-storage/pom.xml index bcc976f768..6a5a23ab39 100644 --- a/services/local-storage/pom.xml +++ b/services/local-storage/pom.xml @@ -9,7 +9,7 @@ com.gentics.mesh mesh-services - 1.10.35-SNAPSHOT + 1.10.35 diff --git a/services/metrics-prometheus/pom.xml b/services/metrics-prometheus/pom.xml index dfd90cd04c..1365689bb8 100644 --- a/services/metrics-prometheus/pom.xml +++ b/services/metrics-prometheus/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh-services - 1.10.35-SNAPSHOT + 1.10.35 diff --git a/services/pom.xml b/services/pom.xml index 883c10df6d..543a92d3c3 100644 --- a/services/pom.xml +++ b/services/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh - 1.10.35-SNAPSHOT + 1.10.35 diff --git a/tests/api/pom.xml b/tests/api/pom.xml index fa5470c0b4..d3e242db8e 100644 --- a/tests/api/pom.xml +++ b/tests/api/pom.xml @@ -5,7 +5,7 @@ com.gentics.mesh mesh-tests - 1.10.35-SNAPSHOT + 1.10.35 mesh-tests-api Mesh - Tests API diff --git a/tests/common/pom.xml b/tests/common/pom.xml index 8776118299..96e2e9b25a 100644 --- a/tests/common/pom.xml +++ b/tests/common/pom.xml @@ -11,7 +11,7 @@ com.gentics.mesh mesh-tests - 1.10.35-SNAPSHOT + 1.10.35 diff --git a/tests/context-api/pom.xml b/tests/context-api/pom.xml index bbf636d71d..629fe030da 100644 --- a/tests/context-api/pom.xml +++ b/tests/context-api/pom.xml @@ -5,7 +5,7 @@ com.gentics.mesh mesh-tests - 1.10.35-SNAPSHOT + 1.10.35 mesh-tests-context-api Mesh - Tests context API diff --git a/tests/context-orientdb/pom.xml b/tests/context-orientdb/pom.xml index 641f4c5772..1f66b36b24 100644 --- a/tests/context-orientdb/pom.xml +++ b/tests/context-orientdb/pom.xml @@ -3,7 +3,7 @@ com.gentics.mesh mesh-tests - 1.10.35-SNAPSHOT + 1.10.35 mesh-tests-context-orientdb Mesh - Tests context - OrientDB diff --git a/tests/orientdb-runner/pom.xml b/tests/orientdb-runner/pom.xml index f18cedc338..1f73b7a7ef 100644 --- a/tests/orientdb-runner/pom.xml +++ b/tests/orientdb-runner/pom.xml @@ -5,7 +5,7 @@ com.gentics.mesh mesh-tests - 1.10.35-SNAPSHOT + 1.10.35 mesh-orientdb-tests-runner Mesh - Tests Runner - OrientDB diff --git a/tests/pom.xml b/tests/pom.xml index e9333d1211..e327bd8194 100644 --- a/tests/pom.xml +++ b/tests/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh - 1.10.35-SNAPSHOT + 1.10.35 diff --git a/tests/tests-admin-gui/pom.xml b/tests/tests-admin-gui/pom.xml index 0bbafa9b77..cd307ce6fc 100644 --- a/tests/tests-admin-gui/pom.xml +++ b/tests/tests-admin-gui/pom.xml @@ -5,7 +5,7 @@ com.gentics.mesh mesh-tests - 1.10.35-SNAPSHOT + 1.10.35 tests-mesh-admin-gui Mesh Admin GUI - Shared tests diff --git a/tests/tests-api/pom.xml b/tests/tests-api/pom.xml index 2a133bcfe2..7a81e2f77f 100644 --- a/tests/tests-api/pom.xml +++ b/tests/tests-api/pom.xml @@ -8,7 +8,7 @@ com.gentics.mesh mesh-tests - 1.10.35-SNAPSHOT + 1.10.35 diff --git a/tests/tests-changelog-system/pom.xml b/tests/tests-changelog-system/pom.xml index 800df3879f..05163e434f 100644 --- a/tests/tests-changelog-system/pom.xml +++ b/tests/tests-changelog-system/pom.xml @@ -5,7 +5,7 @@ com.gentics.mesh mesh-tests - 1.10.35-SNAPSHOT + 1.10.35 tests-mesh-changelog-system Mesh Changelog System - Shared tests diff --git a/tests/tests-common/pom.xml b/tests/tests-common/pom.xml index ddb656e2ab..aeaa895994 100644 --- a/tests/tests-common/pom.xml +++ b/tests/tests-common/pom.xml @@ -8,7 +8,7 @@ com.gentics.mesh mesh-tests - 1.10.35-SNAPSHOT + 1.10.35 diff --git a/tests/tests-core/pom.xml b/tests/tests-core/pom.xml index 8681e2cc3b..d1f50cf0d4 100644 --- a/tests/tests-core/pom.xml +++ b/tests/tests-core/pom.xml @@ -8,7 +8,7 @@ com.gentics.mesh mesh-tests - 1.10.35-SNAPSHOT + 1.10.35 diff --git a/tests/tests-distributed-coordinator/pom.xml b/tests/tests-distributed-coordinator/pom.xml index 6e73797c5d..0cea1168cf 100644 --- a/tests/tests-distributed-coordinator/pom.xml +++ b/tests/tests-distributed-coordinator/pom.xml @@ -5,7 +5,7 @@ com.gentics.mesh mesh-tests - 1.10.35-SNAPSHOT + 1.10.35 tests-mesh-distributed-coordinator Mesh Distributed Coordinator - Shared tests diff --git a/tests/tests-distributed/pom.xml b/tests/tests-distributed/pom.xml index a15806352c..f49c3517fe 100644 --- a/tests/tests-distributed/pom.xml +++ b/tests/tests-distributed/pom.xml @@ -11,7 +11,7 @@ com.gentics.mesh mesh-tests - 1.10.35-SNAPSHOT + 1.10.35 diff --git a/tests/tests-elasticsearch/pom.xml b/tests/tests-elasticsearch/pom.xml index b95cbf737a..e57d005183 100644 --- a/tests/tests-elasticsearch/pom.xml +++ b/tests/tests-elasticsearch/pom.xml @@ -5,7 +5,7 @@ com.gentics.mesh mesh-tests - 1.10.35-SNAPSHOT + 1.10.35 tests-mesh-elasticsearch Mesh Elasticsearch - Shared tests diff --git a/tests/tests-plugin-api/pom.xml b/tests/tests-plugin-api/pom.xml index fd6a61fc93..2244cd197c 100644 --- a/tests/tests-plugin-api/pom.xml +++ b/tests/tests-plugin-api/pom.xml @@ -5,7 +5,7 @@ com.gentics.mesh mesh-tests - 1.10.35-SNAPSHOT + 1.10.35 tests-mesh-plugin-api Mesh Plugin API - Shared tests diff --git a/tests/tests-rest-client/pom.xml b/tests/tests-rest-client/pom.xml index 3cdc14e6c1..61b566b78e 100644 --- a/tests/tests-rest-client/pom.xml +++ b/tests/tests-rest-client/pom.xml @@ -5,7 +5,7 @@ com.gentics.mesh mesh-tests - 1.10.35-SNAPSHOT + 1.10.35 tests-mesh-rest-client Mesh REST Client - Shared tests diff --git a/tests/tests-rest-model/pom.xml b/tests/tests-rest-model/pom.xml index 9a424d611c..9d7b5331c4 100644 --- a/tests/tests-rest-model/pom.xml +++ b/tests/tests-rest-model/pom.xml @@ -5,7 +5,7 @@ com.gentics.mesh mesh-tests - 1.10.35-SNAPSHOT + 1.10.35 tests-mesh-rest-model Mesh REST Model - Shared tests diff --git a/tests/tests-server/pom.xml b/tests/tests-server/pom.xml index 51fa90068b..28c9ae2c31 100644 --- a/tests/tests-server/pom.xml +++ b/tests/tests-server/pom.xml @@ -5,7 +5,7 @@ com.gentics.mesh mesh-tests - 1.10.35-SNAPSHOT + 1.10.35 tests-mesh-server Mesh Server - Shared tests diff --git a/tests/tests-service-aws-s3-storage/pom.xml b/tests/tests-service-aws-s3-storage/pom.xml index 15fdddb64f..344be85158 100644 --- a/tests/tests-service-aws-s3-storage/pom.xml +++ b/tests/tests-service-aws-s3-storage/pom.xml @@ -5,7 +5,7 @@ com.gentics.mesh mesh-tests - 1.10.35-SNAPSHOT + 1.10.35 tests-mesh-service-aws-s3-storage Mesh AWS S3 Storage - Shared tests diff --git a/tests/tests-service-image-imgscalr/pom.xml b/tests/tests-service-image-imgscalr/pom.xml index 6c8de60559..58a560fe9f 100644 --- a/tests/tests-service-image-imgscalr/pom.xml +++ b/tests/tests-service-image-imgscalr/pom.xml @@ -5,7 +5,7 @@ com.gentics.mesh mesh-tests - 1.10.35-SNAPSHOT + 1.10.35 tests-mesh-service-image-imgscalr Mesh Imgscalr Service - Shared tests diff --git a/tests/tests-service-jwt-auth/pom.xml b/tests/tests-service-jwt-auth/pom.xml index 2e8d1a51f1..fe6b3a451b 100644 --- a/tests/tests-service-jwt-auth/pom.xml +++ b/tests/tests-service-jwt-auth/pom.xml @@ -5,7 +5,7 @@ com.gentics.mesh mesh-tests - 1.10.35-SNAPSHOT + 1.10.35 tests-mesh-service-jwt-auth Mesh JWT Authentication - Shared tests diff --git a/tests/tests-service-local-storage/pom.xml b/tests/tests-service-local-storage/pom.xml index 368ab312e3..24331157e6 100644 --- a/tests/tests-service-local-storage/pom.xml +++ b/tests/tests-service-local-storage/pom.xml @@ -5,7 +5,7 @@ com.gentics.mesh mesh-tests - 1.10.35-SNAPSHOT + 1.10.35 tests-mesh-service-local-storage Mesh Local Storage - Shared tests diff --git a/tests/tests-service-metrics-prometheus/pom.xml b/tests/tests-service-metrics-prometheus/pom.xml index f6534e1874..8a800db1a3 100644 --- a/tests/tests-service-metrics-prometheus/pom.xml +++ b/tests/tests-service-metrics-prometheus/pom.xml @@ -5,7 +5,7 @@ com.gentics.mesh mesh-tests - 1.10.35-SNAPSHOT + 1.10.35 tests-mesh-service-metrics-prometheus Mesh Prometeus Metrics Service - Shared tests diff --git a/verticles/admin-gui/pom.xml b/verticles/admin-gui/pom.xml index 2015b872e2..17fa15ae4c 100644 --- a/verticles/admin-gui/pom.xml +++ b/verticles/admin-gui/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh-verticles - 1.10.35-SNAPSHOT + 1.10.35 diff --git a/verticles/graphql/pom.xml b/verticles/graphql/pom.xml index 580dc866b4..154bb10286 100644 --- a/verticles/graphql/pom.xml +++ b/verticles/graphql/pom.xml @@ -9,7 +9,7 @@ com.gentics.mesh mesh-verticles - 1.10.35-SNAPSHOT + 1.10.35 diff --git a/verticles/pom.xml b/verticles/pom.xml index 616eaa6836..e86990f11f 100644 --- a/verticles/pom.xml +++ b/verticles/pom.xml @@ -9,7 +9,7 @@ com.gentics.mesh mesh - 1.10.35-SNAPSHOT + 1.10.35 diff --git a/verticles/rest/pom.xml b/verticles/rest/pom.xml index e2fc7df249..d2ceea6ec7 100644 --- a/verticles/rest/pom.xml +++ b/verticles/rest/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh-verticles - 1.10.35-SNAPSHOT + 1.10.35 From d97f0efc83db41831164a493b3c86d320ec0dbda Mon Sep 17 00:00:00 2001 From: 1000 user <1000@a66feb33f7bb> Date: Tue, 1 Oct 2024 12:10:04 +0200 Subject: [PATCH 3/3] [Jenkins | hotfix-1.10.x] Prepare for the next development iteration (1.10.36-SNAPSHOT) --- api/pom.xml | 2 +- bom/pom.xml | 2 +- changelog-system/pom.xml | 2 +- common-api/pom.xml | 2 +- common/pom.xml | 2 +- core/pom.xml | 2 +- databases/orientdb/pom.xml | 2 +- databases/pom.xml | 2 +- demo/common/pom.xml | 2 +- demo/default/pom.xml | 2 +- demo/pom.xml | 2 +- distributed-coordinator/pom.xml | 2 +- distributed/pom.xml | 2 +- doc/pom.xml | 2 +- doc/src/main/docs/generated/api/api-docs.raml | 24 +++++++++---------- doc/src/main/docs/generated/api/api.raml | 24 +++++++++---------- .../api/response/api/v2/200/example.json | 2 +- .../tables/mesh-db-revs.adoc-include | 2 +- elasticsearch/pom.xml | 2 +- ferma/pom.xml | 2 +- hazelcast3-cluster-manager/pom.xml | 2 +- madl/api/pom.xml | 2 +- madl/core/pom.xml | 2 +- madl/madl-ferma/pom.xml | 2 +- madl/orientdb/pom.xml | 2 +- madl/pom.xml | 2 +- mdm/api/pom.xml | 2 +- mdm/common/pom.xml | 2 +- mdm/orientdb-api/pom.xml | 2 +- mdm/orientdb-wrapper/pom.xml | 2 +- mdm/pom.xml | 2 +- performance-tests/pom.xml | 2 +- plugin-api/pom.xml | 2 +- plugin-bom/pom.xml | 2 +- plugin-dep/pom.xml | 2 +- plugin-parent/pom.xml | 2 +- pom.xml | 2 +- rest-client/pom.xml | 2 +- rest-model/pom.xml | 2 +- server/pom.xml | 2 +- services/aws-s3-storage/pom.xml | 2 +- services/image-imgscalr/pom.xml | 2 +- services/jwt-auth/pom.xml | 2 +- services/local-storage/pom.xml | 2 +- services/metrics-prometheus/pom.xml | 2 +- services/pom.xml | 2 +- tests/api/pom.xml | 2 +- tests/common/pom.xml | 2 +- tests/context-api/pom.xml | 2 +- tests/context-orientdb/pom.xml | 2 +- tests/orientdb-runner/pom.xml | 2 +- tests/pom.xml | 2 +- tests/tests-admin-gui/pom.xml | 2 +- tests/tests-api/pom.xml | 2 +- tests/tests-changelog-system/pom.xml | 2 +- tests/tests-common/pom.xml | 2 +- tests/tests-core/pom.xml | 2 +- tests/tests-distributed-coordinator/pom.xml | 2 +- tests/tests-distributed/pom.xml | 2 +- tests/tests-elasticsearch/pom.xml | 2 +- tests/tests-plugin-api/pom.xml | 2 +- tests/tests-rest-client/pom.xml | 2 +- tests/tests-rest-model/pom.xml | 2 +- tests/tests-server/pom.xml | 2 +- tests/tests-service-aws-s3-storage/pom.xml | 2 +- tests/tests-service-image-imgscalr/pom.xml | 2 +- tests/tests-service-jwt-auth/pom.xml | 2 +- tests/tests-service-local-storage/pom.xml | 2 +- .../tests-service-metrics-prometheus/pom.xml | 2 +- verticles/admin-gui/pom.xml | 2 +- verticles/graphql/pom.xml | 2 +- verticles/pom.xml | 2 +- verticles/rest/pom.xml | 2 +- 73 files changed, 95 insertions(+), 95 deletions(-) diff --git a/api/pom.xml b/api/pom.xml index 23001b7756..23856f51da 100644 --- a/api/pom.xml +++ b/api/pom.xml @@ -11,7 +11,7 @@ com.gentics.mesh mesh - 1.10.35 + 1.10.36-SNAPSHOT diff --git a/bom/pom.xml b/bom/pom.xml index 5daa89e645..0d881c9f64 100644 --- a/bom/pom.xml +++ b/bom/pom.xml @@ -11,7 +11,7 @@ com.gentics.mesh mesh - 1.10.35 + 1.10.36-SNAPSHOT diff --git a/changelog-system/pom.xml b/changelog-system/pom.xml index 00fcbb404f..f3c5d0e5f2 100644 --- a/changelog-system/pom.xml +++ b/changelog-system/pom.xml @@ -12,7 +12,7 @@ com.gentics.mesh mesh - 1.10.35 + 1.10.36-SNAPSHOT diff --git a/common-api/pom.xml b/common-api/pom.xml index 1a4fc8b54d..ade7a53ab1 100644 --- a/common-api/pom.xml +++ b/common-api/pom.xml @@ -11,7 +11,7 @@ com.gentics.mesh mesh - 1.10.35 + 1.10.36-SNAPSHOT diff --git a/common/pom.xml b/common/pom.xml index e802fb95a0..d5d9cbb28a 100644 --- a/common/pom.xml +++ b/common/pom.xml @@ -11,7 +11,7 @@ com.gentics.mesh mesh - 1.10.35 + 1.10.36-SNAPSHOT diff --git a/core/pom.xml b/core/pom.xml index f370e18c99..f37b98d5a7 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -11,7 +11,7 @@ com.gentics.mesh mesh - 1.10.35 + 1.10.36-SNAPSHOT diff --git a/databases/orientdb/pom.xml b/databases/orientdb/pom.xml index c8a2cf57a8..4c6f989b39 100644 --- a/databases/orientdb/pom.xml +++ b/databases/orientdb/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh-databases - 1.10.35 + 1.10.36-SNAPSHOT diff --git a/databases/pom.xml b/databases/pom.xml index f2d921d52b..140eba554d 100644 --- a/databases/pom.xml +++ b/databases/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh - 1.10.35 + 1.10.36-SNAPSHOT diff --git a/demo/common/pom.xml b/demo/common/pom.xml index 37935c8e9a..1ce48d9e41 100644 --- a/demo/common/pom.xml +++ b/demo/common/pom.xml @@ -11,7 +11,7 @@ com.gentics.mesh mesh-demos - 1.10.35 + 1.10.36-SNAPSHOT diff --git a/demo/default/pom.xml b/demo/default/pom.xml index dacfd7eca6..6eab1d8a70 100644 --- a/demo/default/pom.xml +++ b/demo/default/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh-demos - 1.10.35 + 1.10.36-SNAPSHOT diff --git a/demo/pom.xml b/demo/pom.xml index aa107d1635..715b426c66 100644 --- a/demo/pom.xml +++ b/demo/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh - 1.10.35 + 1.10.36-SNAPSHOT diff --git a/distributed-coordinator/pom.xml b/distributed-coordinator/pom.xml index bc0434c94a..1e60570253 100644 --- a/distributed-coordinator/pom.xml +++ b/distributed-coordinator/pom.xml @@ -7,7 +7,7 @@ com.gentics.mesh mesh - 1.10.35 + 1.10.36-SNAPSHOT mesh-distributed-coordinator diff --git a/distributed/pom.xml b/distributed/pom.xml index 7b99d12bdc..cc34e75e49 100644 --- a/distributed/pom.xml +++ b/distributed/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh - 1.10.35 + 1.10.36-SNAPSHOT diff --git a/doc/pom.xml b/doc/pom.xml index e25b95b2c9..346d76e340 100644 --- a/doc/pom.xml +++ b/doc/pom.xml @@ -6,7 +6,7 @@ com.gentics.mesh mesh - 1.10.35 + 1.10.36-SNAPSHOT mesh-doc diff --git a/doc/src/main/docs/generated/api/api-docs.raml b/doc/src/main/docs/generated/api/api-docs.raml index 6411f606f2..51b32b581b 100644 --- a/doc/src/main/docs/generated/api/api-docs.raml +++ b/doc/src/main/docs/generated/api/api-docs.raml @@ -1,6 +1,6 @@ #%RAML 0.8 title: Gentics Mesh REST API -version: "1.10.34" +version: "1.10.35" baseUri: "http://localhost:8080/api/v2" protocols: [HTTP, HTTPS] mediaType: application/json @@ -693,7 +693,7 @@ mediaType: application/json "exclusive" : true, "ignore" : [ { "name" : "admin", - "uuid" : "b288f1ecb8aa44f5a901ee52fbd96e48" + "uuid" : "fec33a6c23724b19b41a8ddc56f9697a" } ] } responses: @@ -1328,7 +1328,7 @@ mediaType: application/json "exclusive" : true, "ignore" : [ { "name" : "admin", - "uuid" : "1eb59ac0e7df4e87b0c5ebfda3fa8f41" + "uuid" : "558e8f74cd9a4412bc529de3844802df" } ] } responses: @@ -1854,7 +1854,7 @@ mediaType: application/json "exclusive" : true, "ignore" : [ { "name" : "admin", - "uuid" : "0f5bafdb9f2b436bb50d4e82c113f441" + "uuid" : "677d17f740e445aaaa85b536b5baedfe" } ] } responses: @@ -2787,7 +2787,7 @@ mediaType: application/json "exclusive" : true, "ignore" : [ { "name" : "admin", - "uuid" : "34554e8216c04a688d024c4f2d418e61" + "uuid" : "5913ae38d2574fb1bb113c1b555eaeb5" } ] } responses: @@ -3746,7 +3746,7 @@ mediaType: application/json "exclusive" : true, "ignore" : [ { "name" : "admin", - "uuid" : "ae9ec65109ee4ace8e9b99783f369f79" + "uuid" : "f413f876aa684baa885dcbc337fd52f0" } ] } responses: @@ -4383,7 +4383,7 @@ mediaType: application/json "exclusive" : true, "ignore" : [ { "name" : "admin", - "uuid" : "cb80b6773811429aa41efa82e388f824" + "uuid" : "18b40bdc60ac4ede8454ade48e030aa1" } ] } responses: @@ -7459,7 +7459,7 @@ mediaType: application/json | vertxVersion | false | string | Used Vert.x version. | example: | { - "meshVersion" : "1.10.34", + "meshVersion" : "1.10.35", "meshNodeName" : "Reminiscent Tirtouga", "databaseVendor" : "orientdb", "databaseVersion" : "2.2.16", @@ -9896,7 +9896,7 @@ mediaType: application/json "exclusive" : true, "ignore" : [ { "name" : "admin", - "uuid" : "c29eae2dcdb346deac4ee60e822b4a67" + "uuid" : "b072e44e574740a58492b70f60e77087" } ] } responses: @@ -11341,7 +11341,7 @@ mediaType: application/json "exclusive" : true, "ignore" : [ { "name" : "admin", - "uuid" : "9adfcbb28da34c03a4f80dbd74dd4128" + "uuid" : "6916a6c0504847498171056c78c372f1" } ] } responses: @@ -12130,7 +12130,7 @@ mediaType: application/json "exclusive" : true, "ignore" : [ { "name" : "admin", - "uuid" : "932d82acf3c04dc4b1394baea6003cee" + "uuid" : "2c09888950a74da89ae52e0cc36f72e6" } ] } responses: @@ -13801,7 +13801,7 @@ mediaType: application/json "exclusive" : true, "ignore" : [ { "name" : "admin", - "uuid" : "11ef8354814242bc9d926ec8df942d25" + "uuid" : "3c4279fd31b044d18a686b87cc6b5594" } ] } responses: diff --git a/doc/src/main/docs/generated/api/api.raml b/doc/src/main/docs/generated/api/api.raml index 75475170a5..706b804124 100644 --- a/doc/src/main/docs/generated/api/api.raml +++ b/doc/src/main/docs/generated/api/api.raml @@ -1,6 +1,6 @@ #%RAML 0.8 title: Gentics Mesh REST API -version: "1.10.34" +version: "1.10.35" baseUri: "http://localhost:8080/api/v2" protocols: [HTTP, HTTPS] mediaType: application/json @@ -1515,7 +1515,7 @@ mediaType: application/json "exclusive" : true, "ignore" : [ { "name" : "admin", - "uuid" : "08e963deafe84366b2b2f596615fd8bf" + "uuid" : "127ef9e1e988481eb439febd1c2a6be0" } ] } responses: @@ -3035,7 +3035,7 @@ mediaType: application/json "exclusive" : true, "ignore" : [ { "name" : "admin", - "uuid" : "75666858ba4a446b9ce4f252a13997c0" + "uuid" : "f0e84c7cad624d899f270b8f35646ef2" } ] } responses: @@ -4328,7 +4328,7 @@ mediaType: application/json "exclusive" : true, "ignore" : [ { "name" : "admin", - "uuid" : "fbdddb3b13784f3c94d0c613d1fc2c8d" + "uuid" : "aec0d4c0118a498c99651aacc49e613e" } ] } responses: @@ -6702,7 +6702,7 @@ mediaType: application/json "exclusive" : true, "ignore" : [ { "name" : "admin", - "uuid" : "dcf52f73a8ed4c19be03fafa58480b77" + "uuid" : "0f2d5b01d5c64867969dae5153402c3f" } ] } responses: @@ -9018,7 +9018,7 @@ mediaType: application/json "exclusive" : true, "ignore" : [ { "name" : "admin", - "uuid" : "80f922830bb44983a482f63c68073057" + "uuid" : "4bf8de199f5e4d618ecf1b6c309dcc13" } ] } responses: @@ -10683,7 +10683,7 @@ mediaType: application/json "exclusive" : true, "ignore" : [ { "name" : "admin", - "uuid" : "c283ee3e4e39426fa8c7437ab8367125" + "uuid" : "23043afd97d144db82f09143cffa3bc7" } ] } responses: @@ -17078,7 +17078,7 @@ mediaType: application/json } example: | { - "meshVersion" : "1.10.34", + "meshVersion" : "1.10.35", "meshNodeName" : "Reminiscent Tirtouga", "databaseVendor" : "orientdb", "databaseVersion" : "2.2.16", @@ -22831,7 +22831,7 @@ mediaType: application/json "exclusive" : true, "ignore" : [ { "name" : "admin", - "uuid" : "ef6afffbe0254a08be9fa80465708b4e" + "uuid" : "1369260fc5bf4151aeba642d3ef0895a" } ] } responses: @@ -26211,7 +26211,7 @@ mediaType: application/json "exclusive" : true, "ignore" : [ { "name" : "admin", - "uuid" : "286d3226490c4571856421b4ce0996b8" + "uuid" : "1440c94056004f70b0f6ec6b4c03f709" } ] } responses: @@ -28074,7 +28074,7 @@ mediaType: application/json "exclusive" : true, "ignore" : [ { "name" : "admin", - "uuid" : "33673a11b9fd4ee88fdc0565c325f57d" + "uuid" : "bb54374d40c143fe98b84735fa0bf0ad" } ] } responses: @@ -31882,7 +31882,7 @@ mediaType: application/json "exclusive" : true, "ignore" : [ { "name" : "admin", - "uuid" : "fd67d9897e8f47adae051d83f43edc96" + "uuid" : "29f82fe8ea304efb8ec1d0ffbb852dca" } ] } responses: diff --git a/doc/src/main/docs/generated/api/response/api/v2/200/example.json b/doc/src/main/docs/generated/api/response/api/v2/200/example.json index 2d2ff11346..2afc6d79ac 100644 --- a/doc/src/main/docs/generated/api/response/api/v2/200/example.json +++ b/doc/src/main/docs/generated/api/response/api/v2/200/example.json @@ -1,5 +1,5 @@ { - "meshVersion" : "1.10.34", + "meshVersion" : "1.10.35", "meshNodeName" : "Reminiscent Tirtouga", "databaseVendor" : "orientdb", "databaseVersion" : "2.2.16", diff --git a/doc/src/main/docs/generated/tables/mesh-db-revs.adoc-include b/doc/src/main/docs/generated/tables/mesh-db-revs.adoc-include index 74bdab89a8..e8a0b0e4a8 100644 --- a/doc/src/main/docs/generated/tables/mesh-db-revs.adoc-include +++ b/doc/src/main/docs/generated/tables/mesh-db-revs.adoc-include @@ -575,7 +575,7 @@ | *2.1.5* | 6d5ccff3 -| *1.10.34* +| *1.10.35* | 6d5ccff3 |====== diff --git a/elasticsearch/pom.xml b/elasticsearch/pom.xml index be4a99e592..ae5d255bfc 100644 --- a/elasticsearch/pom.xml +++ b/elasticsearch/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh - 1.10.35 + 1.10.36-SNAPSHOT diff --git a/ferma/pom.xml b/ferma/pom.xml index 292574510d..ece2d07a9d 100644 --- a/ferma/pom.xml +++ b/ferma/pom.xml @@ -6,7 +6,7 @@ com.gentics.mesh mesh - 1.10.35 + 1.10.36-SNAPSHOT ferma diff --git a/hazelcast3-cluster-manager/pom.xml b/hazelcast3-cluster-manager/pom.xml index 2cc2b8b285..6b73b2979b 100644 --- a/hazelcast3-cluster-manager/pom.xml +++ b/hazelcast3-cluster-manager/pom.xml @@ -6,7 +6,7 @@ mesh com.gentics.mesh - 1.10.35 + 1.10.36-SNAPSHOT hazelcast3-cluster-manager diff --git a/madl/api/pom.xml b/madl/api/pom.xml index dcb2bd45ac..b5dd50f9da 100644 --- a/madl/api/pom.xml +++ b/madl/api/pom.xml @@ -6,7 +6,7 @@ com.gentics.mesh madl - 1.10.35 + 1.10.36-SNAPSHOT madl-api diff --git a/madl/core/pom.xml b/madl/core/pom.xml index 404cce33b4..ad4d15c5ab 100644 --- a/madl/core/pom.xml +++ b/madl/core/pom.xml @@ -6,7 +6,7 @@ com.gentics.mesh madl - 1.10.35 + 1.10.36-SNAPSHOT madl-core diff --git a/madl/madl-ferma/pom.xml b/madl/madl-ferma/pom.xml index 0ad6e56069..394d571692 100644 --- a/madl/madl-ferma/pom.xml +++ b/madl/madl-ferma/pom.xml @@ -6,7 +6,7 @@ com.gentics.mesh madl - 1.10.35 + 1.10.36-SNAPSHOT madl-ferma diff --git a/madl/orientdb/pom.xml b/madl/orientdb/pom.xml index 624c08e21b..887c3a8c6f 100644 --- a/madl/orientdb/pom.xml +++ b/madl/orientdb/pom.xml @@ -7,7 +7,7 @@ com.gentics.mesh madl - 1.10.35 + 1.10.36-SNAPSHOT madl-orientdb diff --git a/madl/pom.xml b/madl/pom.xml index 5f77a91024..81c266b51e 100644 --- a/madl/pom.xml +++ b/madl/pom.xml @@ -7,7 +7,7 @@ com.gentics.mesh mesh - 1.10.35 + 1.10.36-SNAPSHOT madl diff --git a/mdm/api/pom.xml b/mdm/api/pom.xml index 61bc2d7452..99bfe3a0ee 100644 --- a/mdm/api/pom.xml +++ b/mdm/api/pom.xml @@ -7,7 +7,7 @@ com.gentics.mesh mesh-mdm - 1.10.35 + 1.10.36-SNAPSHOT mesh-mdm-api diff --git a/mdm/common/pom.xml b/mdm/common/pom.xml index 8008dbc71b..8e98014b31 100644 --- a/mdm/common/pom.xml +++ b/mdm/common/pom.xml @@ -7,7 +7,7 @@ com.gentics.mesh mesh-mdm - 1.10.35 + 1.10.36-SNAPSHOT mesh-mdm-common diff --git a/mdm/orientdb-api/pom.xml b/mdm/orientdb-api/pom.xml index d8316fecce..96d8e57fd0 100644 --- a/mdm/orientdb-api/pom.xml +++ b/mdm/orientdb-api/pom.xml @@ -7,7 +7,7 @@ com.gentics.mesh mesh-mdm - 1.10.35 + 1.10.36-SNAPSHOT mesh-mdm-orientdb-api diff --git a/mdm/orientdb-wrapper/pom.xml b/mdm/orientdb-wrapper/pom.xml index 38e963f2d2..61f62d66a9 100644 --- a/mdm/orientdb-wrapper/pom.xml +++ b/mdm/orientdb-wrapper/pom.xml @@ -7,7 +7,7 @@ com.gentics.mesh mesh-mdm - 1.10.35 + 1.10.36-SNAPSHOT mesh-mdm-orientdb-wrapper diff --git a/mdm/pom.xml b/mdm/pom.xml index 93c06f70a9..b72348ae58 100644 --- a/mdm/pom.xml +++ b/mdm/pom.xml @@ -7,7 +7,7 @@ com.gentics.mesh mesh - 1.10.35 + 1.10.36-SNAPSHOT mesh-mdm diff --git a/performance-tests/pom.xml b/performance-tests/pom.xml index 08cb4619eb..61930ec772 100644 --- a/performance-tests/pom.xml +++ b/performance-tests/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh - 1.10.35 + 1.10.36-SNAPSHOT diff --git a/plugin-api/pom.xml b/plugin-api/pom.xml index 63e33417ff..b8ba657448 100644 --- a/plugin-api/pom.xml +++ b/plugin-api/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh - 1.10.35 + 1.10.36-SNAPSHOT diff --git a/plugin-bom/pom.xml b/plugin-bom/pom.xml index f6448d9417..ec73cacc0e 100644 --- a/plugin-bom/pom.xml +++ b/plugin-bom/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh - 1.10.35 + 1.10.36-SNAPSHOT diff --git a/plugin-dep/pom.xml b/plugin-dep/pom.xml index 984653d28f..923bc41aa8 100644 --- a/plugin-dep/pom.xml +++ b/plugin-dep/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh - 1.10.35 + 1.10.36-SNAPSHOT diff --git a/plugin-parent/pom.xml b/plugin-parent/pom.xml index 4471a27aa0..d23c85097f 100644 --- a/plugin-parent/pom.xml +++ b/plugin-parent/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh - 1.10.35 + 1.10.36-SNAPSHOT diff --git a/pom.xml b/pom.xml index f79be04f6a..6c53897951 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ com.gentics.mesh mesh - 1.10.35 + 1.10.36-SNAPSHOT pom Gentics Mesh diff --git a/rest-client/pom.xml b/rest-client/pom.xml index 707eb47fab..db77421bc4 100644 --- a/rest-client/pom.xml +++ b/rest-client/pom.xml @@ -11,7 +11,7 @@ com.gentics.mesh mesh - 1.10.35 + 1.10.36-SNAPSHOT diff --git a/rest-model/pom.xml b/rest-model/pom.xml index 4539a62aac..6780167324 100644 --- a/rest-model/pom.xml +++ b/rest-model/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh - 1.10.35 + 1.10.36-SNAPSHOT diff --git a/server/pom.xml b/server/pom.xml index 8af2860a02..7fbb5bdd14 100644 --- a/server/pom.xml +++ b/server/pom.xml @@ -11,7 +11,7 @@ com.gentics.mesh mesh - 1.10.35 + 1.10.36-SNAPSHOT diff --git a/services/aws-s3-storage/pom.xml b/services/aws-s3-storage/pom.xml index 6327c790e2..996a56c333 100644 --- a/services/aws-s3-storage/pom.xml +++ b/services/aws-s3-storage/pom.xml @@ -11,7 +11,7 @@ com.gentics.mesh mesh-services - 1.10.35 + 1.10.36-SNAPSHOT diff --git a/services/image-imgscalr/pom.xml b/services/image-imgscalr/pom.xml index 41be8c2096..5d196aa60f 100644 --- a/services/image-imgscalr/pom.xml +++ b/services/image-imgscalr/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh-services - 1.10.35 + 1.10.36-SNAPSHOT diff --git a/services/jwt-auth/pom.xml b/services/jwt-auth/pom.xml index 5513b828c6..392f1cd80f 100644 --- a/services/jwt-auth/pom.xml +++ b/services/jwt-auth/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh-services - 1.10.35 + 1.10.36-SNAPSHOT diff --git a/services/local-storage/pom.xml b/services/local-storage/pom.xml index 6a5a23ab39..7fc5a89bd9 100644 --- a/services/local-storage/pom.xml +++ b/services/local-storage/pom.xml @@ -9,7 +9,7 @@ com.gentics.mesh mesh-services - 1.10.35 + 1.10.36-SNAPSHOT diff --git a/services/metrics-prometheus/pom.xml b/services/metrics-prometheus/pom.xml index 1365689bb8..e04725fa4d 100644 --- a/services/metrics-prometheus/pom.xml +++ b/services/metrics-prometheus/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh-services - 1.10.35 + 1.10.36-SNAPSHOT diff --git a/services/pom.xml b/services/pom.xml index 543a92d3c3..ed55f0a4da 100644 --- a/services/pom.xml +++ b/services/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh - 1.10.35 + 1.10.36-SNAPSHOT diff --git a/tests/api/pom.xml b/tests/api/pom.xml index d3e242db8e..b5fe2890f5 100644 --- a/tests/api/pom.xml +++ b/tests/api/pom.xml @@ -5,7 +5,7 @@ com.gentics.mesh mesh-tests - 1.10.35 + 1.10.36-SNAPSHOT mesh-tests-api Mesh - Tests API diff --git a/tests/common/pom.xml b/tests/common/pom.xml index 96e2e9b25a..90388c9ee8 100644 --- a/tests/common/pom.xml +++ b/tests/common/pom.xml @@ -11,7 +11,7 @@ com.gentics.mesh mesh-tests - 1.10.35 + 1.10.36-SNAPSHOT diff --git a/tests/context-api/pom.xml b/tests/context-api/pom.xml index 629fe030da..811e2cb25a 100644 --- a/tests/context-api/pom.xml +++ b/tests/context-api/pom.xml @@ -5,7 +5,7 @@ com.gentics.mesh mesh-tests - 1.10.35 + 1.10.36-SNAPSHOT mesh-tests-context-api Mesh - Tests context API diff --git a/tests/context-orientdb/pom.xml b/tests/context-orientdb/pom.xml index 1f66b36b24..4ba7dde72e 100644 --- a/tests/context-orientdb/pom.xml +++ b/tests/context-orientdb/pom.xml @@ -3,7 +3,7 @@ com.gentics.mesh mesh-tests - 1.10.35 + 1.10.36-SNAPSHOT mesh-tests-context-orientdb Mesh - Tests context - OrientDB diff --git a/tests/orientdb-runner/pom.xml b/tests/orientdb-runner/pom.xml index 1f73b7a7ef..379619a301 100644 --- a/tests/orientdb-runner/pom.xml +++ b/tests/orientdb-runner/pom.xml @@ -5,7 +5,7 @@ com.gentics.mesh mesh-tests - 1.10.35 + 1.10.36-SNAPSHOT mesh-orientdb-tests-runner Mesh - Tests Runner - OrientDB diff --git a/tests/pom.xml b/tests/pom.xml index e327bd8194..4562fd7d6c 100644 --- a/tests/pom.xml +++ b/tests/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh - 1.10.35 + 1.10.36-SNAPSHOT diff --git a/tests/tests-admin-gui/pom.xml b/tests/tests-admin-gui/pom.xml index cd307ce6fc..4c1722eea4 100644 --- a/tests/tests-admin-gui/pom.xml +++ b/tests/tests-admin-gui/pom.xml @@ -5,7 +5,7 @@ com.gentics.mesh mesh-tests - 1.10.35 + 1.10.36-SNAPSHOT tests-mesh-admin-gui Mesh Admin GUI - Shared tests diff --git a/tests/tests-api/pom.xml b/tests/tests-api/pom.xml index 7a81e2f77f..8433fb7044 100644 --- a/tests/tests-api/pom.xml +++ b/tests/tests-api/pom.xml @@ -8,7 +8,7 @@ com.gentics.mesh mesh-tests - 1.10.35 + 1.10.36-SNAPSHOT diff --git a/tests/tests-changelog-system/pom.xml b/tests/tests-changelog-system/pom.xml index 05163e434f..5eb4a712f9 100644 --- a/tests/tests-changelog-system/pom.xml +++ b/tests/tests-changelog-system/pom.xml @@ -5,7 +5,7 @@ com.gentics.mesh mesh-tests - 1.10.35 + 1.10.36-SNAPSHOT tests-mesh-changelog-system Mesh Changelog System - Shared tests diff --git a/tests/tests-common/pom.xml b/tests/tests-common/pom.xml index aeaa895994..535b39b302 100644 --- a/tests/tests-common/pom.xml +++ b/tests/tests-common/pom.xml @@ -8,7 +8,7 @@ com.gentics.mesh mesh-tests - 1.10.35 + 1.10.36-SNAPSHOT diff --git a/tests/tests-core/pom.xml b/tests/tests-core/pom.xml index d1f50cf0d4..5533696198 100644 --- a/tests/tests-core/pom.xml +++ b/tests/tests-core/pom.xml @@ -8,7 +8,7 @@ com.gentics.mesh mesh-tests - 1.10.35 + 1.10.36-SNAPSHOT diff --git a/tests/tests-distributed-coordinator/pom.xml b/tests/tests-distributed-coordinator/pom.xml index 0cea1168cf..327c2f91dc 100644 --- a/tests/tests-distributed-coordinator/pom.xml +++ b/tests/tests-distributed-coordinator/pom.xml @@ -5,7 +5,7 @@ com.gentics.mesh mesh-tests - 1.10.35 + 1.10.36-SNAPSHOT tests-mesh-distributed-coordinator Mesh Distributed Coordinator - Shared tests diff --git a/tests/tests-distributed/pom.xml b/tests/tests-distributed/pom.xml index f49c3517fe..7b068175c5 100644 --- a/tests/tests-distributed/pom.xml +++ b/tests/tests-distributed/pom.xml @@ -11,7 +11,7 @@ com.gentics.mesh mesh-tests - 1.10.35 + 1.10.36-SNAPSHOT diff --git a/tests/tests-elasticsearch/pom.xml b/tests/tests-elasticsearch/pom.xml index e57d005183..2c6ececbfb 100644 --- a/tests/tests-elasticsearch/pom.xml +++ b/tests/tests-elasticsearch/pom.xml @@ -5,7 +5,7 @@ com.gentics.mesh mesh-tests - 1.10.35 + 1.10.36-SNAPSHOT tests-mesh-elasticsearch Mesh Elasticsearch - Shared tests diff --git a/tests/tests-plugin-api/pom.xml b/tests/tests-plugin-api/pom.xml index 2244cd197c..4677783af0 100644 --- a/tests/tests-plugin-api/pom.xml +++ b/tests/tests-plugin-api/pom.xml @@ -5,7 +5,7 @@ com.gentics.mesh mesh-tests - 1.10.35 + 1.10.36-SNAPSHOT tests-mesh-plugin-api Mesh Plugin API - Shared tests diff --git a/tests/tests-rest-client/pom.xml b/tests/tests-rest-client/pom.xml index 61b566b78e..9a4f3de6e7 100644 --- a/tests/tests-rest-client/pom.xml +++ b/tests/tests-rest-client/pom.xml @@ -5,7 +5,7 @@ com.gentics.mesh mesh-tests - 1.10.35 + 1.10.36-SNAPSHOT tests-mesh-rest-client Mesh REST Client - Shared tests diff --git a/tests/tests-rest-model/pom.xml b/tests/tests-rest-model/pom.xml index 9d7b5331c4..8dd64fdec1 100644 --- a/tests/tests-rest-model/pom.xml +++ b/tests/tests-rest-model/pom.xml @@ -5,7 +5,7 @@ com.gentics.mesh mesh-tests - 1.10.35 + 1.10.36-SNAPSHOT tests-mesh-rest-model Mesh REST Model - Shared tests diff --git a/tests/tests-server/pom.xml b/tests/tests-server/pom.xml index 28c9ae2c31..7f10c23e14 100644 --- a/tests/tests-server/pom.xml +++ b/tests/tests-server/pom.xml @@ -5,7 +5,7 @@ com.gentics.mesh mesh-tests - 1.10.35 + 1.10.36-SNAPSHOT tests-mesh-server Mesh Server - Shared tests diff --git a/tests/tests-service-aws-s3-storage/pom.xml b/tests/tests-service-aws-s3-storage/pom.xml index 344be85158..00a0f8c60a 100644 --- a/tests/tests-service-aws-s3-storage/pom.xml +++ b/tests/tests-service-aws-s3-storage/pom.xml @@ -5,7 +5,7 @@ com.gentics.mesh mesh-tests - 1.10.35 + 1.10.36-SNAPSHOT tests-mesh-service-aws-s3-storage Mesh AWS S3 Storage - Shared tests diff --git a/tests/tests-service-image-imgscalr/pom.xml b/tests/tests-service-image-imgscalr/pom.xml index 58a560fe9f..3d3482eb81 100644 --- a/tests/tests-service-image-imgscalr/pom.xml +++ b/tests/tests-service-image-imgscalr/pom.xml @@ -5,7 +5,7 @@ com.gentics.mesh mesh-tests - 1.10.35 + 1.10.36-SNAPSHOT tests-mesh-service-image-imgscalr Mesh Imgscalr Service - Shared tests diff --git a/tests/tests-service-jwt-auth/pom.xml b/tests/tests-service-jwt-auth/pom.xml index fe6b3a451b..0714c15ba2 100644 --- a/tests/tests-service-jwt-auth/pom.xml +++ b/tests/tests-service-jwt-auth/pom.xml @@ -5,7 +5,7 @@ com.gentics.mesh mesh-tests - 1.10.35 + 1.10.36-SNAPSHOT tests-mesh-service-jwt-auth Mesh JWT Authentication - Shared tests diff --git a/tests/tests-service-local-storage/pom.xml b/tests/tests-service-local-storage/pom.xml index 24331157e6..85fe92c7fb 100644 --- a/tests/tests-service-local-storage/pom.xml +++ b/tests/tests-service-local-storage/pom.xml @@ -5,7 +5,7 @@ com.gentics.mesh mesh-tests - 1.10.35 + 1.10.36-SNAPSHOT tests-mesh-service-local-storage Mesh Local Storage - Shared tests diff --git a/tests/tests-service-metrics-prometheus/pom.xml b/tests/tests-service-metrics-prometheus/pom.xml index 8a800db1a3..2051d054aa 100644 --- a/tests/tests-service-metrics-prometheus/pom.xml +++ b/tests/tests-service-metrics-prometheus/pom.xml @@ -5,7 +5,7 @@ com.gentics.mesh mesh-tests - 1.10.35 + 1.10.36-SNAPSHOT tests-mesh-service-metrics-prometheus Mesh Prometeus Metrics Service - Shared tests diff --git a/verticles/admin-gui/pom.xml b/verticles/admin-gui/pom.xml index 17fa15ae4c..95d8c7120a 100644 --- a/verticles/admin-gui/pom.xml +++ b/verticles/admin-gui/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh-verticles - 1.10.35 + 1.10.36-SNAPSHOT diff --git a/verticles/graphql/pom.xml b/verticles/graphql/pom.xml index 154bb10286..f74a91c647 100644 --- a/verticles/graphql/pom.xml +++ b/verticles/graphql/pom.xml @@ -9,7 +9,7 @@ com.gentics.mesh mesh-verticles - 1.10.35 + 1.10.36-SNAPSHOT diff --git a/verticles/pom.xml b/verticles/pom.xml index e86990f11f..8537271124 100644 --- a/verticles/pom.xml +++ b/verticles/pom.xml @@ -9,7 +9,7 @@ com.gentics.mesh mesh - 1.10.35 + 1.10.36-SNAPSHOT diff --git a/verticles/rest/pom.xml b/verticles/rest/pom.xml index d2ceea6ec7..3b497bfcf5 100644 --- a/verticles/rest/pom.xml +++ b/verticles/rest/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh-verticles - 1.10.35 + 1.10.36-SNAPSHOT