From c1ee90483932db8de1507eaef0a5dad2b4deb118 Mon Sep 17 00:00:00 2001 From: Norbert Pomaroli Date: Thu, 9 Mar 2023 12:49:31 +0100 Subject: [PATCH 1/4] Add check and repair for multiple INITIAL edges --- LTS-CHANGELOG.adoc | 5 + .../check/GraphFieldContainerCheck.java | 56 +++++++- .../mesh/core/admin/ConsistencyCheckTest.java | 135 +++++++++++++++++- 3 files changed, 194 insertions(+), 2 deletions(-) diff --git a/LTS-CHANGELOG.adoc b/LTS-CHANGELOG.adoc index 19631835cd..65eee2be67 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.8.20]] +== 1.8.20 (TBD) + +icon:check[] Core: If a node has more that one INITIAL content for a language in a branch, this can now be repaired with the consistency repair tool. + [[v1.8.19]] == 1.8.19 (08.03.2023) diff --git a/mdm/orientdb-wrapper/src/main/java/com/gentics/mesh/core/endpoint/admin/consistency/check/GraphFieldContainerCheck.java b/mdm/orientdb-wrapper/src/main/java/com/gentics/mesh/core/endpoint/admin/consistency/check/GraphFieldContainerCheck.java index 1d4d33a26a..a2049f1e7c 100644 --- a/mdm/orientdb-wrapper/src/main/java/com/gentics/mesh/core/endpoint/admin/consistency/check/GraphFieldContainerCheck.java +++ b/mdm/orientdb-wrapper/src/main/java/com/gentics/mesh/core/endpoint/admin/consistency/check/GraphFieldContainerCheck.java @@ -9,12 +9,14 @@ import static com.gentics.mesh.core.rest.common.ContainerType.INITIAL; import static com.gentics.mesh.core.rest.common.ContainerType.PUBLISHED; +import java.util.HashSet; import java.util.Iterator; +import java.util.Set; -import com.gentics.mesh.cli.BootstrapInitializer; import com.gentics.mesh.context.BulkActionContext; import com.gentics.mesh.core.data.GraphFieldContainerEdge; import com.gentics.mesh.core.data.HibNodeFieldContainer; +import com.gentics.mesh.core.data.HibNodeFieldContainerEdge; import com.gentics.mesh.core.data.NodeGraphFieldContainer; import com.gentics.mesh.core.data.container.impl.NodeGraphFieldContainerImpl; import com.gentics.mesh.core.data.dao.PersistingContentDao; @@ -125,6 +127,9 @@ private void checkGraphFieldContainer(Database db, NodeGraphFieldContainer conta } } + // initial GFC must not have another initial as a previous GFC for the same branch + checkInitialUniqueness(container, previous, result, attemptRepair); + // GFC must either have a next GFC, or must be the draft GFC for a Node if (!contentDao.hasNextVersion(container) && !contentDao.isDraft(container)) { String nodeInfo = "unknown"; @@ -307,4 +312,53 @@ private HibNodeFieldContainer findDraft(HibNodeFieldContainer latest) { return null; } + /** + * Check whether the container is the only INITIAL for its node (for all branches) + * @param container GFC to check + * @param previous previous GFC (may be null) + * @param result check result + * @param attemptRepair true to attempt repair + */ + private void checkInitialUniqueness(NodeGraphFieldContainer container, HibNodeFieldContainer previous, ConsistencyCheckResult result, boolean attemptRepair) { + PersistingContentDao contentDao = CommonTx.get().contentDao(); + String uuid = container.getUuid(); + + if (contentDao.isInitial(container) && previous != null) { + Set branchUuids = contentDao.getBranches(container, INITIAL); + + String nodeInfo = "unknown"; + try { + HibNode node = contentDao.getNode(container); + nodeInfo = node.getUuid(); + } catch (Exception e) { + log.debug("Could not load node uuid", e); + } + + Set branchesWithConflict = new HashSet<>(); + while (previous != null) { + for (String branchUuid : branchUuids) { + // do not check for branches, where we already found a conflicting edge + if (branchesWithConflict.contains(branchUuid)) { + continue; + } + if (contentDao.isInitial(previous, branchUuid)) { + branchesWithConflict.add(branchUuid); + boolean repaired = false; + if (attemptRepair) { + // remove the INITIAL edge + Iterator edgeIterator = contentDao.getContainerEdges(container, INITIAL, branchUuid); + if (edgeIterator.hasNext()) { + contentDao.removeEdge(edgeIterator.next()); + repaired = true; + } + } + result.addInconsistency(String.format( + "GraphFieldContainer of Node {%s} is INITIAL for branch %s and has another INITIAL GFC for the branch as a previous version", + nodeInfo, branchUuid), uuid, MEDIUM, repaired, DELETE); + } + } + previous = previous.getPreviousVersion(); + } + } + } } diff --git a/tests/context-orientdb/src/main/java/com/gentics/mesh/core/admin/ConsistencyCheckTest.java b/tests/context-orientdb/src/main/java/com/gentics/mesh/core/admin/ConsistencyCheckTest.java index 778cccfaf1..671a94e6cb 100644 --- a/tests/context-orientdb/src/main/java/com/gentics/mesh/core/admin/ConsistencyCheckTest.java +++ b/tests/context-orientdb/src/main/java/com/gentics/mesh/core/admin/ConsistencyCheckTest.java @@ -4,6 +4,7 @@ import static com.gentics.mesh.core.rest.MeshEvent.REPAIR_START; import static com.gentics.mesh.core.rest.admin.consistency.ConsistencyRating.CONSISTENT; import static com.gentics.mesh.core.rest.admin.consistency.ConsistencyRating.INCONSISTENT; +import static com.gentics.mesh.core.rest.job.JobStatus.COMPLETED; import static com.gentics.mesh.test.ClientHelper.call; import static com.gentics.mesh.test.TestSize.FULL; import static org.assertj.core.api.Assertions.assertThat; @@ -11,17 +12,40 @@ import static org.junit.Assert.assertFalse; import static org.junit.Assert.assertTrue; -import com.gentics.mesh.core.data.node.Node; +import java.util.Set; +import java.util.concurrent.atomic.AtomicReference; + import org.junit.Test; +import com.gentics.mesh.core.data.GraphFieldContainerEdge; +import com.gentics.mesh.core.data.HibNodeFieldContainer; import com.gentics.mesh.core.data.User; +import com.gentics.mesh.core.data.container.impl.NodeGraphFieldContainerImpl; +import com.gentics.mesh.core.data.dao.ContentDao; +import com.gentics.mesh.core.data.dao.NodeDao; +import com.gentics.mesh.core.data.impl.GraphFieldContainerEdgeImpl; import com.gentics.mesh.core.data.impl.UserImpl; +import com.gentics.mesh.core.data.node.HibNode; +import com.gentics.mesh.core.data.node.Node; +import com.gentics.mesh.core.data.node.impl.NodeImpl; +import com.gentics.mesh.core.data.relationship.GraphRelationships; +import com.gentics.mesh.core.db.GraphDBTx; import com.gentics.mesh.core.rest.admin.consistency.ConsistencyCheckResponse; import com.gentics.mesh.core.rest.admin.consistency.ConsistencyRating; import com.gentics.mesh.core.rest.admin.consistency.InconsistencyInfo; +import com.gentics.mesh.core.rest.admin.consistency.InconsistencySeverity; import com.gentics.mesh.core.rest.admin.consistency.RepairAction; +import com.gentics.mesh.core.rest.branch.BranchCreateRequest; +import com.gentics.mesh.core.rest.common.ContainerType; +import com.gentics.mesh.core.rest.node.FieldMap; +import com.gentics.mesh.core.rest.node.NodeResponse; +import com.gentics.mesh.core.rest.node.NodeUpdateRequest; +import com.gentics.mesh.core.rest.node.field.impl.StringFieldImpl; +import com.gentics.mesh.parameter.client.NodeParametersImpl; +import com.gentics.mesh.parameter.client.VersioningParametersImpl; import com.gentics.mesh.test.MeshTestSetting; import com.gentics.mesh.test.context.AbstractMeshTest; +import com.syncleus.ferma.TEdge; @MeshTestSetting(testSize = FULL, startServer = true, inMemoryDB = true) public class ConsistencyCheckTest extends AbstractMeshTest { @@ -85,4 +109,113 @@ public void testConsistencyRepair() { } + /** + * Test repairing multiple INITIAL edges + */ + @Test + public void testRepairMultipleInitial() { + grantAdmin(); + + String branchName = "newbranch"; + String nodeUuid = tx(() -> content().getUuid()); + String projectName = tx(() -> project().getName()); + + // modify the content in the initial branch (in all languages) + NodeResponse nodeResponse = call(() -> client().findNodeByUuid(projectName, nodeUuid)); + Set languages = nodeResponse.getAvailableLanguages().keySet(); + + for (String language : languages) { + NodeResponse draft = call(() -> client().findNodeByUuid(projectName, nodeUuid, + new VersioningParametersImpl().setVersion("draft"), + new NodeParametersImpl().setLanguages(language))); + FieldMap fields = draft.getFields(); + StringFieldImpl titleField = fields.getStringField("title"); + titleField.setString(titleField.getString() + " modified"); + fields.put("title", titleField); + call(() -> client().updateNode(projectName, nodeUuid, + new NodeUpdateRequest().setLanguage(language).setFields(fields))); + } + + AtomicReference newBranchUuid = new AtomicReference<>(); + // create new latest branch + waitForJobs(() -> { + newBranchUuid.set(call(() -> client().createBranch(projectName, new BranchCreateRequest().setName(branchName).setLatest(true))).getUuid()); + }, COMPLETED, 1); + + // modify the content also in the new branch + for (String language : languages) { + NodeResponse draft = call(() -> client().findNodeByUuid(projectName, nodeUuid, + new VersioningParametersImpl().setVersion("draft"), + new NodeParametersImpl().setLanguages(language))); + FieldMap fields = draft.getFields(); + StringFieldImpl titleField = fields.getStringField("title"); + titleField.setString(titleField.getString() + " modified"); + fields.put("title", titleField); + call(() -> client().updateNode(projectName, nodeUuid, + new NodeUpdateRequest().setLanguage(language).setFields(fields))); + } + + // check consistency + ConsistencyCheckResponse response = call(() -> client().checkConsistency()); + assertThat(response.getInconsistencies()).isEmpty(); + assertThat(response.getResult()).as("Result").isEqualTo(ConsistencyRating.CONSISTENT); + + // make an inconsistency by adding another INITIAL edge + AtomicReference contentUuid = new AtomicReference<>(); + tx(tx -> { + NodeDao nodeDao = tx.nodeDao(); + ContentDao contentDao = tx.contentDao(); + HibNode node = nodeDao.findByUuidGlobal(nodeUuid); + HibNodeFieldContainer enDraft = contentDao.getFieldContainer(node, "en", newBranchUuid.get(), ContainerType.DRAFT); + contentUuid.set(enDraft.getUuid()); + + GraphFieldContainerEdge edge = ((NodeImpl) node).addFramedEdge(GraphRelationships.HAS_FIELD_CONTAINER, + (NodeGraphFieldContainerImpl) enDraft, GraphFieldContainerEdgeImpl.class); + edge.setBranchUuid(newBranchUuid.get()); + edge.setLanguageTag("en"); + edge.setType(ContainerType.INITIAL); + }); + + // must be inconsistent now + response = call(() -> client().checkConsistency()); + assertThat(response.getInconsistencies()).usingFieldByFieldElementComparator().containsOnly( + new InconsistencyInfo() + .setDescription(String.format("The node has more than one GFC of type %s, language %s for branch %s", ContainerType.INITIAL, "en", newBranchUuid.get())) + .setElementUuid(nodeUuid) + .setRepairAction(RepairAction.NONE) + .setRepaired(false) + .setSeverity(InconsistencySeverity.HIGH), + new InconsistencyInfo() + .setDescription(String.format("GraphFieldContainer of Node {%s} is INITIAL for branch %s and has another INITIAL GFC for the branch as a previous version", nodeUuid, newBranchUuid.get())) + .setElementUuid(contentUuid.get()) + .setRepairAction(RepairAction.DELETE) + .setRepaired(false) + .setSeverity(InconsistencySeverity.MEDIUM) + ); + assertThat(response.getResult()).as("Result").isEqualTo(ConsistencyRating.INCONSISTENT); + + // repair + response = call(() -> client().repairConsistency()); + assertThat(response.getInconsistencies()).usingFieldByFieldElementComparator().containsOnly( + new InconsistencyInfo() + .setDescription(String.format("The node has more than one GFC of type %s, language %s for branch %s", ContainerType.INITIAL, "en", newBranchUuid.get())) + .setElementUuid(nodeUuid) + .setRepairAction(RepairAction.NONE) + .setRepaired(false) + .setSeverity(InconsistencySeverity.HIGH), + new InconsistencyInfo() + .setDescription(String.format("GraphFieldContainer of Node {%s} is INITIAL for branch %s and has another INITIAL GFC for the branch as a previous version", nodeUuid, newBranchUuid.get())) + .setElementUuid(contentUuid.get()) + .setRepairAction(RepairAction.DELETE) + .setRepaired(true) + .setSeverity(InconsistencySeverity.MEDIUM) + ); + // since we found the consistency twice (and had no clue how to repair the first one), we are still "inconsistent" + assertThat(response.getResult()).as("Result").isEqualTo(ConsistencyRating.INCONSISTENT); + + // check again + response = call(() -> client().checkConsistency()); + assertThat(response.getInconsistencies()).isEmpty(); + assertThat(response.getResult()).as("Result").isEqualTo(ConsistencyRating.CONSISTENT); + } } From d8dceb0369093f0e68921d78f6245a514ef50b5e Mon Sep 17 00:00:00 2001 From: Norbert Pomaroli Date: Wed, 22 Mar 2023 12:44:22 +0100 Subject: [PATCH 2/4] Set release date --- LTS-CHANGELOG.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LTS-CHANGELOG.adoc b/LTS-CHANGELOG.adoc index 65eee2be67..ddc2e6a5f8 100644 --- a/LTS-CHANGELOG.adoc +++ b/LTS-CHANGELOG.adoc @@ -18,7 +18,7 @@ The LTS changelog lists releases which are only accessible via a commercial subs 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.8.20]] -== 1.8.20 (TBD) +== 1.8.20 (22.03.2023) icon:check[] Core: If a node has more that one INITIAL content for a language in a branch, this can now be repaired with the consistency repair tool. From c3fc5d8b8e5df9bcf0dbd8f793b981ee79abb4f8 Mon Sep 17 00:00:00 2001 From: 1000 user <1000@a66feb33f7bb> Date: Wed, 22 Mar 2023 13:22:20 +0100 Subject: [PATCH 3/4] 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 +- 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 +- 68 files changed, 68 insertions(+), 68 deletions(-) diff --git a/api/pom.xml b/api/pom.xml index 937130c65e..2c1091718f 100644 --- a/api/pom.xml +++ b/api/pom.xml @@ -11,7 +11,7 @@ com.gentics.mesh mesh - 1.8.20-SNAPSHOT + 1.8.20 diff --git a/bom/pom.xml b/bom/pom.xml index 52c53f48c8..42d02db74e 100644 --- a/bom/pom.xml +++ b/bom/pom.xml @@ -11,7 +11,7 @@ com.gentics.mesh mesh - 1.8.20-SNAPSHOT + 1.8.20 diff --git a/changelog-system/pom.xml b/changelog-system/pom.xml index ab3e2cfd2e..b05f25cccb 100644 --- a/changelog-system/pom.xml +++ b/changelog-system/pom.xml @@ -12,7 +12,7 @@ com.gentics.mesh mesh - 1.8.20-SNAPSHOT + 1.8.20 diff --git a/common-api/pom.xml b/common-api/pom.xml index 6437d683a4..a9d8a6e1b2 100644 --- a/common-api/pom.xml +++ b/common-api/pom.xml @@ -11,7 +11,7 @@ com.gentics.mesh mesh - 1.8.20-SNAPSHOT + 1.8.20 diff --git a/common/pom.xml b/common/pom.xml index 770f25f986..13b7266ebe 100644 --- a/common/pom.xml +++ b/common/pom.xml @@ -11,7 +11,7 @@ com.gentics.mesh mesh - 1.8.20-SNAPSHOT + 1.8.20 diff --git a/core/pom.xml b/core/pom.xml index 107b6f2b97..62cad7716e 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -11,7 +11,7 @@ com.gentics.mesh mesh - 1.8.20-SNAPSHOT + 1.8.20 diff --git a/databases/orientdb/pom.xml b/databases/orientdb/pom.xml index da6582fefc..a79e50dd6f 100644 --- a/databases/orientdb/pom.xml +++ b/databases/orientdb/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh-databases - 1.8.20-SNAPSHOT + 1.8.20 diff --git a/databases/pom.xml b/databases/pom.xml index 0ef98d74a2..9aae9427f5 100644 --- a/databases/pom.xml +++ b/databases/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh - 1.8.20-SNAPSHOT + 1.8.20 diff --git a/demo/common/pom.xml b/demo/common/pom.xml index bd5c0775e1..4cfad9fa46 100644 --- a/demo/common/pom.xml +++ b/demo/common/pom.xml @@ -11,7 +11,7 @@ com.gentics.mesh mesh-demos - 1.8.20-SNAPSHOT + 1.8.20 diff --git a/demo/default/pom.xml b/demo/default/pom.xml index c98d7995ec..00187284db 100644 --- a/demo/default/pom.xml +++ b/demo/default/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh-demos - 1.8.20-SNAPSHOT + 1.8.20 diff --git a/demo/pom.xml b/demo/pom.xml index 716ea54393..5aad3b107b 100644 --- a/demo/pom.xml +++ b/demo/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh - 1.8.20-SNAPSHOT + 1.8.20 diff --git a/distributed-coordinator/pom.xml b/distributed-coordinator/pom.xml index 5b58307755..4c461338f2 100644 --- a/distributed-coordinator/pom.xml +++ b/distributed-coordinator/pom.xml @@ -7,7 +7,7 @@ com.gentics.mesh mesh - 1.8.20-SNAPSHOT + 1.8.20 mesh-distributed-coordinator diff --git a/distributed/pom.xml b/distributed/pom.xml index 9e58f6fd4d..a39ab2ff26 100644 --- a/distributed/pom.xml +++ b/distributed/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh - 1.8.20-SNAPSHOT + 1.8.20 diff --git a/doc/pom.xml b/doc/pom.xml index a922ab5b90..ed8cac0684 100644 --- a/doc/pom.xml +++ b/doc/pom.xml @@ -6,7 +6,7 @@ com.gentics.mesh mesh - 1.8.20-SNAPSHOT + 1.8.20 mesh-doc diff --git a/elasticsearch/pom.xml b/elasticsearch/pom.xml index 6b6639610c..4316bf910c 100644 --- a/elasticsearch/pom.xml +++ b/elasticsearch/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh - 1.8.20-SNAPSHOT + 1.8.20 diff --git a/ferma/pom.xml b/ferma/pom.xml index 35975f3029..27dfdab2bb 100644 --- a/ferma/pom.xml +++ b/ferma/pom.xml @@ -6,7 +6,7 @@ com.gentics.mesh mesh - 1.8.20-SNAPSHOT + 1.8.20 ferma diff --git a/madl/api/pom.xml b/madl/api/pom.xml index d9d7ba509e..fd1b3a9be2 100644 --- a/madl/api/pom.xml +++ b/madl/api/pom.xml @@ -6,7 +6,7 @@ com.gentics.mesh madl - 1.8.20-SNAPSHOT + 1.8.20 madl-api diff --git a/madl/core/pom.xml b/madl/core/pom.xml index fe4fde38f7..ed316b42ed 100644 --- a/madl/core/pom.xml +++ b/madl/core/pom.xml @@ -6,7 +6,7 @@ com.gentics.mesh madl - 1.8.20-SNAPSHOT + 1.8.20 madl-core diff --git a/madl/madl-ferma/pom.xml b/madl/madl-ferma/pom.xml index 58a7acf4d5..d8337c7115 100644 --- a/madl/madl-ferma/pom.xml +++ b/madl/madl-ferma/pom.xml @@ -6,7 +6,7 @@ com.gentics.mesh madl - 1.8.20-SNAPSHOT + 1.8.20 madl-ferma diff --git a/madl/orientdb/pom.xml b/madl/orientdb/pom.xml index 8921c9fb5c..5b393fdc7d 100644 --- a/madl/orientdb/pom.xml +++ b/madl/orientdb/pom.xml @@ -7,7 +7,7 @@ com.gentics.mesh madl - 1.8.20-SNAPSHOT + 1.8.20 madl-orientdb diff --git a/madl/pom.xml b/madl/pom.xml index bfa741acd5..01bb369ea2 100644 --- a/madl/pom.xml +++ b/madl/pom.xml @@ -7,7 +7,7 @@ com.gentics.mesh mesh - 1.8.20-SNAPSHOT + 1.8.20 madl diff --git a/mdm/api/pom.xml b/mdm/api/pom.xml index 7904656561..7229aa12ad 100644 --- a/mdm/api/pom.xml +++ b/mdm/api/pom.xml @@ -7,7 +7,7 @@ com.gentics.mesh mesh-mdm - 1.8.20-SNAPSHOT + 1.8.20 mesh-mdm-api diff --git a/mdm/common/pom.xml b/mdm/common/pom.xml index 096a8db99b..f84e961b4c 100644 --- a/mdm/common/pom.xml +++ b/mdm/common/pom.xml @@ -7,7 +7,7 @@ com.gentics.mesh mesh-mdm - 1.8.20-SNAPSHOT + 1.8.20 mesh-mdm-common diff --git a/mdm/orientdb-api/pom.xml b/mdm/orientdb-api/pom.xml index b4a9103516..96313f04a0 100644 --- a/mdm/orientdb-api/pom.xml +++ b/mdm/orientdb-api/pom.xml @@ -7,7 +7,7 @@ com.gentics.mesh mesh-mdm - 1.8.20-SNAPSHOT + 1.8.20 mesh-mdm-orientdb-api diff --git a/mdm/orientdb-wrapper/pom.xml b/mdm/orientdb-wrapper/pom.xml index 852848d942..7e04d98846 100644 --- a/mdm/orientdb-wrapper/pom.xml +++ b/mdm/orientdb-wrapper/pom.xml @@ -7,7 +7,7 @@ com.gentics.mesh mesh-mdm - 1.8.20-SNAPSHOT + 1.8.20 mesh-mdm-orientdb-wrapper diff --git a/mdm/pom.xml b/mdm/pom.xml index aac3dfa158..bf7db46d9f 100644 --- a/mdm/pom.xml +++ b/mdm/pom.xml @@ -7,7 +7,7 @@ com.gentics.mesh mesh - 1.8.20-SNAPSHOT + 1.8.20 mesh-mdm diff --git a/performance-tests/pom.xml b/performance-tests/pom.xml index b3db3745ef..34958941fa 100644 --- a/performance-tests/pom.xml +++ b/performance-tests/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh - 1.8.20-SNAPSHOT + 1.8.20 diff --git a/plugin-api/pom.xml b/plugin-api/pom.xml index 18e84badc8..a41b3c3f4d 100644 --- a/plugin-api/pom.xml +++ b/plugin-api/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh - 1.8.20-SNAPSHOT + 1.8.20 diff --git a/plugin-bom/pom.xml b/plugin-bom/pom.xml index 1c6e051f36..cc78206198 100644 --- a/plugin-bom/pom.xml +++ b/plugin-bom/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh - 1.8.20-SNAPSHOT + 1.8.20 diff --git a/plugin-dep/pom.xml b/plugin-dep/pom.xml index 0d09b9aa05..2e0e89e8d4 100644 --- a/plugin-dep/pom.xml +++ b/plugin-dep/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh - 1.8.20-SNAPSHOT + 1.8.20 diff --git a/plugin-parent/pom.xml b/plugin-parent/pom.xml index 048e35593b..830c591ec0 100644 --- a/plugin-parent/pom.xml +++ b/plugin-parent/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh - 1.8.20-SNAPSHOT + 1.8.20 diff --git a/pom.xml b/pom.xml index 62671dc070..bfd6f84f0d 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ com.gentics.mesh mesh - 1.8.20-SNAPSHOT + 1.8.20 pom Gentics Mesh diff --git a/rest-client/pom.xml b/rest-client/pom.xml index 2e1c5a001b..ec9a6111a8 100644 --- a/rest-client/pom.xml +++ b/rest-client/pom.xml @@ -11,7 +11,7 @@ com.gentics.mesh mesh - 1.8.20-SNAPSHOT + 1.8.20 diff --git a/rest-model/pom.xml b/rest-model/pom.xml index 75c048e6ae..01cda8ddcb 100644 --- a/rest-model/pom.xml +++ b/rest-model/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh - 1.8.20-SNAPSHOT + 1.8.20 diff --git a/server/pom.xml b/server/pom.xml index 091e703d59..b7bf5dc788 100644 --- a/server/pom.xml +++ b/server/pom.xml @@ -11,7 +11,7 @@ com.gentics.mesh mesh - 1.8.20-SNAPSHOT + 1.8.20 diff --git a/services/aws-s3-storage/pom.xml b/services/aws-s3-storage/pom.xml index 331c0d2fb2..95554bfeda 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.8.20-SNAPSHOT + 1.8.20 diff --git a/services/image-imgscalr/pom.xml b/services/image-imgscalr/pom.xml index e2865fd9e8..b9ca489e3f 100644 --- a/services/image-imgscalr/pom.xml +++ b/services/image-imgscalr/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh-services - 1.8.20-SNAPSHOT + 1.8.20 diff --git a/services/jwt-auth/pom.xml b/services/jwt-auth/pom.xml index 06c681cef4..1527d4d8d6 100644 --- a/services/jwt-auth/pom.xml +++ b/services/jwt-auth/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh-services - 1.8.20-SNAPSHOT + 1.8.20 diff --git a/services/local-storage/pom.xml b/services/local-storage/pom.xml index 43e0a0d3df..21241a936f 100644 --- a/services/local-storage/pom.xml +++ b/services/local-storage/pom.xml @@ -9,7 +9,7 @@ com.gentics.mesh mesh-services - 1.8.20-SNAPSHOT + 1.8.20 diff --git a/services/metrics-prometheus/pom.xml b/services/metrics-prometheus/pom.xml index cde2b8bc4c..f1656faf92 100644 --- a/services/metrics-prometheus/pom.xml +++ b/services/metrics-prometheus/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh-services - 1.8.20-SNAPSHOT + 1.8.20 diff --git a/services/pom.xml b/services/pom.xml index 0dae7d3987..92bd97df1f 100644 --- a/services/pom.xml +++ b/services/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh - 1.8.20-SNAPSHOT + 1.8.20 diff --git a/tests/api/pom.xml b/tests/api/pom.xml index 7cc0619efb..0e639e3bc7 100644 --- a/tests/api/pom.xml +++ b/tests/api/pom.xml @@ -5,7 +5,7 @@ com.gentics.mesh mesh-tests - 1.8.20-SNAPSHOT + 1.8.20 mesh-tests-api Mesh - Tests API diff --git a/tests/common/pom.xml b/tests/common/pom.xml index 5f8549abb5..e57a74ca13 100644 --- a/tests/common/pom.xml +++ b/tests/common/pom.xml @@ -11,7 +11,7 @@ com.gentics.mesh mesh-tests - 1.8.20-SNAPSHOT + 1.8.20 diff --git a/tests/context-api/pom.xml b/tests/context-api/pom.xml index 97f4218242..83ba115deb 100644 --- a/tests/context-api/pom.xml +++ b/tests/context-api/pom.xml @@ -5,7 +5,7 @@ com.gentics.mesh mesh-tests - 1.8.20-SNAPSHOT + 1.8.20 mesh-tests-context-api Mesh - Tests context API diff --git a/tests/context-orientdb/pom.xml b/tests/context-orientdb/pom.xml index 1c9e5aba75..32b3eb8802 100644 --- a/tests/context-orientdb/pom.xml +++ b/tests/context-orientdb/pom.xml @@ -3,7 +3,7 @@ com.gentics.mesh mesh-tests - 1.8.20-SNAPSHOT + 1.8.20 mesh-tests-context-orientdb Mesh - Tests context - OrientDB diff --git a/tests/orientdb-runner/pom.xml b/tests/orientdb-runner/pom.xml index 869a2328b8..7b116d8f27 100644 --- a/tests/orientdb-runner/pom.xml +++ b/tests/orientdb-runner/pom.xml @@ -5,7 +5,7 @@ com.gentics.mesh mesh-tests - 1.8.20-SNAPSHOT + 1.8.20 mesh-orientdb-tests-runner Mesh - Tests Runner - OrientDB diff --git a/tests/pom.xml b/tests/pom.xml index fa117da205..932ad113e8 100644 --- a/tests/pom.xml +++ b/tests/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh - 1.8.20-SNAPSHOT + 1.8.20 diff --git a/tests/tests-admin-gui/pom.xml b/tests/tests-admin-gui/pom.xml index a7d6d4cde0..4a6a30ca00 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.8.20-SNAPSHOT + 1.8.20 tests-mesh-admin-gui Mesh Admin GUI - Shared tests diff --git a/tests/tests-api/pom.xml b/tests/tests-api/pom.xml index 131eb93436..a6a3235ba2 100644 --- a/tests/tests-api/pom.xml +++ b/tests/tests-api/pom.xml @@ -8,7 +8,7 @@ com.gentics.mesh mesh-tests - 1.8.20-SNAPSHOT + 1.8.20 diff --git a/tests/tests-changelog-system/pom.xml b/tests/tests-changelog-system/pom.xml index 66abee5e6a..26e5042ea9 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.8.20-SNAPSHOT + 1.8.20 tests-mesh-changelog-system Mesh Changelog System - Shared tests diff --git a/tests/tests-common/pom.xml b/tests/tests-common/pom.xml index d0e3e3ae6f..a2a2125158 100644 --- a/tests/tests-common/pom.xml +++ b/tests/tests-common/pom.xml @@ -8,7 +8,7 @@ com.gentics.mesh mesh-tests - 1.8.20-SNAPSHOT + 1.8.20 diff --git a/tests/tests-core/pom.xml b/tests/tests-core/pom.xml index 2b1d3601d4..9211bf45e5 100644 --- a/tests/tests-core/pom.xml +++ b/tests/tests-core/pom.xml @@ -8,7 +8,7 @@ com.gentics.mesh mesh-tests - 1.8.20-SNAPSHOT + 1.8.20 diff --git a/tests/tests-distributed-coordinator/pom.xml b/tests/tests-distributed-coordinator/pom.xml index e3b867586c..5b7770f7ff 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.8.20-SNAPSHOT + 1.8.20 tests-mesh-distributed-coordinator Mesh Distributed Coordinator - Shared tests diff --git a/tests/tests-distributed/pom.xml b/tests/tests-distributed/pom.xml index 453d211233..8d1378d8c6 100644 --- a/tests/tests-distributed/pom.xml +++ b/tests/tests-distributed/pom.xml @@ -11,7 +11,7 @@ com.gentics.mesh mesh-tests - 1.8.20-SNAPSHOT + 1.8.20 diff --git a/tests/tests-elasticsearch/pom.xml b/tests/tests-elasticsearch/pom.xml index 16e576085c..aafba5dee2 100644 --- a/tests/tests-elasticsearch/pom.xml +++ b/tests/tests-elasticsearch/pom.xml @@ -5,7 +5,7 @@ com.gentics.mesh mesh-tests - 1.8.20-SNAPSHOT + 1.8.20 tests-mesh-elasticsearch Mesh Elasticsearch - Shared tests diff --git a/tests/tests-plugin-api/pom.xml b/tests/tests-plugin-api/pom.xml index 4a03bce268..fc6113cc98 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.8.20-SNAPSHOT + 1.8.20 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 4e26cb0482..910521d52d 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.8.20-SNAPSHOT + 1.8.20 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 1775fc650c..a40f9a2f83 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.8.20-SNAPSHOT + 1.8.20 tests-mesh-rest-model Mesh REST Model - Shared tests diff --git a/tests/tests-server/pom.xml b/tests/tests-server/pom.xml index 905338adfb..6e0f7ad80c 100644 --- a/tests/tests-server/pom.xml +++ b/tests/tests-server/pom.xml @@ -5,7 +5,7 @@ com.gentics.mesh mesh-tests - 1.8.20-SNAPSHOT + 1.8.20 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 f1203de241..058a94ef66 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.8.20-SNAPSHOT + 1.8.20 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 ec03232213..d574de36c8 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.8.20-SNAPSHOT + 1.8.20 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 354ff740a4..e96ee8726e 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.8.20-SNAPSHOT + 1.8.20 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 017550dec9..c2ade075f5 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.8.20-SNAPSHOT + 1.8.20 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 e68ab59225..dcc6e5d67d 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.8.20-SNAPSHOT + 1.8.20 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 c3935d67af..89a6955d46 100644 --- a/verticles/admin-gui/pom.xml +++ b/verticles/admin-gui/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh-verticles - 1.8.20-SNAPSHOT + 1.8.20 diff --git a/verticles/graphql/pom.xml b/verticles/graphql/pom.xml index 5ccf6a5179..3f9a5018aa 100644 --- a/verticles/graphql/pom.xml +++ b/verticles/graphql/pom.xml @@ -9,7 +9,7 @@ com.gentics.mesh mesh-verticles - 1.8.20-SNAPSHOT + 1.8.20 diff --git a/verticles/pom.xml b/verticles/pom.xml index f6593a5574..0c12803115 100644 --- a/verticles/pom.xml +++ b/verticles/pom.xml @@ -9,7 +9,7 @@ com.gentics.mesh mesh - 1.8.20-SNAPSHOT + 1.8.20 diff --git a/verticles/rest/pom.xml b/verticles/rest/pom.xml index 02d2baf69b..3a25b89c49 100644 --- a/verticles/rest/pom.xml +++ b/verticles/rest/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh-verticles - 1.8.20-SNAPSHOT + 1.8.20 From c201afa87a9fc89b765e9f14ca1fbcb8249898ea Mon Sep 17 00:00:00 2001 From: 1000 user <1000@a66feb33f7bb> Date: Wed, 22 Mar 2023 13:42:49 +0100 Subject: [PATCH 4/4] [Jenkins | hotfix-1.8.x] Prepare for the next development iteration (1.8.21-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 | 4 ++-- doc/src/main/docs/generated/api/api.raml | 4 ++-- .../api/response/api/v2/200/example.json | 2 +- .../generated/tables/mesh-db-revs.adoc-include | 4 ++-- .../generated/tables/mesh-env.adoc-include | 18 +++++++++--------- elasticsearch/pom.xml | 2 +- ferma/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 +- 73 files changed, 84 insertions(+), 84 deletions(-) diff --git a/api/pom.xml b/api/pom.xml index 2c1091718f..793f533580 100644 --- a/api/pom.xml +++ b/api/pom.xml @@ -11,7 +11,7 @@ com.gentics.mesh mesh - 1.8.20 + 1.8.21-SNAPSHOT diff --git a/bom/pom.xml b/bom/pom.xml index 42d02db74e..e6a5652f7e 100644 --- a/bom/pom.xml +++ b/bom/pom.xml @@ -11,7 +11,7 @@ com.gentics.mesh mesh - 1.8.20 + 1.8.21-SNAPSHOT diff --git a/changelog-system/pom.xml b/changelog-system/pom.xml index b05f25cccb..fde191de77 100644 --- a/changelog-system/pom.xml +++ b/changelog-system/pom.xml @@ -12,7 +12,7 @@ com.gentics.mesh mesh - 1.8.20 + 1.8.21-SNAPSHOT diff --git a/common-api/pom.xml b/common-api/pom.xml index a9d8a6e1b2..eac8f60c7b 100644 --- a/common-api/pom.xml +++ b/common-api/pom.xml @@ -11,7 +11,7 @@ com.gentics.mesh mesh - 1.8.20 + 1.8.21-SNAPSHOT diff --git a/common/pom.xml b/common/pom.xml index 13b7266ebe..88e1a2f332 100644 --- a/common/pom.xml +++ b/common/pom.xml @@ -11,7 +11,7 @@ com.gentics.mesh mesh - 1.8.20 + 1.8.21-SNAPSHOT diff --git a/core/pom.xml b/core/pom.xml index 62cad7716e..6ab5b5c67b 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -11,7 +11,7 @@ com.gentics.mesh mesh - 1.8.20 + 1.8.21-SNAPSHOT diff --git a/databases/orientdb/pom.xml b/databases/orientdb/pom.xml index a79e50dd6f..ff41f72392 100644 --- a/databases/orientdb/pom.xml +++ b/databases/orientdb/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh-databases - 1.8.20 + 1.8.21-SNAPSHOT diff --git a/databases/pom.xml b/databases/pom.xml index 9aae9427f5..d5575d1581 100644 --- a/databases/pom.xml +++ b/databases/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh - 1.8.20 + 1.8.21-SNAPSHOT diff --git a/demo/common/pom.xml b/demo/common/pom.xml index 4cfad9fa46..a0ebc955ef 100644 --- a/demo/common/pom.xml +++ b/demo/common/pom.xml @@ -11,7 +11,7 @@ com.gentics.mesh mesh-demos - 1.8.20 + 1.8.21-SNAPSHOT diff --git a/demo/default/pom.xml b/demo/default/pom.xml index 00187284db..4f9c331b0b 100644 --- a/demo/default/pom.xml +++ b/demo/default/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh-demos - 1.8.20 + 1.8.21-SNAPSHOT diff --git a/demo/pom.xml b/demo/pom.xml index 5aad3b107b..5e77f58b6f 100644 --- a/demo/pom.xml +++ b/demo/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh - 1.8.20 + 1.8.21-SNAPSHOT diff --git a/distributed-coordinator/pom.xml b/distributed-coordinator/pom.xml index 4c461338f2..03ba6f7a00 100644 --- a/distributed-coordinator/pom.xml +++ b/distributed-coordinator/pom.xml @@ -7,7 +7,7 @@ com.gentics.mesh mesh - 1.8.20 + 1.8.21-SNAPSHOT mesh-distributed-coordinator diff --git a/distributed/pom.xml b/distributed/pom.xml index a39ab2ff26..c4efcd8369 100644 --- a/distributed/pom.xml +++ b/distributed/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh - 1.8.20 + 1.8.21-SNAPSHOT diff --git a/doc/pom.xml b/doc/pom.xml index ed8cac0684..489ffcc08f 100644 --- a/doc/pom.xml +++ b/doc/pom.xml @@ -6,7 +6,7 @@ com.gentics.mesh mesh - 1.8.20 + 1.8.21-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 5440de6edb..7caffc3f41 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.8.19" +version: "1.8.20" baseUri: "http://localhost:8080/api/v2" protocols: [HTTP, HTTPS] mediaType: application/json @@ -6129,7 +6129,7 @@ mediaType: application/json | vertxVersion | false | string | Used Vert.x version. | example: | { - "meshVersion" : "1.8.19", + "meshVersion" : "1.8.20", "meshNodeName" : "Reminiscent Tirtouga", "databaseVendor" : "orientdb", "databaseVersion" : "2.2.16", diff --git a/doc/src/main/docs/generated/api/api.raml b/doc/src/main/docs/generated/api/api.raml index 99b80ee91a..ff5fb7acb3 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.8.19" +version: "1.8.20" baseUri: "http://localhost:8080/api/v2" protocols: [HTTP, HTTPS] mediaType: application/json @@ -13852,7 +13852,7 @@ mediaType: application/json } example: | { - "meshVersion" : "1.8.19", + "meshVersion" : "1.8.20", "meshNodeName" : "Reminiscent Tirtouga", "databaseVendor" : "orientdb", "databaseVersion" : "2.2.16", 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 2f7af5b9dc..c1ff011aed 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.8.19", + "meshVersion" : "1.8.20", "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 1984b6d431..7e2e483c1c 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 @@ -5,10 +5,10 @@ | Database revision -| *1.10.2* +| *1.10.3* | 6d5ccff3 -| *1.8.19* +| *1.8.20* | 7f2ff7d7 |====== diff --git a/doc/src/main/docs/generated/tables/mesh-env.adoc-include b/doc/src/main/docs/generated/tables/mesh-env.adoc-include index 894e352c42..67caee3fb7 100644 --- a/doc/src/main/docs/generated/tables/mesh-env.adoc-include +++ b/doc/src/main/docs/generated/tables/mesh-env.adoc-include @@ -74,12 +74,12 @@ | *MESH_MONITORING_JVM_METRICS_ENABLED* | Override the configured JVM metrics enabled flag. -| *MESH_CACHE_PATH_SIZE* -| Override the path cache size. - | *MESH_GRAPH_EXPORT_DIRECTORY* | Override the graph database export directory. +| *MESH_CACHE_PATH_SIZE* +| Override the path cache size. + | *MESH_VERTX_EVENT_BUS_ERROR_THRESHOLD* | Override the Vert.x eventBus error threshold in ms. @@ -140,12 +140,12 @@ | *MESH_ELASTICSEARCH_USERNAME* | Override the configured Elasticsearch connection username. -| *MESH_CLUSTER_TOPOLOGY_LOCK_TIMEOUT* -| Override the cluster topology lock timeout in ms. - | *MESH_GRAPH_BACKUP_DIRECTORY* | Override the graph database backup directory. +| *MESH_CLUSTER_TOPOLOGY_LOCK_TIMEOUT* +| Override the cluster topology lock timeout in ms. + | *MESH_VERTX_EVENT_BUS_CHECK_INTERVAL* | Override the Vert.x eventBus check interval in ms. @@ -209,12 +209,12 @@ | *MESH_HTTP_CORS_ENABLE* | Override the configured CORS enable flag. -| *MESH_HTTP_SSL_ENABLE* -| Override the configured https server flag. - | *MESH_GRAPH_STARTSERVER* | Override the graph database server flag. +| *MESH_HTTP_SSL_ENABLE* +| Override the configured https server flag. + | *MESH_HTTP_VERTICLE_AMOUNT* | Override the http verticle amount. diff --git a/elasticsearch/pom.xml b/elasticsearch/pom.xml index 4316bf910c..b2c6635516 100644 --- a/elasticsearch/pom.xml +++ b/elasticsearch/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh - 1.8.20 + 1.8.21-SNAPSHOT diff --git a/ferma/pom.xml b/ferma/pom.xml index 27dfdab2bb..4db759bded 100644 --- a/ferma/pom.xml +++ b/ferma/pom.xml @@ -6,7 +6,7 @@ com.gentics.mesh mesh - 1.8.20 + 1.8.21-SNAPSHOT ferma diff --git a/madl/api/pom.xml b/madl/api/pom.xml index fd1b3a9be2..4317766e3b 100644 --- a/madl/api/pom.xml +++ b/madl/api/pom.xml @@ -6,7 +6,7 @@ com.gentics.mesh madl - 1.8.20 + 1.8.21-SNAPSHOT madl-api diff --git a/madl/core/pom.xml b/madl/core/pom.xml index ed316b42ed..0dbe2c3e4f 100644 --- a/madl/core/pom.xml +++ b/madl/core/pom.xml @@ -6,7 +6,7 @@ com.gentics.mesh madl - 1.8.20 + 1.8.21-SNAPSHOT madl-core diff --git a/madl/madl-ferma/pom.xml b/madl/madl-ferma/pom.xml index d8337c7115..58f0f908f6 100644 --- a/madl/madl-ferma/pom.xml +++ b/madl/madl-ferma/pom.xml @@ -6,7 +6,7 @@ com.gentics.mesh madl - 1.8.20 + 1.8.21-SNAPSHOT madl-ferma diff --git a/madl/orientdb/pom.xml b/madl/orientdb/pom.xml index 5b393fdc7d..f0ebc0ca1c 100644 --- a/madl/orientdb/pom.xml +++ b/madl/orientdb/pom.xml @@ -7,7 +7,7 @@ com.gentics.mesh madl - 1.8.20 + 1.8.21-SNAPSHOT madl-orientdb diff --git a/madl/pom.xml b/madl/pom.xml index 01bb369ea2..32e4cec4a6 100644 --- a/madl/pom.xml +++ b/madl/pom.xml @@ -7,7 +7,7 @@ com.gentics.mesh mesh - 1.8.20 + 1.8.21-SNAPSHOT madl diff --git a/mdm/api/pom.xml b/mdm/api/pom.xml index 7229aa12ad..38881716ea 100644 --- a/mdm/api/pom.xml +++ b/mdm/api/pom.xml @@ -7,7 +7,7 @@ com.gentics.mesh mesh-mdm - 1.8.20 + 1.8.21-SNAPSHOT mesh-mdm-api diff --git a/mdm/common/pom.xml b/mdm/common/pom.xml index f84e961b4c..50e2bc55b2 100644 --- a/mdm/common/pom.xml +++ b/mdm/common/pom.xml @@ -7,7 +7,7 @@ com.gentics.mesh mesh-mdm - 1.8.20 + 1.8.21-SNAPSHOT mesh-mdm-common diff --git a/mdm/orientdb-api/pom.xml b/mdm/orientdb-api/pom.xml index 96313f04a0..821e922b3d 100644 --- a/mdm/orientdb-api/pom.xml +++ b/mdm/orientdb-api/pom.xml @@ -7,7 +7,7 @@ com.gentics.mesh mesh-mdm - 1.8.20 + 1.8.21-SNAPSHOT mesh-mdm-orientdb-api diff --git a/mdm/orientdb-wrapper/pom.xml b/mdm/orientdb-wrapper/pom.xml index 7e04d98846..0dc50af9c7 100644 --- a/mdm/orientdb-wrapper/pom.xml +++ b/mdm/orientdb-wrapper/pom.xml @@ -7,7 +7,7 @@ com.gentics.mesh mesh-mdm - 1.8.20 + 1.8.21-SNAPSHOT mesh-mdm-orientdb-wrapper diff --git a/mdm/pom.xml b/mdm/pom.xml index bf7db46d9f..6d63d9a8c5 100644 --- a/mdm/pom.xml +++ b/mdm/pom.xml @@ -7,7 +7,7 @@ com.gentics.mesh mesh - 1.8.20 + 1.8.21-SNAPSHOT mesh-mdm diff --git a/performance-tests/pom.xml b/performance-tests/pom.xml index 34958941fa..9ad08ca260 100644 --- a/performance-tests/pom.xml +++ b/performance-tests/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh - 1.8.20 + 1.8.21-SNAPSHOT diff --git a/plugin-api/pom.xml b/plugin-api/pom.xml index a41b3c3f4d..f120345ef5 100644 --- a/plugin-api/pom.xml +++ b/plugin-api/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh - 1.8.20 + 1.8.21-SNAPSHOT diff --git a/plugin-bom/pom.xml b/plugin-bom/pom.xml index cc78206198..1dea7e00de 100644 --- a/plugin-bom/pom.xml +++ b/plugin-bom/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh - 1.8.20 + 1.8.21-SNAPSHOT diff --git a/plugin-dep/pom.xml b/plugin-dep/pom.xml index 2e0e89e8d4..f019028721 100644 --- a/plugin-dep/pom.xml +++ b/plugin-dep/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh - 1.8.20 + 1.8.21-SNAPSHOT diff --git a/plugin-parent/pom.xml b/plugin-parent/pom.xml index 830c591ec0..6d48f1155e 100644 --- a/plugin-parent/pom.xml +++ b/plugin-parent/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh - 1.8.20 + 1.8.21-SNAPSHOT diff --git a/pom.xml b/pom.xml index bfd6f84f0d..cd4db46670 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ com.gentics.mesh mesh - 1.8.20 + 1.8.21-SNAPSHOT pom Gentics Mesh diff --git a/rest-client/pom.xml b/rest-client/pom.xml index ec9a6111a8..47d80763a2 100644 --- a/rest-client/pom.xml +++ b/rest-client/pom.xml @@ -11,7 +11,7 @@ com.gentics.mesh mesh - 1.8.20 + 1.8.21-SNAPSHOT diff --git a/rest-model/pom.xml b/rest-model/pom.xml index 01cda8ddcb..5a0eca110f 100644 --- a/rest-model/pom.xml +++ b/rest-model/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh - 1.8.20 + 1.8.21-SNAPSHOT diff --git a/server/pom.xml b/server/pom.xml index b7bf5dc788..da8049d75d 100644 --- a/server/pom.xml +++ b/server/pom.xml @@ -11,7 +11,7 @@ com.gentics.mesh mesh - 1.8.20 + 1.8.21-SNAPSHOT diff --git a/services/aws-s3-storage/pom.xml b/services/aws-s3-storage/pom.xml index 95554bfeda..5a4b05c7cf 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.8.20 + 1.8.21-SNAPSHOT diff --git a/services/image-imgscalr/pom.xml b/services/image-imgscalr/pom.xml index b9ca489e3f..e03add399b 100644 --- a/services/image-imgscalr/pom.xml +++ b/services/image-imgscalr/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh-services - 1.8.20 + 1.8.21-SNAPSHOT diff --git a/services/jwt-auth/pom.xml b/services/jwt-auth/pom.xml index 1527d4d8d6..264d5a705b 100644 --- a/services/jwt-auth/pom.xml +++ b/services/jwt-auth/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh-services - 1.8.20 + 1.8.21-SNAPSHOT diff --git a/services/local-storage/pom.xml b/services/local-storage/pom.xml index 21241a936f..c35aa114de 100644 --- a/services/local-storage/pom.xml +++ b/services/local-storage/pom.xml @@ -9,7 +9,7 @@ com.gentics.mesh mesh-services - 1.8.20 + 1.8.21-SNAPSHOT diff --git a/services/metrics-prometheus/pom.xml b/services/metrics-prometheus/pom.xml index f1656faf92..245a70148a 100644 --- a/services/metrics-prometheus/pom.xml +++ b/services/metrics-prometheus/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh-services - 1.8.20 + 1.8.21-SNAPSHOT diff --git a/services/pom.xml b/services/pom.xml index 92bd97df1f..db2952476c 100644 --- a/services/pom.xml +++ b/services/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh - 1.8.20 + 1.8.21-SNAPSHOT diff --git a/tests/api/pom.xml b/tests/api/pom.xml index 0e639e3bc7..b485616c1b 100644 --- a/tests/api/pom.xml +++ b/tests/api/pom.xml @@ -5,7 +5,7 @@ com.gentics.mesh mesh-tests - 1.8.20 + 1.8.21-SNAPSHOT mesh-tests-api Mesh - Tests API diff --git a/tests/common/pom.xml b/tests/common/pom.xml index e57a74ca13..57bf9eb830 100644 --- a/tests/common/pom.xml +++ b/tests/common/pom.xml @@ -11,7 +11,7 @@ com.gentics.mesh mesh-tests - 1.8.20 + 1.8.21-SNAPSHOT diff --git a/tests/context-api/pom.xml b/tests/context-api/pom.xml index 83ba115deb..3409362ef1 100644 --- a/tests/context-api/pom.xml +++ b/tests/context-api/pom.xml @@ -5,7 +5,7 @@ com.gentics.mesh mesh-tests - 1.8.20 + 1.8.21-SNAPSHOT mesh-tests-context-api Mesh - Tests context API diff --git a/tests/context-orientdb/pom.xml b/tests/context-orientdb/pom.xml index 32b3eb8802..659269720b 100644 --- a/tests/context-orientdb/pom.xml +++ b/tests/context-orientdb/pom.xml @@ -3,7 +3,7 @@ com.gentics.mesh mesh-tests - 1.8.20 + 1.8.21-SNAPSHOT mesh-tests-context-orientdb Mesh - Tests context - OrientDB diff --git a/tests/orientdb-runner/pom.xml b/tests/orientdb-runner/pom.xml index 7b116d8f27..7c4b483370 100644 --- a/tests/orientdb-runner/pom.xml +++ b/tests/orientdb-runner/pom.xml @@ -5,7 +5,7 @@ com.gentics.mesh mesh-tests - 1.8.20 + 1.8.21-SNAPSHOT mesh-orientdb-tests-runner Mesh - Tests Runner - OrientDB diff --git a/tests/pom.xml b/tests/pom.xml index 932ad113e8..cb2067acd9 100644 --- a/tests/pom.xml +++ b/tests/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh - 1.8.20 + 1.8.21-SNAPSHOT diff --git a/tests/tests-admin-gui/pom.xml b/tests/tests-admin-gui/pom.xml index 4a6a30ca00..d883298441 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.8.20 + 1.8.21-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 a6a3235ba2..d7ec20c6b9 100644 --- a/tests/tests-api/pom.xml +++ b/tests/tests-api/pom.xml @@ -8,7 +8,7 @@ com.gentics.mesh mesh-tests - 1.8.20 + 1.8.21-SNAPSHOT diff --git a/tests/tests-changelog-system/pom.xml b/tests/tests-changelog-system/pom.xml index 26e5042ea9..15bc7b9877 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.8.20 + 1.8.21-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 a2a2125158..93a3a8a8d5 100644 --- a/tests/tests-common/pom.xml +++ b/tests/tests-common/pom.xml @@ -8,7 +8,7 @@ com.gentics.mesh mesh-tests - 1.8.20 + 1.8.21-SNAPSHOT diff --git a/tests/tests-core/pom.xml b/tests/tests-core/pom.xml index 9211bf45e5..ea99179b77 100644 --- a/tests/tests-core/pom.xml +++ b/tests/tests-core/pom.xml @@ -8,7 +8,7 @@ com.gentics.mesh mesh-tests - 1.8.20 + 1.8.21-SNAPSHOT diff --git a/tests/tests-distributed-coordinator/pom.xml b/tests/tests-distributed-coordinator/pom.xml index 5b7770f7ff..e42790b657 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.8.20 + 1.8.21-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 8d1378d8c6..ec0936e891 100644 --- a/tests/tests-distributed/pom.xml +++ b/tests/tests-distributed/pom.xml @@ -11,7 +11,7 @@ com.gentics.mesh mesh-tests - 1.8.20 + 1.8.21-SNAPSHOT diff --git a/tests/tests-elasticsearch/pom.xml b/tests/tests-elasticsearch/pom.xml index aafba5dee2..4350a7840d 100644 --- a/tests/tests-elasticsearch/pom.xml +++ b/tests/tests-elasticsearch/pom.xml @@ -5,7 +5,7 @@ com.gentics.mesh mesh-tests - 1.8.20 + 1.8.21-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 fc6113cc98..521ffc9275 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.8.20 + 1.8.21-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 910521d52d..6bf10a780b 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.8.20 + 1.8.21-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 a40f9a2f83..7a6fed1861 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.8.20 + 1.8.21-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 6e0f7ad80c..46c817d240 100644 --- a/tests/tests-server/pom.xml +++ b/tests/tests-server/pom.xml @@ -5,7 +5,7 @@ com.gentics.mesh mesh-tests - 1.8.20 + 1.8.21-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 058a94ef66..0a19bfe76a 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.8.20 + 1.8.21-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 d574de36c8..9d107d8ec8 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.8.20 + 1.8.21-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 e96ee8726e..a67ed3cce7 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.8.20 + 1.8.21-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 c2ade075f5..3faec652bc 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.8.20 + 1.8.21-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 dcc6e5d67d..31f1c14356 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.8.20 + 1.8.21-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 89a6955d46..a72a5dc29a 100644 --- a/verticles/admin-gui/pom.xml +++ b/verticles/admin-gui/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh-verticles - 1.8.20 + 1.8.21-SNAPSHOT diff --git a/verticles/graphql/pom.xml b/verticles/graphql/pom.xml index 3f9a5018aa..948f0ddd98 100644 --- a/verticles/graphql/pom.xml +++ b/verticles/graphql/pom.xml @@ -9,7 +9,7 @@ com.gentics.mesh mesh-verticles - 1.8.20 + 1.8.21-SNAPSHOT diff --git a/verticles/pom.xml b/verticles/pom.xml index 0c12803115..7e52096c2f 100644 --- a/verticles/pom.xml +++ b/verticles/pom.xml @@ -9,7 +9,7 @@ com.gentics.mesh mesh - 1.8.20 + 1.8.21-SNAPSHOT diff --git a/verticles/rest/pom.xml b/verticles/rest/pom.xml index 3a25b89c49..8693fa3cb2 100644 --- a/verticles/rest/pom.xml +++ b/verticles/rest/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh-verticles - 1.8.20 + 1.8.21-SNAPSHOT