From 9674adbe0055a0bf07823e087e51d2358aa164d1 Mon Sep 17 00:00:00 2001 From: Norbert Pomaroli Date: Thu, 22 Feb 2024 09:56:30 +0100 Subject: [PATCH 1/5] Fix double-delegation of graphql requests to worker threads. This also fixes possible unnecessary queueing of graphql requests, since the removed "inner" delegation was done "ordered". --- LTS-CHANGELOG.adoc | 6 + .../gentics/mesh/graphql/GraphQLHandler.java | 162 +++++++++--------- 2 files changed, 84 insertions(+), 84 deletions(-) diff --git a/LTS-CHANGELOG.adoc b/LTS-CHANGELOG.adoc index fd8b613b50..15e317a9c0 100644 --- a/LTS-CHANGELOG.adoc +++ b/LTS-CHANGELOG.adoc @@ -17,6 +17,12 @@ 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.28]] +== 1.10.28 (TBD) + +icon:check[] GraphQL: In cases of long running GraphQL requests, some other GraphQL requests were queued and executed after the long running request, even if enough workers were still +available. The behaviour has been changed, so that GraphQL requests will only be queued, if all workers are currently busy. + [[v1.10.27]] == 1.10.27 (21.02.2024) diff --git a/verticles/graphql/src/main/java/com/gentics/mesh/graphql/GraphQLHandler.java b/verticles/graphql/src/main/java/com/gentics/mesh/graphql/GraphQLHandler.java index dc5f575bd7..18dbc7e4f1 100644 --- a/verticles/graphql/src/main/java/com/gentics/mesh/graphql/GraphQLHandler.java +++ b/verticles/graphql/src/main/java/com/gentics/mesh/graphql/GraphQLHandler.java @@ -83,97 +83,91 @@ public GraphQLHandler(MetricsService metrics, MeshOptions options, QueryTypeProv * GraphQL query */ public void handleQuery(GraphQLContext gc, String body) { - vertx.rxExecuteBlocking(promise -> { - Timer.Sample sample = Timer.start(); - AtomicReference loggableQuery = new AtomicReference<>(); - AtomicReference> loggableVariables = new AtomicReference<>(); - try { - db.tx(tx -> { - JsonObject queryJson = new JsonObject(body); - // extract query body and variables from the sent body - String query = queryJson.getString("query"); - Map variables = extractVariables(queryJson); - // store for possibly logging it later - loggableQuery.set(query); - loggableVariables.set(variables); - GraphQL graphQL = newGraphQL(typeProvider.getRootSchema(gc)).instrumentation(new DataLoaderDispatcherInstrumentation()).build(); - - DataLoaderRegistry dataLoaderRegistry = new DataLoaderRegistry(); - DataLoaderOptions options = DataLoaderOptions.newOptions().setBatchLoaderContextProvider(() -> gc); - dataLoaderRegistry.register(NodeDataLoader.CONTENT_LOADER_KEY, DataLoader.newDataLoader(NodeDataLoader.CONTENT_LOADER, options)); - dataLoaderRegistry.register(NodeDataLoader.CHILDREN_LOADER_KEY, DataLoader.newDataLoader(NodeDataLoader.CHILDREN_LOADER, options)); - dataLoaderRegistry.register(NodeDataLoader.PATH_LOADER_KEY, DataLoader.newDataLoader(NodeDataLoader.PATH_LOADER, options)); - dataLoaderRegistry.register(NodeDataLoader.PARENT_LOADER_KEY, DataLoader.newDataLoader(NodeDataLoader.PARENT_LOADER, options)); - dataLoaderRegistry.register(NodeDataLoader.REFERENCED_BY_LOADER_KEY, DataLoader.newDataLoader(NodeDataLoader.REFERENCED_BY_LOADER, options)); - dataLoaderRegistry.register(NodeDataLoader.BREADCRUMB_LOADER_KEY, DataLoader.newDataLoader(NodeDataLoader.BREADCRUMB_LOADER, options)); - dataLoaderRegistry.register(FieldDefinitionProvider.LINK_REPLACER_DATA_LOADER_KEY, DataLoader.newDataLoader(typeProvider.getFieldDefProvider().LINK_REPLACER_LOADER, options)); - dataLoaderRegistry.register(FieldDefinitionProvider.BOOLEAN_LIST_VALUES_DATA_LOADER_KEY, DataLoader.newDataLoader(typeProvider.getFieldDefProvider().BOOLEAN_LIST_VALUE_LOADER, options)); - dataLoaderRegistry.register(FieldDefinitionProvider.DATE_LIST_VALUES_DATA_LOADER_KEY, DataLoader.newDataLoader(typeProvider.getFieldDefProvider().DATE_LIST_VALUE_LOADER, options)); - dataLoaderRegistry.register(FieldDefinitionProvider.NUMBER_LIST_VALUES_DATA_LOADER_KEY, DataLoader.newDataLoader(typeProvider.getFieldDefProvider().NUMBER_LIST_VALUE_LOADER, options)); - dataLoaderRegistry.register(FieldDefinitionProvider.HTML_LIST_VALUES_DATA_LOADER_KEY, DataLoader.newDataLoader(typeProvider.getFieldDefProvider().HTML_LIST_VALUE_LOADER, options)); - dataLoaderRegistry.register(FieldDefinitionProvider.STRING_LIST_VALUES_DATA_LOADER_KEY, DataLoader.newDataLoader(typeProvider.getFieldDefProvider().STRING_LIST_VALUE_LOADER, options)); - dataLoaderRegistry.register(FieldDefinitionProvider.MICRONODE_LIST_VALUES_DATA_LOADER_KEY, DataLoader.newDataLoader(typeProvider.getFieldDefProvider().MICRONODE_LIST_VALUE_LOADER, options)); - dataLoaderRegistry.register(FieldDefinitionProvider.MICRONODE_DATA_LOADER_KEY, DataLoader.newDataLoader(typeProvider.getFieldDefProvider().MICRONODE_LOADER, options)); - - ExecutionInput executionInput = ExecutionInput - .newExecutionInput() - .dataLoaderRegistry(dataLoaderRegistry) - .query(query) - .context(gc) - .variables(variables) - .build(); - try { - // Implementation Note: GraphQL is implemented synchronously (no implemented datafetcher returns a CompletableFuture, which is not yet completed) - // Nonetheless, we see sometimes that the CompletableFuture is not completed (and never will be), when GraphQL joins it, which leads to endlessly - // blocked worker threads. - // Therefore, we use the "async approach" for calling GraphQL and wait for the result with a timeout. - ExecutionResult result = graphQL.executeAsync(executionInput) - .get(graphQLOptions.getAsyncWaitTimeout(), TimeUnit.MILLISECONDS); - List errors = result.getErrors(); - JsonObject response = new JsonObject(); - if (!errors.isEmpty()) { - addErrors(errors, response); - if (log.isDebugEnabled()) { - log.debug("Encountered {" + errors.size() + "} errors while executing query {" + query + "}"); - for (GraphQLError error : errors) { - String loc = "unknown location"; - if (error.getLocations() != null) { - loc = error.getLocations().stream().map(Object::toString).collect(Collectors.joining(",")); - } - log.debug("Error: " + error.getErrorType() + ":" + error.getMessage() + ":" + loc); + Timer.Sample sample = Timer.start(); + AtomicReference loggableQuery = new AtomicReference<>(); + AtomicReference> loggableVariables = new AtomicReference<>(); + try { + db.tx(tx -> { + JsonObject queryJson = new JsonObject(body); + // extract query body and variables from the sent body + String query = queryJson.getString("query"); + Map variables = extractVariables(queryJson); + // store for possibly logging it later + loggableQuery.set(query); + loggableVariables.set(variables); + GraphQL graphQL = newGraphQL(typeProvider.getRootSchema(gc)).instrumentation(new DataLoaderDispatcherInstrumentation()).build(); + + DataLoaderRegistry dataLoaderRegistry = new DataLoaderRegistry(); + DataLoaderOptions options = DataLoaderOptions.newOptions().setBatchLoaderContextProvider(() -> gc); + dataLoaderRegistry.register(NodeDataLoader.CONTENT_LOADER_KEY, DataLoader.newDataLoader(NodeDataLoader.CONTENT_LOADER, options)); + dataLoaderRegistry.register(NodeDataLoader.CHILDREN_LOADER_KEY, DataLoader.newDataLoader(NodeDataLoader.CHILDREN_LOADER, options)); + dataLoaderRegistry.register(NodeDataLoader.PATH_LOADER_KEY, DataLoader.newDataLoader(NodeDataLoader.PATH_LOADER, options)); + dataLoaderRegistry.register(NodeDataLoader.PARENT_LOADER_KEY, DataLoader.newDataLoader(NodeDataLoader.PARENT_LOADER, options)); + dataLoaderRegistry.register(NodeDataLoader.REFERENCED_BY_LOADER_KEY, DataLoader.newDataLoader(NodeDataLoader.REFERENCED_BY_LOADER, options)); + dataLoaderRegistry.register(NodeDataLoader.BREADCRUMB_LOADER_KEY, DataLoader.newDataLoader(NodeDataLoader.BREADCRUMB_LOADER, options)); + dataLoaderRegistry.register(FieldDefinitionProvider.LINK_REPLACER_DATA_LOADER_KEY, DataLoader.newDataLoader(typeProvider.getFieldDefProvider().LINK_REPLACER_LOADER, options)); + dataLoaderRegistry.register(FieldDefinitionProvider.BOOLEAN_LIST_VALUES_DATA_LOADER_KEY, DataLoader.newDataLoader(typeProvider.getFieldDefProvider().BOOLEAN_LIST_VALUE_LOADER, options)); + dataLoaderRegistry.register(FieldDefinitionProvider.DATE_LIST_VALUES_DATA_LOADER_KEY, DataLoader.newDataLoader(typeProvider.getFieldDefProvider().DATE_LIST_VALUE_LOADER, options)); + dataLoaderRegistry.register(FieldDefinitionProvider.NUMBER_LIST_VALUES_DATA_LOADER_KEY, DataLoader.newDataLoader(typeProvider.getFieldDefProvider().NUMBER_LIST_VALUE_LOADER, options)); + dataLoaderRegistry.register(FieldDefinitionProvider.HTML_LIST_VALUES_DATA_LOADER_KEY, DataLoader.newDataLoader(typeProvider.getFieldDefProvider().HTML_LIST_VALUE_LOADER, options)); + dataLoaderRegistry.register(FieldDefinitionProvider.STRING_LIST_VALUES_DATA_LOADER_KEY, DataLoader.newDataLoader(typeProvider.getFieldDefProvider().STRING_LIST_VALUE_LOADER, options)); + dataLoaderRegistry.register(FieldDefinitionProvider.MICRONODE_LIST_VALUES_DATA_LOADER_KEY, DataLoader.newDataLoader(typeProvider.getFieldDefProvider().MICRONODE_LIST_VALUE_LOADER, options)); + dataLoaderRegistry.register(FieldDefinitionProvider.MICRONODE_DATA_LOADER_KEY, DataLoader.newDataLoader(typeProvider.getFieldDefProvider().MICRONODE_LOADER, options)); + + ExecutionInput executionInput = ExecutionInput + .newExecutionInput() + .dataLoaderRegistry(dataLoaderRegistry) + .query(query) + .context(gc) + .variables(variables) + .build(); + try { + // Implementation Note: GraphQL is implemented synchronously (no implemented datafetcher returns a CompletableFuture, which is not yet completed) + // Nonetheless, we see sometimes that the CompletableFuture is not completed (and never will be), when GraphQL joins it, which leads to endlessly + // blocked worker threads. + // Therefore, we use the "async approach" for calling GraphQL and wait for the result with a timeout. + ExecutionResult result = graphQL.executeAsync(executionInput) + .get(graphQLOptions.getAsyncWaitTimeout(), TimeUnit.MILLISECONDS); + List errors = result.getErrors(); + JsonObject response = new JsonObject(); + if (!errors.isEmpty()) { + addErrors(errors, response); + if (log.isDebugEnabled()) { + log.debug("Encountered {" + errors.size() + "} errors while executing query {" + query + "}"); + for (GraphQLError error : errors) { + String loc = "unknown location"; + if (error.getLocations() != null) { + loc = error.getLocations().stream().map(Object::toString).collect(Collectors.joining(",")); } + log.debug("Error: " + error.getErrorType() + ":" + error.getMessage() + ":" + loc); } } - if (result.getData() != null) { - Map data = result.getData(); - response.put("data", new JsonObject(data)); - } - gc.send(response.encodePrettily(), OK); - promise.complete(); - } catch (TimeoutException | InterruptedException | ExecutionException e) { - // If an error happens while "waiting" for the result, we log the GraphQL query here. - log.error("GraphQL query failed after {} ms with {}:\n{}\nvariables: {}", - graphQLOptions.getAsyncWaitTimeout(), e.getClass().getSimpleName(), loggableQuery.get(), - loggableVariables.get()); - gc.fail(e); - promise.fail(e); } - }); - } catch (Exception e) { - promise.fail(e); - } finally { - long duration = sample.stop(graphQlTimer); - Long slowThreshold = graphQLOptions.getSlowThreshold(); - if (loggableQuery.get() != null && slowThreshold != null && slowThreshold.longValue() > 0) { - long durationMs = TimeUnit.MILLISECONDS.convert(duration, TimeUnit.NANOSECONDS); - if (durationMs > slowThreshold) { - slowQueryLog.warn("GraphQL Query took {} ms:\n{}\nvariables: {}", durationMs, loggableQuery.get(), loggableVariables.get()); + if (result.getData() != null) { + Map data = result.getData(); + response.put("data", new JsonObject(data)); } + gc.send(response.encodePrettily(), OK); + } catch (TimeoutException | InterruptedException | ExecutionException e) { + // If an error happens while "waiting" for the result, we log the GraphQL query here. + log.error("GraphQL query failed after {} ms with {}:\n{}\nvariables: {}", + graphQLOptions.getAsyncWaitTimeout(), e.getClass().getSimpleName(), loggableQuery.get(), + loggableVariables.get()); + gc.fail(e); + } + }); + } catch (Exception e) { + gc.fail(e); + } finally { + long duration = sample.stop(graphQlTimer); + Long slowThreshold = graphQLOptions.getSlowThreshold(); + if (loggableQuery.get() != null && slowThreshold != null && slowThreshold.longValue() > 0) { + long durationMs = TimeUnit.MILLISECONDS.convert(duration, TimeUnit.NANOSECONDS); + if (durationMs > slowThreshold) { + slowQueryLog.warn("GraphQL Query took {} ms:\n{}\nvariables: {}", durationMs, loggableQuery.get(), loggableVariables.get()); } } - }) - .doOnError(gc::fail) - .subscribe(); + } } /** From 1d0b383143a9c346663538ffc0646e1921f9559d Mon Sep 17 00:00:00 2001 From: Norbert Pomaroli Date: Tue, 27 Feb 2024 11:32:46 +0100 Subject: [PATCH 2/5] Fix returning cached permissions as copies --- LTS-CHANGELOG.adoc | 5 +++ .../mesh/cache/PermissionCacheImpl.java | 26 +++++++++++++- .../mesh/core/perm/PermissionCacheTest.java | 36 +++++++++++++++++-- 3 files changed, 63 insertions(+), 4 deletions(-) diff --git a/LTS-CHANGELOG.adoc b/LTS-CHANGELOG.adoc index fd8b613b50..2393fa81b8 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.28]] +== 1.10.28 (TBD) + +icon:check[] Cache: The permission cache has been fixed to always return copies of the actually cached entries. + [[v1.10.27]] == 1.10.27 (21.02.2024) diff --git a/core/src/main/java/com/gentics/mesh/cache/PermissionCacheImpl.java b/core/src/main/java/com/gentics/mesh/cache/PermissionCacheImpl.java index 871db50f85..ebc3ca6703 100644 --- a/core/src/main/java/com/gentics/mesh/cache/PermissionCacheImpl.java +++ b/core/src/main/java/com/gentics/mesh/cache/PermissionCacheImpl.java @@ -9,6 +9,7 @@ import java.util.EnumSet; import java.util.HashMap; import java.util.Map; +import java.util.function.Function; import javax.inject.Inject; import javax.inject.Singleton; @@ -73,7 +74,8 @@ private static EventAwareCache> createCache( @Override public Boolean hasPermission(Object userId, InternalPermission permission, Object elementId) { - EnumSet cachedPermissions = get(userId, elementId); + // note: we access the cache instance directly here to avoid cloning of the returned entry (which we will not mutate) + EnumSet cachedPermissions = cache.get(createCacheKey(userId, elementId)); if (cachedPermissions != null) { return cachedPermissions.contains(permission); } else { @@ -123,6 +125,28 @@ public EnumSet get(Object userId, Object elementId) { return get(createCacheKey(userId, elementId)); } + @Override + public EnumSet get(String key) { + EnumSet cached = super.get(key); + if (cached != null) { + // since the EnumSet is mutable, we return a clone of the instance + return EnumSet.copyOf(cached); + } else { + return null; + } + } + + @Override + public EnumSet get(String key, Function> mappingFunction) { + EnumSet cached = super.get(key, mappingFunction); + if (cached != null) { + // since the EnumSet is mutable, we return a clone of the instance + return EnumSet.copyOf(cached); + } else { + return null; + } + } + @Override public void store(Object userId, EnumSet permission, Object elementId) { // deduplicate the permission EnumSet and put it into the cache diff --git a/tests/tests-core/src/main/java/com/gentics/mesh/core/perm/PermissionCacheTest.java b/tests/tests-core/src/main/java/com/gentics/mesh/core/perm/PermissionCacheTest.java index 2932f32c0c..fada09b1ba 100644 --- a/tests/tests-core/src/main/java/com/gentics/mesh/core/perm/PermissionCacheTest.java +++ b/tests/tests-core/src/main/java/com/gentics/mesh/core/perm/PermissionCacheTest.java @@ -3,14 +3,15 @@ import static com.gentics.mesh.mock.Mocks.getMockedInternalActionContext; import static org.assertj.core.api.Assertions.assertThat; -import java.util.Arrays; -import java.util.Collections; -import java.util.HashSet; +import java.util.EnumSet; import java.util.Set; +import java.util.UUID; import org.junit.Before; import org.junit.Test; +import com.gentics.mesh.cache.PermissionCache; +import com.gentics.mesh.cache.PermissionCacheImpl; import com.gentics.mesh.context.InternalActionContext; import com.gentics.mesh.context.impl.DummyBulkActionContext; import com.gentics.mesh.context.impl.DummyEventQueueBatch; @@ -23,6 +24,7 @@ import com.gentics.mesh.test.MeshTestSetting; import com.gentics.mesh.test.TestSize; import com.gentics.mesh.test.context.AbstractMeshTest; +import com.gentics.mesh.util.UUIDUtil; /** * Test cases for usage and clearing of PermissionCache @@ -221,6 +223,34 @@ public void testRevokeAdmin() { assertPermissions("revoking admin flag"); } + /** + * Test that mutations of permission entries fetched from the cache will not change the cached entry itself + */ + @Test + public void testMutateCachedEntry() { + UUID userId = UUIDUtil.toJavaUuid(UUIDUtil.randomUUID()); + UUID elementId = UUIDUtil.toJavaUuid(UUIDUtil.randomUUID()); + + // store permission in the cache + db().tx(tx -> { + EnumSet cached = EnumSet.of(InternalPermission.CREATE_PERM, InternalPermission.UPDATE_PERM); + tx.permissionCache().store(userId, cached, elementId); + }); + + // get stored permission and mutate + EnumSet cached = db().tx(tx -> { + return tx.permissionCache().get(userId, elementId); + }); + assertThat(cached).as("Cached permissions").isNotNull().containsOnly(InternalPermission.CREATE_PERM, InternalPermission.UPDATE_PERM); + cached.add(InternalPermission.READ_PERM); + + // get again + cached = db().tx(tx -> { + return tx.permissionCache().get(userId, elementId); + }); + assertThat(cached).as("Cached permissions").isNotNull().containsOnly(InternalPermission.CREATE_PERM, InternalPermission.UPDATE_PERM); + } + /** * Get the size of the permission cache * @return cache size From 95d6f1dd9ee1610c3dc7c8ef62fe24c2d705849c Mon Sep 17 00:00:00 2001 From: Serhii Plyhun Date: Tue, 27 Feb 2024 14:37:38 +0100 Subject: [PATCH 3/5] Changelog --- LTS-CHANGELOG.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LTS-CHANGELOG.adoc b/LTS-CHANGELOG.adoc index c067bdf909..4c04a0ec1d 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.10.28]] -== 1.10.28 (TBD) +== 1.10.28 (27.02.2024) icon:check[] GraphQL: In cases of long running GraphQL requests, some other GraphQL requests were queued and executed after the long running request, even if enough workers were still available. The behaviour has been changed, so that GraphQL requests will only be queued, if all workers are currently busy. From b9d6474c2dec425b2af6471e2a18c3fb8819900a Mon Sep 17 00:00:00 2001 From: 1000 user <1000@a66feb33f7bb> Date: Tue, 27 Feb 2024 14:38:46 +0100 Subject: [PATCH 4/5] 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 7ec16cd052..9d43dd8638 100644 --- a/api/pom.xml +++ b/api/pom.xml @@ -11,7 +11,7 @@ com.gentics.mesh mesh - 1.10.28-SNAPSHOT + 1.10.28 diff --git a/bom/pom.xml b/bom/pom.xml index b5dcfdb163..8295bd1b91 100644 --- a/bom/pom.xml +++ b/bom/pom.xml @@ -11,7 +11,7 @@ com.gentics.mesh mesh - 1.10.28-SNAPSHOT + 1.10.28 diff --git a/changelog-system/pom.xml b/changelog-system/pom.xml index 5185909835..1e8a0b4dbf 100644 --- a/changelog-system/pom.xml +++ b/changelog-system/pom.xml @@ -12,7 +12,7 @@ com.gentics.mesh mesh - 1.10.28-SNAPSHOT + 1.10.28 diff --git a/common-api/pom.xml b/common-api/pom.xml index 5f6b08889e..3a22fde0a4 100644 --- a/common-api/pom.xml +++ b/common-api/pom.xml @@ -11,7 +11,7 @@ com.gentics.mesh mesh - 1.10.28-SNAPSHOT + 1.10.28 diff --git a/common/pom.xml b/common/pom.xml index 40d4d1b58d..c8669cb400 100644 --- a/common/pom.xml +++ b/common/pom.xml @@ -11,7 +11,7 @@ com.gentics.mesh mesh - 1.10.28-SNAPSHOT + 1.10.28 diff --git a/core/pom.xml b/core/pom.xml index 1f4aef7a46..b9f8cf7a0a 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -11,7 +11,7 @@ com.gentics.mesh mesh - 1.10.28-SNAPSHOT + 1.10.28 diff --git a/databases/orientdb/pom.xml b/databases/orientdb/pom.xml index 51e28db7d1..3f29eef8dc 100644 --- a/databases/orientdb/pom.xml +++ b/databases/orientdb/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh-databases - 1.10.28-SNAPSHOT + 1.10.28 diff --git a/databases/pom.xml b/databases/pom.xml index d28d6db0f6..7756a46124 100644 --- a/databases/pom.xml +++ b/databases/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh - 1.10.28-SNAPSHOT + 1.10.28 diff --git a/demo/common/pom.xml b/demo/common/pom.xml index efd2d321f7..bb6cfb9b4c 100644 --- a/demo/common/pom.xml +++ b/demo/common/pom.xml @@ -11,7 +11,7 @@ com.gentics.mesh mesh-demos - 1.10.28-SNAPSHOT + 1.10.28 diff --git a/demo/default/pom.xml b/demo/default/pom.xml index e497a18c11..e16848246b 100644 --- a/demo/default/pom.xml +++ b/demo/default/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh-demos - 1.10.28-SNAPSHOT + 1.10.28 diff --git a/demo/pom.xml b/demo/pom.xml index ecda853ff9..13f4096bbe 100644 --- a/demo/pom.xml +++ b/demo/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh - 1.10.28-SNAPSHOT + 1.10.28 diff --git a/distributed-coordinator/pom.xml b/distributed-coordinator/pom.xml index faac606f27..6fca981a9f 100644 --- a/distributed-coordinator/pom.xml +++ b/distributed-coordinator/pom.xml @@ -7,7 +7,7 @@ com.gentics.mesh mesh - 1.10.28-SNAPSHOT + 1.10.28 mesh-distributed-coordinator diff --git a/distributed/pom.xml b/distributed/pom.xml index 7465a70597..5bfe18b44c 100644 --- a/distributed/pom.xml +++ b/distributed/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh - 1.10.28-SNAPSHOT + 1.10.28 diff --git a/doc/pom.xml b/doc/pom.xml index 8328871248..a4bab0f57b 100644 --- a/doc/pom.xml +++ b/doc/pom.xml @@ -6,7 +6,7 @@ com.gentics.mesh mesh - 1.10.28-SNAPSHOT + 1.10.28 mesh-doc diff --git a/elasticsearch/pom.xml b/elasticsearch/pom.xml index bb74b97919..2ba03ab59f 100644 --- a/elasticsearch/pom.xml +++ b/elasticsearch/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh - 1.10.28-SNAPSHOT + 1.10.28 diff --git a/ferma/pom.xml b/ferma/pom.xml index a0d38b15a1..55f762abbb 100644 --- a/ferma/pom.xml +++ b/ferma/pom.xml @@ -6,7 +6,7 @@ com.gentics.mesh mesh - 1.10.28-SNAPSHOT + 1.10.28 ferma diff --git a/hazelcast3-cluster-manager/pom.xml b/hazelcast3-cluster-manager/pom.xml index b1ba127523..f722ba44e2 100644 --- a/hazelcast3-cluster-manager/pom.xml +++ b/hazelcast3-cluster-manager/pom.xml @@ -6,7 +6,7 @@ mesh com.gentics.mesh - 1.10.28-SNAPSHOT + 1.10.28 hazelcast3-cluster-manager diff --git a/madl/api/pom.xml b/madl/api/pom.xml index 1652682f03..9263d4bba1 100644 --- a/madl/api/pom.xml +++ b/madl/api/pom.xml @@ -6,7 +6,7 @@ com.gentics.mesh madl - 1.10.28-SNAPSHOT + 1.10.28 madl-api diff --git a/madl/core/pom.xml b/madl/core/pom.xml index 6e282b8cae..b279f1dc2c 100644 --- a/madl/core/pom.xml +++ b/madl/core/pom.xml @@ -6,7 +6,7 @@ com.gentics.mesh madl - 1.10.28-SNAPSHOT + 1.10.28 madl-core diff --git a/madl/madl-ferma/pom.xml b/madl/madl-ferma/pom.xml index 24945cb690..a0d49d577f 100644 --- a/madl/madl-ferma/pom.xml +++ b/madl/madl-ferma/pom.xml @@ -6,7 +6,7 @@ com.gentics.mesh madl - 1.10.28-SNAPSHOT + 1.10.28 madl-ferma diff --git a/madl/orientdb/pom.xml b/madl/orientdb/pom.xml index b4bf33d27c..de1ea7ffa9 100644 --- a/madl/orientdb/pom.xml +++ b/madl/orientdb/pom.xml @@ -7,7 +7,7 @@ com.gentics.mesh madl - 1.10.28-SNAPSHOT + 1.10.28 madl-orientdb diff --git a/madl/pom.xml b/madl/pom.xml index 2d9829ebb3..f4a6c603d3 100644 --- a/madl/pom.xml +++ b/madl/pom.xml @@ -7,7 +7,7 @@ com.gentics.mesh mesh - 1.10.28-SNAPSHOT + 1.10.28 madl diff --git a/mdm/api/pom.xml b/mdm/api/pom.xml index bcbf1130ef..9ca79fb5dc 100644 --- a/mdm/api/pom.xml +++ b/mdm/api/pom.xml @@ -7,7 +7,7 @@ com.gentics.mesh mesh-mdm - 1.10.28-SNAPSHOT + 1.10.28 mesh-mdm-api diff --git a/mdm/common/pom.xml b/mdm/common/pom.xml index 054a441dba..f1d4a4eac5 100644 --- a/mdm/common/pom.xml +++ b/mdm/common/pom.xml @@ -7,7 +7,7 @@ com.gentics.mesh mesh-mdm - 1.10.28-SNAPSHOT + 1.10.28 mesh-mdm-common diff --git a/mdm/orientdb-api/pom.xml b/mdm/orientdb-api/pom.xml index e9b77e0c65..f850a5f315 100644 --- a/mdm/orientdb-api/pom.xml +++ b/mdm/orientdb-api/pom.xml @@ -7,7 +7,7 @@ com.gentics.mesh mesh-mdm - 1.10.28-SNAPSHOT + 1.10.28 mesh-mdm-orientdb-api diff --git a/mdm/orientdb-wrapper/pom.xml b/mdm/orientdb-wrapper/pom.xml index 669d23ef1a..de7263c57f 100644 --- a/mdm/orientdb-wrapper/pom.xml +++ b/mdm/orientdb-wrapper/pom.xml @@ -7,7 +7,7 @@ com.gentics.mesh mesh-mdm - 1.10.28-SNAPSHOT + 1.10.28 mesh-mdm-orientdb-wrapper diff --git a/mdm/pom.xml b/mdm/pom.xml index f6bcf1fca5..2eb7b57d89 100644 --- a/mdm/pom.xml +++ b/mdm/pom.xml @@ -7,7 +7,7 @@ com.gentics.mesh mesh - 1.10.28-SNAPSHOT + 1.10.28 mesh-mdm diff --git a/performance-tests/pom.xml b/performance-tests/pom.xml index 8ed9933ea1..2bcbb1c20c 100644 --- a/performance-tests/pom.xml +++ b/performance-tests/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh - 1.10.28-SNAPSHOT + 1.10.28 diff --git a/plugin-api/pom.xml b/plugin-api/pom.xml index 5a718ca17f..bee44ef7e1 100644 --- a/plugin-api/pom.xml +++ b/plugin-api/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh - 1.10.28-SNAPSHOT + 1.10.28 diff --git a/plugin-bom/pom.xml b/plugin-bom/pom.xml index 7361600817..5b75b44073 100644 --- a/plugin-bom/pom.xml +++ b/plugin-bom/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh - 1.10.28-SNAPSHOT + 1.10.28 diff --git a/plugin-dep/pom.xml b/plugin-dep/pom.xml index 6e21f47be8..e8d6a239d4 100644 --- a/plugin-dep/pom.xml +++ b/plugin-dep/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh - 1.10.28-SNAPSHOT + 1.10.28 diff --git a/plugin-parent/pom.xml b/plugin-parent/pom.xml index d9c70eaf81..51968595cb 100644 --- a/plugin-parent/pom.xml +++ b/plugin-parent/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh - 1.10.28-SNAPSHOT + 1.10.28 diff --git a/pom.xml b/pom.xml index c57e6034b8..5edb1a0f39 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ com.gentics.mesh mesh - 1.10.28-SNAPSHOT + 1.10.28 pom Gentics Mesh diff --git a/rest-client/pom.xml b/rest-client/pom.xml index b48c80421f..12c624b88b 100644 --- a/rest-client/pom.xml +++ b/rest-client/pom.xml @@ -11,7 +11,7 @@ com.gentics.mesh mesh - 1.10.28-SNAPSHOT + 1.10.28 diff --git a/rest-model/pom.xml b/rest-model/pom.xml index 9468327bc0..877f6224b8 100644 --- a/rest-model/pom.xml +++ b/rest-model/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh - 1.10.28-SNAPSHOT + 1.10.28 diff --git a/server/pom.xml b/server/pom.xml index 196de1df9b..4495189a6b 100644 --- a/server/pom.xml +++ b/server/pom.xml @@ -11,7 +11,7 @@ com.gentics.mesh mesh - 1.10.28-SNAPSHOT + 1.10.28 diff --git a/services/aws-s3-storage/pom.xml b/services/aws-s3-storage/pom.xml index b960710765..ab6043a058 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.28-SNAPSHOT + 1.10.28 diff --git a/services/image-imgscalr/pom.xml b/services/image-imgscalr/pom.xml index 38a043be00..466cebe7ae 100644 --- a/services/image-imgscalr/pom.xml +++ b/services/image-imgscalr/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh-services - 1.10.28-SNAPSHOT + 1.10.28 diff --git a/services/jwt-auth/pom.xml b/services/jwt-auth/pom.xml index 5c0cfa9e54..7a211d7a86 100644 --- a/services/jwt-auth/pom.xml +++ b/services/jwt-auth/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh-services - 1.10.28-SNAPSHOT + 1.10.28 diff --git a/services/local-storage/pom.xml b/services/local-storage/pom.xml index c32eba9f8a..4201ab5c96 100644 --- a/services/local-storage/pom.xml +++ b/services/local-storage/pom.xml @@ -9,7 +9,7 @@ com.gentics.mesh mesh-services - 1.10.28-SNAPSHOT + 1.10.28 diff --git a/services/metrics-prometheus/pom.xml b/services/metrics-prometheus/pom.xml index f618f9e82b..fbca10125d 100644 --- a/services/metrics-prometheus/pom.xml +++ b/services/metrics-prometheus/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh-services - 1.10.28-SNAPSHOT + 1.10.28 diff --git a/services/pom.xml b/services/pom.xml index 3bd584ad31..cf81184ff4 100644 --- a/services/pom.xml +++ b/services/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh - 1.10.28-SNAPSHOT + 1.10.28 diff --git a/tests/api/pom.xml b/tests/api/pom.xml index 3ef7240f57..be5acbf80f 100644 --- a/tests/api/pom.xml +++ b/tests/api/pom.xml @@ -5,7 +5,7 @@ com.gentics.mesh mesh-tests - 1.10.28-SNAPSHOT + 1.10.28 mesh-tests-api Mesh - Tests API diff --git a/tests/common/pom.xml b/tests/common/pom.xml index fb6e425c0e..cd07f52dbd 100644 --- a/tests/common/pom.xml +++ b/tests/common/pom.xml @@ -11,7 +11,7 @@ com.gentics.mesh mesh-tests - 1.10.28-SNAPSHOT + 1.10.28 diff --git a/tests/context-api/pom.xml b/tests/context-api/pom.xml index 152054d59a..9300d6fa15 100644 --- a/tests/context-api/pom.xml +++ b/tests/context-api/pom.xml @@ -5,7 +5,7 @@ com.gentics.mesh mesh-tests - 1.10.28-SNAPSHOT + 1.10.28 mesh-tests-context-api Mesh - Tests context API diff --git a/tests/context-orientdb/pom.xml b/tests/context-orientdb/pom.xml index 505cba7fe4..93d63194f8 100644 --- a/tests/context-orientdb/pom.xml +++ b/tests/context-orientdb/pom.xml @@ -3,7 +3,7 @@ com.gentics.mesh mesh-tests - 1.10.28-SNAPSHOT + 1.10.28 mesh-tests-context-orientdb Mesh - Tests context - OrientDB diff --git a/tests/orientdb-runner/pom.xml b/tests/orientdb-runner/pom.xml index 4e19508970..74576ca739 100644 --- a/tests/orientdb-runner/pom.xml +++ b/tests/orientdb-runner/pom.xml @@ -5,7 +5,7 @@ com.gentics.mesh mesh-tests - 1.10.28-SNAPSHOT + 1.10.28 mesh-orientdb-tests-runner Mesh - Tests Runner - OrientDB diff --git a/tests/pom.xml b/tests/pom.xml index 1bf1ad7440..273d218182 100644 --- a/tests/pom.xml +++ b/tests/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh - 1.10.28-SNAPSHOT + 1.10.28 diff --git a/tests/tests-admin-gui/pom.xml b/tests/tests-admin-gui/pom.xml index 18781a32f3..5009242a7f 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.28-SNAPSHOT + 1.10.28 tests-mesh-admin-gui Mesh Admin GUI - Shared tests diff --git a/tests/tests-api/pom.xml b/tests/tests-api/pom.xml index 13e2f61ae3..85efbb7557 100644 --- a/tests/tests-api/pom.xml +++ b/tests/tests-api/pom.xml @@ -8,7 +8,7 @@ com.gentics.mesh mesh-tests - 1.10.28-SNAPSHOT + 1.10.28 diff --git a/tests/tests-changelog-system/pom.xml b/tests/tests-changelog-system/pom.xml index b82e578309..0866356547 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.28-SNAPSHOT + 1.10.28 tests-mesh-changelog-system Mesh Changelog System - Shared tests diff --git a/tests/tests-common/pom.xml b/tests/tests-common/pom.xml index fb01370b02..ad160cfec4 100644 --- a/tests/tests-common/pom.xml +++ b/tests/tests-common/pom.xml @@ -8,7 +8,7 @@ com.gentics.mesh mesh-tests - 1.10.28-SNAPSHOT + 1.10.28 diff --git a/tests/tests-core/pom.xml b/tests/tests-core/pom.xml index 513faa6ea6..5d8f83e069 100644 --- a/tests/tests-core/pom.xml +++ b/tests/tests-core/pom.xml @@ -8,7 +8,7 @@ com.gentics.mesh mesh-tests - 1.10.28-SNAPSHOT + 1.10.28 diff --git a/tests/tests-distributed-coordinator/pom.xml b/tests/tests-distributed-coordinator/pom.xml index 9b68c728e1..1f2a164476 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.28-SNAPSHOT + 1.10.28 tests-mesh-distributed-coordinator Mesh Distributed Coordinator - Shared tests diff --git a/tests/tests-distributed/pom.xml b/tests/tests-distributed/pom.xml index 5452e9732a..9986095a60 100644 --- a/tests/tests-distributed/pom.xml +++ b/tests/tests-distributed/pom.xml @@ -11,7 +11,7 @@ com.gentics.mesh mesh-tests - 1.10.28-SNAPSHOT + 1.10.28 diff --git a/tests/tests-elasticsearch/pom.xml b/tests/tests-elasticsearch/pom.xml index 7d1b925052..e6e18ad7bf 100644 --- a/tests/tests-elasticsearch/pom.xml +++ b/tests/tests-elasticsearch/pom.xml @@ -5,7 +5,7 @@ com.gentics.mesh mesh-tests - 1.10.28-SNAPSHOT + 1.10.28 tests-mesh-elasticsearch Mesh Elasticsearch - Shared tests diff --git a/tests/tests-plugin-api/pom.xml b/tests/tests-plugin-api/pom.xml index 720b8e0896..4a9d7c1047 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.28-SNAPSHOT + 1.10.28 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 74a06f6963..e9120f4b08 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.28-SNAPSHOT + 1.10.28 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 1efe6621bc..06c70d630d 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.28-SNAPSHOT + 1.10.28 tests-mesh-rest-model Mesh REST Model - Shared tests diff --git a/tests/tests-server/pom.xml b/tests/tests-server/pom.xml index 5e45f68b3e..8b98ac457e 100644 --- a/tests/tests-server/pom.xml +++ b/tests/tests-server/pom.xml @@ -5,7 +5,7 @@ com.gentics.mesh mesh-tests - 1.10.28-SNAPSHOT + 1.10.28 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 fd242c1af0..11af1cfe4c 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.28-SNAPSHOT + 1.10.28 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 525203e7d3..e4a60a95a3 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.28-SNAPSHOT + 1.10.28 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 a9d4d32a4b..8fa34fd5fa 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.28-SNAPSHOT + 1.10.28 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 8e751a6afc..0b2aec9beb 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.28-SNAPSHOT + 1.10.28 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 7906f61259..b6cf0baaa6 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.28-SNAPSHOT + 1.10.28 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 50d9a2f26a..b290ca8a0c 100644 --- a/verticles/admin-gui/pom.xml +++ b/verticles/admin-gui/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh-verticles - 1.10.28-SNAPSHOT + 1.10.28 diff --git a/verticles/graphql/pom.xml b/verticles/graphql/pom.xml index 495293a222..40c2fc724e 100644 --- a/verticles/graphql/pom.xml +++ b/verticles/graphql/pom.xml @@ -9,7 +9,7 @@ com.gentics.mesh mesh-verticles - 1.10.28-SNAPSHOT + 1.10.28 diff --git a/verticles/pom.xml b/verticles/pom.xml index 51b31e1639..c7ea2fa1db 100644 --- a/verticles/pom.xml +++ b/verticles/pom.xml @@ -9,7 +9,7 @@ com.gentics.mesh mesh - 1.10.28-SNAPSHOT + 1.10.28 diff --git a/verticles/rest/pom.xml b/verticles/rest/pom.xml index 2afdc45f43..67405c7f26 100644 --- a/verticles/rest/pom.xml +++ b/verticles/rest/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh-verticles - 1.10.28-SNAPSHOT + 1.10.28 From a7ed904b315f095e6fd6a7c5732ad05c8d4a973c Mon Sep 17 00:00:00 2001 From: 1000 user <1000@a66feb33f7bb> Date: Tue, 27 Feb 2024 15:01:02 +0100 Subject: [PATCH 5/5] [Jenkins | hotfix-1.10.x] Prepare for the next development iteration (1.10.29-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 | 614 +++++++++--------- .../api/v2/microschemas/request-schema.json | 20 +- .../diff/request-schema.json | 20 +- .../{microschemaUuid}/request-schema.json | 20 +- .../api/v2/projects/request-schema.json | 6 +- .../api/v2/schemas/request-schema.json | 20 +- .../{schemaUuid}/diff/request-schema.json | 20 +- .../schemas/{schemaUuid}/request-schema.json | 20 +- .../validateMicroschema/request-schema.json | 20 +- .../validateSchema/request-schema.json | 20 +- .../v2/{project}/nodes/request-schema.json | 6 +- .../api/response/api/v2/200/example.json | 2 +- .../v2/microschemas/200/request-schema.json | 20 +- .../v2/microschemas/201/request-schema.json | 20 +- .../api/v2/projects/200/request-schema.json | 6 +- .../api/v2/projects/201/request-schema.json | 6 +- .../{projectUuid}/200/request-schema.json | 6 +- .../api/v2/schemas/200/request-schema.json | 20 +- .../api/v2/schemas/201/request-schema.json | 20 +- .../{schemaUuid}/200/request-schema.json | 20 +- .../microschemas/200/request-schema.json | 20 +- .../v2/search/nodes/200/request-schema.json | 6 +- .../search/projects/200/request-schema.json | 6 +- .../v2/search/schemas/200/request-schema.json | 20 +- .../api/v2/{project}/200/request-schema.json | 6 +- .../microschemas/200/request-schema.json | 20 +- .../{microschemaUuid}/200/request-schema.json | 20 +- .../navroot/{path}/200/request-schema.json | 6 +- .../{project}/nodes/200/request-schema.json | 6 +- .../{project}/nodes/201/request-schema.json | 6 +- .../nodes/{nodeUuid}/200/request-schema.json | 6 +- .../{fieldName}/200/request-schema.json | 6 +- .../{fieldName}/200/request-schema.json | 6 +- .../children/200/request-schema.json | 6 +- .../navigation/200/request-schema.json | 6 +- .../{fieldName}/200/request-schema.json | 6 +- .../parseMetadata/200/request-schema.json | 6 +- .../tags/{tagUuid}/200/request-schema.json | 6 +- .../{project}/schemas/200/request-schema.json | 20 +- .../{schemaUuid}/200/request-schema.json | 20 +- .../search/nodes/200/request-schema.json | 6 +- .../{tagUuid}/nodes/200/request-schema.json | 6 +- .../webroot/{path}/200/request-schema.json | 6 +- .../webroot/{path}/201/request-schema.json | 6 +- .../tables/mesh-db-revs.adoc-include | 4 +- 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 +- 115 files changed, 650 insertions(+), 650 deletions(-) diff --git a/api/pom.xml b/api/pom.xml index 9d43dd8638..9b1e72cf84 100644 --- a/api/pom.xml +++ b/api/pom.xml @@ -11,7 +11,7 @@ com.gentics.mesh mesh - 1.10.28 + 1.10.29-SNAPSHOT diff --git a/bom/pom.xml b/bom/pom.xml index 8295bd1b91..9374c1dcb4 100644 --- a/bom/pom.xml +++ b/bom/pom.xml @@ -11,7 +11,7 @@ com.gentics.mesh mesh - 1.10.28 + 1.10.29-SNAPSHOT diff --git a/changelog-system/pom.xml b/changelog-system/pom.xml index 1e8a0b4dbf..9bb78612c8 100644 --- a/changelog-system/pom.xml +++ b/changelog-system/pom.xml @@ -12,7 +12,7 @@ com.gentics.mesh mesh - 1.10.28 + 1.10.29-SNAPSHOT diff --git a/common-api/pom.xml b/common-api/pom.xml index 3a22fde0a4..a233edd2c6 100644 --- a/common-api/pom.xml +++ b/common-api/pom.xml @@ -11,7 +11,7 @@ com.gentics.mesh mesh - 1.10.28 + 1.10.29-SNAPSHOT diff --git a/common/pom.xml b/common/pom.xml index c8669cb400..c92953d1c3 100644 --- a/common/pom.xml +++ b/common/pom.xml @@ -11,7 +11,7 @@ com.gentics.mesh mesh - 1.10.28 + 1.10.29-SNAPSHOT diff --git a/core/pom.xml b/core/pom.xml index b9f8cf7a0a..d8598b92e8 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -11,7 +11,7 @@ com.gentics.mesh mesh - 1.10.28 + 1.10.29-SNAPSHOT diff --git a/databases/orientdb/pom.xml b/databases/orientdb/pom.xml index 3f29eef8dc..4e7ec89d3c 100644 --- a/databases/orientdb/pom.xml +++ b/databases/orientdb/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh-databases - 1.10.28 + 1.10.29-SNAPSHOT diff --git a/databases/pom.xml b/databases/pom.xml index 7756a46124..4cbabdd883 100644 --- a/databases/pom.xml +++ b/databases/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh - 1.10.28 + 1.10.29-SNAPSHOT diff --git a/demo/common/pom.xml b/demo/common/pom.xml index bb6cfb9b4c..d7b7504639 100644 --- a/demo/common/pom.xml +++ b/demo/common/pom.xml @@ -11,7 +11,7 @@ com.gentics.mesh mesh-demos - 1.10.28 + 1.10.29-SNAPSHOT diff --git a/demo/default/pom.xml b/demo/default/pom.xml index e16848246b..c28a6d0c17 100644 --- a/demo/default/pom.xml +++ b/demo/default/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh-demos - 1.10.28 + 1.10.29-SNAPSHOT diff --git a/demo/pom.xml b/demo/pom.xml index 13f4096bbe..06986d9934 100644 --- a/demo/pom.xml +++ b/demo/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh - 1.10.28 + 1.10.29-SNAPSHOT diff --git a/distributed-coordinator/pom.xml b/distributed-coordinator/pom.xml index 6fca981a9f..d7e501f100 100644 --- a/distributed-coordinator/pom.xml +++ b/distributed-coordinator/pom.xml @@ -7,7 +7,7 @@ com.gentics.mesh mesh - 1.10.28 + 1.10.29-SNAPSHOT mesh-distributed-coordinator diff --git a/distributed/pom.xml b/distributed/pom.xml index 5bfe18b44c..21911b4e15 100644 --- a/distributed/pom.xml +++ b/distributed/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh - 1.10.28 + 1.10.29-SNAPSHOT diff --git a/doc/pom.xml b/doc/pom.xml index a4bab0f57b..11d9a37b98 100644 --- a/doc/pom.xml +++ b/doc/pom.xml @@ -6,7 +6,7 @@ com.gentics.mesh mesh - 1.10.28 + 1.10.29-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 49777b1525..a81889d09d 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.27" +version: "1.10.28" 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" : "66c798ed455c456c8fb855b416a9f94d" + "uuid" : "167c4c91ec364655af3497a6d8f4ec87" } ] } responses: @@ -1328,7 +1328,7 @@ mediaType: application/json "exclusive" : true, "ignore" : [ { "name" : "admin", - "uuid" : "c7f28147c3c24df7941a9605102e3279" + "uuid" : "a7349cf5394c46589df91fca0ee26395" } ] } responses: @@ -1854,7 +1854,7 @@ mediaType: application/json "exclusive" : true, "ignore" : [ { "name" : "admin", - "uuid" : "42e50082378d4d78ba5f626c0b593426" + "uuid" : "86f06e1bd7434e439156e8b85bf066ed" } ] } responses: @@ -2787,7 +2787,7 @@ mediaType: application/json "exclusive" : true, "ignore" : [ { "name" : "admin", - "uuid" : "1d8cf8d5dd4d4e0688cc18e47b1b9b19" + "uuid" : "5b699fba478c452b96329e6a4758ddc8" } ] } responses: @@ -3746,7 +3746,7 @@ mediaType: application/json "exclusive" : true, "ignore" : [ { "name" : "admin", - "uuid" : "1ebea9fce77c42d797460dac20450e7f" + "uuid" : "bda6b9b8a70d48ed899d87627ee90782" } ] } responses: @@ -4383,7 +4383,7 @@ mediaType: application/json "exclusive" : true, "ignore" : [ { "name" : "admin", - "uuid" : "1729491943f64b2e8b810286350ba851" + "uuid" : "3945593483534a53a69b8c2c770ba294" } ] } responses: @@ -7459,7 +7459,7 @@ mediaType: application/json | vertxVersion | false | string | Used Vert.x version. | example: | { - "meshVersion" : "1.10.27", + "meshVersion" : "1.10.28", "meshNodeName" : "Reminiscent Tirtouga", "databaseVendor" : "orientdb", "databaseVersion" : "2.2.16", @@ -9896,7 +9896,7 @@ mediaType: application/json "exclusive" : true, "ignore" : [ { "name" : "admin", - "uuid" : "0dbd3611df68491baa4cc0f39e9c249e" + "uuid" : "785e5a4e881944b3a7fa43c68f64eef5" } ] } responses: @@ -11341,7 +11341,7 @@ mediaType: application/json "exclusive" : true, "ignore" : [ { "name" : "admin", - "uuid" : "24777bc00eba45a7925a22dedb453fcf" + "uuid" : "6ca2df51a4be48b0bb17e622b22ac3be" } ] } responses: @@ -12130,7 +12130,7 @@ mediaType: application/json "exclusive" : true, "ignore" : [ { "name" : "admin", - "uuid" : "a4c0d5bdf5d64d13adc3783a796c5d44" + "uuid" : "05d356f8b32b466d98d2c2de0da2f01c" } ] } responses: @@ -13801,7 +13801,7 @@ mediaType: application/json "exclusive" : true, "ignore" : [ { "name" : "admin", - "uuid" : "a857eccacbfa4e9fa09bba6599c39789" + "uuid" : "ff4c108e2c02406d992c017ad3c89912" } ] } responses: diff --git a/doc/src/main/docs/generated/api/api.raml b/doc/src/main/docs/generated/api/api.raml index b87bd0ca02..09db287a14 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.27" +version: "1.10.28" 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" : "a17cfe1176a64d9b92cfffbaa024ff4f" + "uuid" : "b9a43be9d6214453a9c7f3193b02b94b" } ] } responses: @@ -3035,7 +3035,7 @@ mediaType: application/json "exclusive" : true, "ignore" : [ { "name" : "admin", - "uuid" : "dbf2735706cb4d8ea03c7ef4e08345ea" + "uuid" : "94d2ef31c6ec4f7da0bbb0d3e794f09c" } ] } responses: @@ -4328,7 +4328,7 @@ mediaType: application/json "exclusive" : true, "ignore" : [ { "name" : "admin", - "uuid" : "a3450ab95c2643928eef114af9605579" + "uuid" : "3220015dbba1409699727d580b8b50bc" } ] } responses: @@ -5577,14 +5577,14 @@ mediaType: application/json "versionUuid" : { "type" : "string" }, - "uuid" : { - "type" : "string" - }, "name" : { "type" : "string" }, "set" : { "type" : "boolean" + }, + "uuid" : { + "type" : "string" } } }, @@ -5704,14 +5704,14 @@ mediaType: application/json "versionUuid" : { "type" : "string" }, - "uuid" : { - "type" : "string" - }, "name" : { "type" : "string" }, "set" : { "type" : "boolean" + }, + "uuid" : { + "type" : "string" } } } @@ -5912,14 +5912,14 @@ mediaType: application/json "versionUuid" : { "type" : "string" }, - "uuid" : { - "type" : "string" - }, "name" : { "type" : "string" }, "set" : { "type" : "boolean" + }, + "uuid" : { + "type" : "string" } } } @@ -6173,14 +6173,14 @@ mediaType: application/json "versionUuid" : { "type" : "string" }, - "uuid" : { - "type" : "string" - }, "name" : { "type" : "string" }, "set" : { "type" : "boolean" + }, + "uuid" : { + "type" : "string" } } } @@ -6368,14 +6368,14 @@ mediaType: application/json "versionUuid" : { "type" : "string" }, - "uuid" : { - "type" : "string" - }, "name" : { "type" : "string" }, "set" : { "type" : "boolean" + }, + "uuid" : { + "type" : "string" } } } @@ -6702,7 +6702,7 @@ mediaType: application/json "exclusive" : true, "ignore" : [ { "name" : "admin", - "uuid" : "58e3a8cdffe44c9f9c313b52620ee759" + "uuid" : "235355375492449c95281c858efd140d" } ] } responses: @@ -7155,6 +7155,16 @@ mediaType: application/json "type" : "object", "id" : "urn:jsonschema:com:gentics:mesh:core:rest:schema:FieldSchema", "properties" : { + "name" : { + "type" : "string", + "required" : true, + "description" : "Name of the field." + }, + "type" : { + "type" : "string", + "required" : true, + "description" : "Type of the field." + }, "required" : { "type" : "boolean" }, @@ -7165,16 +7175,6 @@ mediaType: application/json "elasticsearch" : { "type" : "object", "$ref" : "urn:jsonschema:io:vertx:core:json:JsonObject" - }, - "name" : { - "type" : "string", - "required" : true, - "description" : "Name of the field." - }, - "type" : { - "type" : "string", - "required" : true, - "description" : "Type of the field." } } } @@ -7439,6 +7439,16 @@ mediaType: application/json "type" : "object", "id" : "urn:jsonschema:com:gentics:mesh:core:rest:schema:FieldSchema", "properties" : { + "name" : { + "type" : "string", + "required" : true, + "description" : "Name of the field." + }, + "type" : { + "type" : "string", + "required" : true, + "description" : "Type of the field." + }, "required" : { "type" : "boolean" }, @@ -7449,16 +7459,6 @@ mediaType: application/json "elasticsearch" : { "type" : "object", "$ref" : "urn:jsonschema:io:vertx:core:json:JsonObject" - }, - "name" : { - "type" : "string", - "required" : true, - "description" : "Name of the field." - }, - "type" : { - "type" : "string", - "required" : true, - "description" : "Type of the field." } } } @@ -7593,6 +7593,16 @@ mediaType: application/json "type" : "object", "id" : "urn:jsonschema:com:gentics:mesh:core:rest:schema:FieldSchema", "properties" : { + "name" : { + "type" : "string", + "required" : true, + "description" : "Name of the field." + }, + "type" : { + "type" : "string", + "required" : true, + "description" : "Type of the field." + }, "required" : { "type" : "boolean" }, @@ -7603,16 +7613,6 @@ mediaType: application/json "elasticsearch" : { "type" : "object", "$ref" : "urn:jsonschema:io:vertx:core:json:JsonObject" - }, - "name" : { - "type" : "string", - "required" : true, - "description" : "Name of the field." - }, - "type" : { - "type" : "string", - "required" : true, - "description" : "Type of the field." } } } @@ -7869,6 +7869,16 @@ mediaType: application/json "type" : "object", "id" : "urn:jsonschema:com:gentics:mesh:core:rest:schema:FieldSchema", "properties" : { + "name" : { + "type" : "string", + "required" : true, + "description" : "Name of the field." + }, + "type" : { + "type" : "string", + "required" : true, + "description" : "Type of the field." + }, "required" : { "type" : "boolean" }, @@ -7879,16 +7889,6 @@ mediaType: application/json "elasticsearch" : { "type" : "object", "$ref" : "urn:jsonschema:io:vertx:core:json:JsonObject" - }, - "name" : { - "type" : "string", - "required" : true, - "description" : "Name of the field." - }, - "type" : { - "type" : "string", - "required" : true, - "description" : "Type of the field." } } } @@ -8082,6 +8082,16 @@ mediaType: application/json "type" : "object", "id" : "urn:jsonschema:com:gentics:mesh:core:rest:schema:FieldSchema", "properties" : { + "name" : { + "type" : "string", + "required" : true, + "description" : "Name of the field." + }, + "type" : { + "type" : "string", + "required" : true, + "description" : "Type of the field." + }, "required" : { "type" : "boolean" }, @@ -8092,16 +8102,6 @@ mediaType: application/json "elasticsearch" : { "type" : "object", "$ref" : "urn:jsonschema:io:vertx:core:json:JsonObject" - }, - "name" : { - "type" : "string", - "required" : true, - "description" : "Name of the field." - }, - "type" : { - "type" : "string", - "required" : true, - "description" : "Type of the field." } } } @@ -8229,6 +8229,16 @@ mediaType: application/json "type" : "object", "id" : "urn:jsonschema:com:gentics:mesh:core:rest:schema:FieldSchema", "properties" : { + "name" : { + "type" : "string", + "required" : true, + "description" : "Name of the field." + }, + "type" : { + "type" : "string", + "required" : true, + "description" : "Type of the field." + }, "required" : { "type" : "boolean" }, @@ -8239,16 +8249,6 @@ mediaType: application/json "elasticsearch" : { "type" : "object", "$ref" : "urn:jsonschema:io:vertx:core:json:JsonObject" - }, - "name" : { - "type" : "string", - "required" : true, - "description" : "Name of the field." - }, - "type" : { - "type" : "string", - "required" : true, - "description" : "Type of the field." } } } @@ -8594,6 +8594,16 @@ mediaType: application/json "type" : "object", "id" : "urn:jsonschema:com:gentics:mesh:core:rest:schema:FieldSchema", "properties" : { + "name" : { + "type" : "string", + "required" : true, + "description" : "Name of the field." + }, + "type" : { + "type" : "string", + "required" : true, + "description" : "Type of the field." + }, "required" : { "type" : "boolean" }, @@ -8604,16 +8614,6 @@ mediaType: application/json "elasticsearch" : { "type" : "object", "$ref" : "urn:jsonschema:io:vertx:core:json:JsonObject" - }, - "name" : { - "type" : "string", - "required" : true, - "description" : "Name of the field." - }, - "type" : { - "type" : "string", - "required" : true, - "description" : "Type of the field." } } } @@ -9018,7 +9018,7 @@ mediaType: application/json "exclusive" : true, "ignore" : [ { "name" : "admin", - "uuid" : "6b2aea62aee1409eb63461abda3519e2" + "uuid" : "ae1ab3f082654353a4e141796e220c7e" } ] } responses: @@ -9366,6 +9366,16 @@ mediaType: application/json "type" : "object", "id" : "urn:jsonschema:com:gentics:mesh:core:rest:schema:FieldSchema", "properties" : { + "name" : { + "type" : "string", + "required" : true, + "description" : "Name of the field." + }, + "type" : { + "type" : "string", + "required" : true, + "description" : "Type of the field." + }, "required" : { "type" : "boolean" }, @@ -9376,16 +9386,6 @@ mediaType: application/json "elasticsearch" : { "type" : "object", "$ref" : "urn:jsonschema:io:vertx:core:json:JsonObject" - }, - "name" : { - "type" : "string", - "required" : true, - "description" : "Name of the field." - }, - "type" : { - "type" : "string", - "required" : true, - "description" : "Type of the field." } } } @@ -9498,6 +9498,16 @@ mediaType: application/json "type" : "object", "id" : "urn:jsonschema:com:gentics:mesh:core:rest:schema:FieldSchema", "properties" : { + "name" : { + "type" : "string", + "required" : true, + "description" : "Name of the field." + }, + "type" : { + "type" : "string", + "required" : true, + "description" : "Type of the field." + }, "required" : { "type" : "boolean" }, @@ -9508,16 +9518,6 @@ mediaType: application/json "elasticsearch" : { "type" : "object", "$ref" : "urn:jsonschema:io:vertx:core:json:JsonObject" - }, - "name" : { - "type" : "string", - "required" : true, - "description" : "Name of the field." - }, - "type" : { - "type" : "string", - "required" : true, - "description" : "Type of the field." } } } @@ -9704,6 +9704,16 @@ mediaType: application/json "type" : "object", "id" : "urn:jsonschema:com:gentics:mesh:core:rest:schema:FieldSchema", "properties" : { + "name" : { + "type" : "string", + "required" : true, + "description" : "Name of the field." + }, + "type" : { + "type" : "string", + "required" : true, + "description" : "Type of the field." + }, "required" : { "type" : "boolean" }, @@ -9714,16 +9724,6 @@ mediaType: application/json "elasticsearch" : { "type" : "object", "$ref" : "urn:jsonschema:io:vertx:core:json:JsonObject" - }, - "name" : { - "type" : "string", - "required" : true, - "description" : "Name of the field." - }, - "type" : { - "type" : "string", - "required" : true, - "description" : "Type of the field." } } } @@ -9974,6 +9974,16 @@ mediaType: application/json "type" : "object", "id" : "urn:jsonschema:com:gentics:mesh:core:rest:schema:FieldSchema", "properties" : { + "name" : { + "type" : "string", + "required" : true, + "description" : "Name of the field." + }, + "type" : { + "type" : "string", + "required" : true, + "description" : "Type of the field." + }, "required" : { "type" : "boolean" }, @@ -9984,16 +9994,6 @@ mediaType: application/json "elasticsearch" : { "type" : "object", "$ref" : "urn:jsonschema:io:vertx:core:json:JsonObject" - }, - "name" : { - "type" : "string", - "required" : true, - "description" : "Name of the field." - }, - "type" : { - "type" : "string", - "required" : true, - "description" : "Type of the field." } } } @@ -10111,6 +10111,16 @@ mediaType: application/json "type" : "object", "id" : "urn:jsonschema:com:gentics:mesh:core:rest:schema:FieldSchema", "properties" : { + "name" : { + "type" : "string", + "required" : true, + "description" : "Name of the field." + }, + "type" : { + "type" : "string", + "required" : true, + "description" : "Type of the field." + }, "required" : { "type" : "boolean" }, @@ -10121,16 +10131,6 @@ mediaType: application/json "elasticsearch" : { "type" : "object", "$ref" : "urn:jsonschema:io:vertx:core:json:JsonObject" - }, - "name" : { - "type" : "string", - "required" : true, - "description" : "Name of the field." - }, - "type" : { - "type" : "string", - "required" : true, - "description" : "Type of the field." } } } @@ -10345,6 +10345,16 @@ mediaType: application/json "type" : "object", "id" : "urn:jsonschema:com:gentics:mesh:core:rest:schema:FieldSchema", "properties" : { + "name" : { + "type" : "string", + "required" : true, + "description" : "Name of the field." + }, + "type" : { + "type" : "string", + "required" : true, + "description" : "Type of the field." + }, "required" : { "type" : "boolean" }, @@ -10355,16 +10365,6 @@ mediaType: application/json "elasticsearch" : { "type" : "object", "$ref" : "urn:jsonschema:io:vertx:core:json:JsonObject" - }, - "name" : { - "type" : "string", - "required" : true, - "description" : "Name of the field." - }, - "type" : { - "type" : "string", - "required" : true, - "description" : "Type of the field." } } } @@ -10683,7 +10683,7 @@ mediaType: application/json "exclusive" : true, "ignore" : [ { "name" : "admin", - "uuid" : "0862de147e7744dcac143eef334d5db2" + "uuid" : "dca927cf557f49678a45111e11cc3a62" } ] } responses: @@ -13176,6 +13176,16 @@ mediaType: application/json "type" : "object", "id" : "urn:jsonschema:com:gentics:mesh:core:rest:schema:FieldSchema", "properties" : { + "name" : { + "type" : "string", + "required" : true, + "description" : "Name of the field." + }, + "type" : { + "type" : "string", + "required" : true, + "description" : "Type of the field." + }, "required" : { "type" : "boolean" }, @@ -13186,16 +13196,6 @@ mediaType: application/json "elasticsearch" : { "type" : "object", "$ref" : "urn:jsonschema:io:vertx:core:json:JsonObject" - }, - "name" : { - "type" : "string", - "required" : true, - "description" : "Name of the field." - }, - "type" : { - "type" : "string", - "required" : true, - "description" : "Type of the field." } } } @@ -13492,14 +13492,14 @@ mediaType: application/json "versionUuid" : { "type" : "string" }, - "uuid" : { - "type" : "string" - }, "name" : { "type" : "string" }, "set" : { "type" : "boolean" + }, + "uuid" : { + "type" : "string" } } } @@ -14032,14 +14032,14 @@ mediaType: application/json "versionUuid" : { "type" : "string" }, - "uuid" : { - "type" : "string" - }, "name" : { "type" : "string" }, "set" : { "type" : "boolean" + }, + "uuid" : { + "type" : "string" } } } @@ -14572,6 +14572,16 @@ mediaType: application/json "type" : "object", "id" : "urn:jsonschema:com:gentics:mesh:core:rest:schema:FieldSchema", "properties" : { + "name" : { + "type" : "string", + "required" : true, + "description" : "Name of the field." + }, + "type" : { + "type" : "string", + "required" : true, + "description" : "Type of the field." + }, "required" : { "type" : "boolean" }, @@ -14582,16 +14592,6 @@ mediaType: application/json "elasticsearch" : { "type" : "object", "$ref" : "urn:jsonschema:io:vertx:core:json:JsonObject" - }, - "name" : { - "type" : "string", - "required" : true, - "description" : "Name of the field." - }, - "type" : { - "type" : "string", - "required" : true, - "description" : "Type of the field." } } } @@ -16024,6 +16024,16 @@ mediaType: application/json "type" : "object", "id" : "urn:jsonschema:com:gentics:mesh:core:rest:schema:FieldSchema", "properties" : { + "name" : { + "type" : "string", + "required" : true, + "description" : "Name of the field." + }, + "type" : { + "type" : "string", + "required" : true, + "description" : "Type of the field." + }, "required" : { "type" : "boolean" }, @@ -16034,16 +16044,6 @@ mediaType: application/json "elasticsearch" : { "type" : "object", "$ref" : "urn:jsonschema:io:vertx:core:json:JsonObject" - }, - "name" : { - "type" : "string", - "required" : true, - "description" : "Name of the field." - }, - "type" : { - "type" : "string", - "required" : true, - "description" : "Type of the field." } } } @@ -16416,6 +16416,16 @@ mediaType: application/json "type" : "object", "id" : "urn:jsonschema:com:gentics:mesh:core:rest:schema:FieldSchema", "properties" : { + "name" : { + "type" : "string", + "required" : true, + "description" : "Name of the field." + }, + "type" : { + "type" : "string", + "required" : true, + "description" : "Type of the field." + }, "required" : { "type" : "boolean" }, @@ -16426,16 +16436,6 @@ mediaType: application/json "elasticsearch" : { "type" : "object", "$ref" : "urn:jsonschema:io:vertx:core:json:JsonObject" - }, - "name" : { - "type" : "string", - "required" : true, - "description" : "Name of the field." - }, - "type" : { - "type" : "string", - "required" : true, - "description" : "Type of the field." } } } @@ -17078,7 +17078,7 @@ mediaType: application/json } example: | { - "meshVersion" : "1.10.27", + "meshVersion" : "1.10.28", "meshNodeName" : "Reminiscent Tirtouga", "databaseVendor" : "orientdb", "databaseVersion" : "2.2.16", @@ -17196,14 +17196,14 @@ mediaType: application/json "versionUuid" : { "type" : "string" }, - "uuid" : { - "type" : "string" - }, "name" : { "type" : "string" }, "set" : { "type" : "boolean" + }, + "uuid" : { + "type" : "string" } } } @@ -17328,14 +17328,14 @@ mediaType: application/json "versionUuid" : { "type" : "string" }, - "uuid" : { - "type" : "string" - }, "name" : { "type" : "string" }, "set" : { "type" : "boolean" + }, + "uuid" : { + "type" : "string" } } } @@ -17616,14 +17616,14 @@ mediaType: application/json "versionUuid" : { "type" : "string" }, - "uuid" : { - "type" : "string" - }, "name" : { "type" : "string" }, "set" : { "type" : "boolean" + }, + "uuid" : { + "type" : "string" } } } @@ -18125,14 +18125,14 @@ mediaType: application/json "versionUuid" : { "type" : "string" }, - "uuid" : { - "type" : "string" - }, "name" : { "type" : "string" }, "set" : { "type" : "boolean" + }, + "uuid" : { + "type" : "string" } } } @@ -18757,14 +18757,14 @@ mediaType: application/json "versionUuid" : { "type" : "string" }, - "uuid" : { - "type" : "string" - }, "name" : { "type" : "string" }, "set" : { "type" : "boolean" + }, + "uuid" : { + "type" : "string" } } } @@ -19432,14 +19432,14 @@ mediaType: application/json "versionUuid" : { "type" : "string" }, - "uuid" : { - "type" : "string" - }, "name" : { "type" : "string" }, "set" : { "type" : "boolean" + }, + "uuid" : { + "type" : "string" } } } @@ -19937,14 +19937,14 @@ mediaType: application/json "versionUuid" : { "type" : "string" }, - "uuid" : { - "type" : "string" - }, "name" : { "type" : "string" }, "set" : { "type" : "boolean" + }, + "uuid" : { + "type" : "string" } } } @@ -20586,14 +20586,14 @@ mediaType: application/json "versionUuid" : { "type" : "string" }, - "uuid" : { - "type" : "string" - }, "name" : { "type" : "string" }, "set" : { "type" : "boolean" + }, + "uuid" : { + "type" : "string" } } } @@ -21128,14 +21128,14 @@ mediaType: application/json "versionUuid" : { "type" : "string" }, - "uuid" : { - "type" : "string" - }, "name" : { "type" : "string" }, "set" : { "type" : "boolean" + }, + "uuid" : { + "type" : "string" } } } @@ -22097,14 +22097,14 @@ mediaType: application/json "versionUuid" : { "type" : "string" }, - "uuid" : { - "type" : "string" - }, "name" : { "type" : "string" }, "set" : { "type" : "boolean" + }, + "uuid" : { + "type" : "string" } } } @@ -22831,7 +22831,7 @@ mediaType: application/json "exclusive" : true, "ignore" : [ { "name" : "admin", - "uuid" : "0ea608a54494432082823887d3e7d669" + "uuid" : "a59d973f5bbf42ab9b25ed9a46796f5a" } ] } responses: @@ -23364,14 +23364,14 @@ mediaType: application/json "versionUuid" : { "type" : "string" }, - "uuid" : { - "type" : "string" - }, "name" : { "type" : "string" }, "set" : { "type" : "boolean" + }, + "uuid" : { + "type" : "string" } } } @@ -23874,14 +23874,14 @@ mediaType: application/json "versionUuid" : { "type" : "string" }, - "uuid" : { - "type" : "string" - }, "name" : { "type" : "string" }, "set" : { "type" : "boolean" + }, + "uuid" : { + "type" : "string" } } } @@ -24963,14 +24963,14 @@ mediaType: application/json "versionUuid" : { "type" : "string" }, - "uuid" : { - "type" : "string" - }, "name" : { "type" : "string" }, "set" : { "type" : "boolean" + }, + "uuid" : { + "type" : "string" } } } @@ -26211,7 +26211,7 @@ mediaType: application/json "exclusive" : true, "ignore" : [ { "name" : "admin", - "uuid" : "cdeaed6265504c35a0ac36829585ac8e" + "uuid" : "dacad38505524df8860a8a9bab85fb7e" } ] } responses: @@ -27443,14 +27443,14 @@ mediaType: application/json "versionUuid" : { "type" : "string" }, - "uuid" : { - "type" : "string" - }, "name" : { "type" : "string" }, "set" : { "type" : "boolean" + }, + "uuid" : { + "type" : "string" } } } @@ -28074,7 +28074,7 @@ mediaType: application/json "exclusive" : true, "ignore" : [ { "name" : "admin", - "uuid" : "0372811bf3f940a996a3237a86ee55df" + "uuid" : "aba04c5274f74c30963ed2e9f2dbf8bb" } ] } responses: @@ -28540,14 +28540,14 @@ mediaType: application/json "versionUuid" : { "type" : "string" }, - "uuid" : { - "type" : "string" - }, "name" : { "type" : "string" }, "set" : { "type" : "boolean" + }, + "uuid" : { + "type" : "string" } } } @@ -29445,14 +29445,14 @@ mediaType: application/json "versionUuid" : { "type" : "string" }, - "uuid" : { - "type" : "string" - }, "name" : { "type" : "string" }, "set" : { "type" : "boolean" + }, + "uuid" : { + "type" : "string" } } } @@ -29799,14 +29799,14 @@ mediaType: application/json "versionUuid" : { "type" : "string" }, - "uuid" : { - "type" : "string" - }, "name" : { "type" : "string" }, "set" : { "type" : "boolean" + }, + "uuid" : { + "type" : "string" } } } @@ -31882,7 +31882,7 @@ mediaType: application/json "exclusive" : true, "ignore" : [ { "name" : "admin", - "uuid" : "caf86bbc7bc44191914c93b6f97367db" + "uuid" : "c5ba8feaaefa40499c44b11816dfdc9b" } ] } responses: @@ -33394,14 +33394,14 @@ mediaType: application/json "versionUuid" : { "type" : "string" }, - "uuid" : { - "type" : "string" - }, "name" : { "type" : "string" }, "set" : { "type" : "boolean" + }, + "uuid" : { + "type" : "string" } } } @@ -34391,6 +34391,16 @@ mediaType: application/json "type" : "object", "id" : "urn:jsonschema:com:gentics:mesh:core:rest:schema:FieldSchema", "properties" : { + "name" : { + "type" : "string", + "required" : true, + "description" : "Name of the field." + }, + "type" : { + "type" : "string", + "required" : true, + "description" : "Type of the field." + }, "required" : { "type" : "boolean" }, @@ -34401,16 +34411,6 @@ mediaType: application/json "elasticsearch" : { "type" : "object", "$ref" : "urn:jsonschema:io:vertx:core:json:JsonObject" - }, - "name" : { - "type" : "string", - "required" : true, - "description" : "Name of the field." - }, - "type" : { - "type" : "string", - "required" : true, - "description" : "Type of the field." } } } @@ -34736,6 +34736,16 @@ mediaType: application/json "type" : "object", "id" : "urn:jsonschema:com:gentics:mesh:core:rest:schema:FieldSchema", "properties" : { + "name" : { + "type" : "string", + "required" : true, + "description" : "Name of the field." + }, + "type" : { + "type" : "string", + "required" : true, + "description" : "Type of the field." + }, "required" : { "type" : "boolean" }, @@ -34746,16 +34756,6 @@ mediaType: application/json "elasticsearch" : { "type" : "object", "$ref" : "urn:jsonschema:io:vertx:core:json:JsonObject" - }, - "name" : { - "type" : "string", - "required" : true, - "description" : "Name of the field." - }, - "type" : { - "type" : "string", - "required" : true, - "description" : "Type of the field." } } } @@ -34977,6 +34977,16 @@ mediaType: application/json "type" : "object", "id" : "urn:jsonschema:com:gentics:mesh:core:rest:schema:FieldSchema", "properties" : { + "name" : { + "type" : "string", + "required" : true, + "description" : "Name of the field." + }, + "type" : { + "type" : "string", + "required" : true, + "description" : "Type of the field." + }, "required" : { "type" : "boolean" }, @@ -34987,16 +34997,6 @@ mediaType: application/json "elasticsearch" : { "type" : "object", "$ref" : "urn:jsonschema:io:vertx:core:json:JsonObject" - }, - "name" : { - "type" : "string", - "required" : true, - "description" : "Name of the field." - }, - "type" : { - "type" : "string", - "required" : true, - "description" : "Type of the field." } } } @@ -35214,6 +35214,16 @@ mediaType: application/json "type" : "object", "id" : "urn:jsonschema:com:gentics:mesh:core:rest:schema:FieldSchema", "properties" : { + "name" : { + "type" : "string", + "required" : true, + "description" : "Name of the field." + }, + "type" : { + "type" : "string", + "required" : true, + "description" : "Type of the field." + }, "required" : { "type" : "boolean" }, @@ -35224,16 +35234,6 @@ mediaType: application/json "elasticsearch" : { "type" : "object", "$ref" : "urn:jsonschema:io:vertx:core:json:JsonObject" - }, - "name" : { - "type" : "string", - "required" : true, - "description" : "Name of the field." - }, - "type" : { - "type" : "string", - "required" : true, - "description" : "Type of the field." } } } @@ -35470,6 +35470,16 @@ mediaType: application/json "type" : "object", "id" : "urn:jsonschema:com:gentics:mesh:core:rest:schema:FieldSchema", "properties" : { + "name" : { + "type" : "string", + "required" : true, + "description" : "Name of the field." + }, + "type" : { + "type" : "string", + "required" : true, + "description" : "Type of the field." + }, "required" : { "type" : "boolean" }, @@ -35480,16 +35490,6 @@ mediaType: application/json "elasticsearch" : { "type" : "object", "$ref" : "urn:jsonschema:io:vertx:core:json:JsonObject" - }, - "name" : { - "type" : "string", - "required" : true, - "description" : "Name of the field." - }, - "type" : { - "type" : "string", - "required" : true, - "description" : "Type of the field." } } } diff --git a/doc/src/main/docs/generated/api/request/api/v2/microschemas/request-schema.json b/doc/src/main/docs/generated/api/request/api/v2/microschemas/request-schema.json index b75b7d3378..ff9f6966ef 100644 --- a/doc/src/main/docs/generated/api/request/api/v2/microschemas/request-schema.json +++ b/doc/src/main/docs/generated/api/request/api/v2/microschemas/request-schema.json @@ -35,6 +35,16 @@ "type" : "object", "id" : "urn:jsonschema:com:gentics:mesh:core:rest:schema:FieldSchema", "properties" : { + "name" : { + "type" : "string", + "required" : true, + "description" : "Name of the field." + }, + "type" : { + "type" : "string", + "required" : true, + "description" : "Type of the field." + }, "required" : { "type" : "boolean" }, @@ -45,16 +55,6 @@ "elasticsearch" : { "type" : "object", "$ref" : "urn:jsonschema:io:vertx:core:json:JsonObject" - }, - "name" : { - "type" : "string", - "required" : true, - "description" : "Name of the field." - }, - "type" : { - "type" : "string", - "required" : true, - "description" : "Type of the field." } } } diff --git a/doc/src/main/docs/generated/api/request/api/v2/microschemas/{microschemaUuid}/diff/request-schema.json b/doc/src/main/docs/generated/api/request/api/v2/microschemas/{microschemaUuid}/diff/request-schema.json index b75b7d3378..ff9f6966ef 100644 --- a/doc/src/main/docs/generated/api/request/api/v2/microschemas/{microschemaUuid}/diff/request-schema.json +++ b/doc/src/main/docs/generated/api/request/api/v2/microschemas/{microschemaUuid}/diff/request-schema.json @@ -35,6 +35,16 @@ "type" : "object", "id" : "urn:jsonschema:com:gentics:mesh:core:rest:schema:FieldSchema", "properties" : { + "name" : { + "type" : "string", + "required" : true, + "description" : "Name of the field." + }, + "type" : { + "type" : "string", + "required" : true, + "description" : "Type of the field." + }, "required" : { "type" : "boolean" }, @@ -45,16 +55,6 @@ "elasticsearch" : { "type" : "object", "$ref" : "urn:jsonschema:io:vertx:core:json:JsonObject" - }, - "name" : { - "type" : "string", - "required" : true, - "description" : "Name of the field." - }, - "type" : { - "type" : "string", - "required" : true, - "description" : "Type of the field." } } } diff --git a/doc/src/main/docs/generated/api/request/api/v2/microschemas/{microschemaUuid}/request-schema.json b/doc/src/main/docs/generated/api/request/api/v2/microschemas/{microschemaUuid}/request-schema.json index faffba3139..57971e286c 100644 --- a/doc/src/main/docs/generated/api/request/api/v2/microschemas/{microschemaUuid}/request-schema.json +++ b/doc/src/main/docs/generated/api/request/api/v2/microschemas/{microschemaUuid}/request-schema.json @@ -38,6 +38,16 @@ "type" : "object", "id" : "urn:jsonschema:com:gentics:mesh:core:rest:schema:FieldSchema", "properties" : { + "name" : { + "type" : "string", + "required" : true, + "description" : "Name of the field." + }, + "type" : { + "type" : "string", + "required" : true, + "description" : "Type of the field." + }, "required" : { "type" : "boolean" }, @@ -48,16 +58,6 @@ "elasticsearch" : { "type" : "object", "$ref" : "urn:jsonschema:io:vertx:core:json:JsonObject" - }, - "name" : { - "type" : "string", - "required" : true, - "description" : "Name of the field." - }, - "type" : { - "type" : "string", - "required" : true, - "description" : "Type of the field." } } } diff --git a/doc/src/main/docs/generated/api/request/api/v2/projects/request-schema.json b/doc/src/main/docs/generated/api/request/api/v2/projects/request-schema.json index 163157a91f..7579df41ee 100644 --- a/doc/src/main/docs/generated/api/request/api/v2/projects/request-schema.json +++ b/doc/src/main/docs/generated/api/request/api/v2/projects/request-schema.json @@ -19,14 +19,14 @@ "versionUuid" : { "type" : "string" }, - "uuid" : { - "type" : "string" - }, "name" : { "type" : "string" }, "set" : { "type" : "boolean" + }, + "uuid" : { + "type" : "string" } } }, diff --git a/doc/src/main/docs/generated/api/request/api/v2/schemas/request-schema.json b/doc/src/main/docs/generated/api/request/api/v2/schemas/request-schema.json index 89554355c6..d4abe0ca8c 100644 --- a/doc/src/main/docs/generated/api/request/api/v2/schemas/request-schema.json +++ b/doc/src/main/docs/generated/api/request/api/v2/schemas/request-schema.json @@ -54,6 +54,16 @@ "type" : "object", "id" : "urn:jsonschema:com:gentics:mesh:core:rest:schema:FieldSchema", "properties" : { + "name" : { + "type" : "string", + "required" : true, + "description" : "Name of the field." + }, + "type" : { + "type" : "string", + "required" : true, + "description" : "Type of the field." + }, "required" : { "type" : "boolean" }, @@ -64,16 +74,6 @@ "elasticsearch" : { "type" : "object", "$ref" : "urn:jsonschema:io:vertx:core:json:JsonObject" - }, - "name" : { - "type" : "string", - "required" : true, - "description" : "Name of the field." - }, - "type" : { - "type" : "string", - "required" : true, - "description" : "Type of the field." } } } diff --git a/doc/src/main/docs/generated/api/request/api/v2/schemas/{schemaUuid}/diff/request-schema.json b/doc/src/main/docs/generated/api/request/api/v2/schemas/{schemaUuid}/diff/request-schema.json index d89ee8de09..ffc6e28a03 100644 --- a/doc/src/main/docs/generated/api/request/api/v2/schemas/{schemaUuid}/diff/request-schema.json +++ b/doc/src/main/docs/generated/api/request/api/v2/schemas/{schemaUuid}/diff/request-schema.json @@ -103,6 +103,16 @@ "type" : "object", "id" : "urn:jsonschema:com:gentics:mesh:core:rest:schema:FieldSchema", "properties" : { + "name" : { + "type" : "string", + "required" : true, + "description" : "Name of the field." + }, + "type" : { + "type" : "string", + "required" : true, + "description" : "Type of the field." + }, "required" : { "type" : "boolean" }, @@ -113,16 +123,6 @@ "elasticsearch" : { "type" : "object", "$ref" : "urn:jsonschema:io:vertx:core:json:JsonObject" - }, - "name" : { - "type" : "string", - "required" : true, - "description" : "Name of the field." - }, - "type" : { - "type" : "string", - "required" : true, - "description" : "Type of the field." } } } diff --git a/doc/src/main/docs/generated/api/request/api/v2/schemas/{schemaUuid}/request-schema.json b/doc/src/main/docs/generated/api/request/api/v2/schemas/{schemaUuid}/request-schema.json index cc99a6f37c..b17862de0a 100644 --- a/doc/src/main/docs/generated/api/request/api/v2/schemas/{schemaUuid}/request-schema.json +++ b/doc/src/main/docs/generated/api/request/api/v2/schemas/{schemaUuid}/request-schema.json @@ -59,6 +59,16 @@ "type" : "object", "id" : "urn:jsonschema:com:gentics:mesh:core:rest:schema:FieldSchema", "properties" : { + "name" : { + "type" : "string", + "required" : true, + "description" : "Name of the field." + }, + "type" : { + "type" : "string", + "required" : true, + "description" : "Type of the field." + }, "required" : { "type" : "boolean" }, @@ -69,16 +79,6 @@ "elasticsearch" : { "type" : "object", "$ref" : "urn:jsonschema:io:vertx:core:json:JsonObject" - }, - "name" : { - "type" : "string", - "required" : true, - "description" : "Name of the field." - }, - "type" : { - "type" : "string", - "required" : true, - "description" : "Type of the field." } } } diff --git a/doc/src/main/docs/generated/api/request/api/v2/utilities/validateMicroschema/request-schema.json b/doc/src/main/docs/generated/api/request/api/v2/utilities/validateMicroschema/request-schema.json index b75b7d3378..ff9f6966ef 100644 --- a/doc/src/main/docs/generated/api/request/api/v2/utilities/validateMicroschema/request-schema.json +++ b/doc/src/main/docs/generated/api/request/api/v2/utilities/validateMicroschema/request-schema.json @@ -35,6 +35,16 @@ "type" : "object", "id" : "urn:jsonschema:com:gentics:mesh:core:rest:schema:FieldSchema", "properties" : { + "name" : { + "type" : "string", + "required" : true, + "description" : "Name of the field." + }, + "type" : { + "type" : "string", + "required" : true, + "description" : "Type of the field." + }, "required" : { "type" : "boolean" }, @@ -45,16 +55,6 @@ "elasticsearch" : { "type" : "object", "$ref" : "urn:jsonschema:io:vertx:core:json:JsonObject" - }, - "name" : { - "type" : "string", - "required" : true, - "description" : "Name of the field." - }, - "type" : { - "type" : "string", - "required" : true, - "description" : "Type of the field." } } } diff --git a/doc/src/main/docs/generated/api/request/api/v2/utilities/validateSchema/request-schema.json b/doc/src/main/docs/generated/api/request/api/v2/utilities/validateSchema/request-schema.json index cc99a6f37c..b17862de0a 100644 --- a/doc/src/main/docs/generated/api/request/api/v2/utilities/validateSchema/request-schema.json +++ b/doc/src/main/docs/generated/api/request/api/v2/utilities/validateSchema/request-schema.json @@ -59,6 +59,16 @@ "type" : "object", "id" : "urn:jsonschema:com:gentics:mesh:core:rest:schema:FieldSchema", "properties" : { + "name" : { + "type" : "string", + "required" : true, + "description" : "Name of the field." + }, + "type" : { + "type" : "string", + "required" : true, + "description" : "Type of the field." + }, "required" : { "type" : "boolean" }, @@ -69,16 +79,6 @@ "elasticsearch" : { "type" : "object", "$ref" : "urn:jsonschema:io:vertx:core:json:JsonObject" - }, - "name" : { - "type" : "string", - "required" : true, - "description" : "Name of the field." - }, - "type" : { - "type" : "string", - "required" : true, - "description" : "Type of the field." } } } diff --git a/doc/src/main/docs/generated/api/request/api/v2/{project}/nodes/request-schema.json b/doc/src/main/docs/generated/api/request/api/v2/{project}/nodes/request-schema.json index aabaecb015..8b38dbf362 100644 --- a/doc/src/main/docs/generated/api/request/api/v2/{project}/nodes/request-schema.json +++ b/doc/src/main/docs/generated/api/request/api/v2/{project}/nodes/request-schema.json @@ -38,14 +38,14 @@ "versionUuid" : { "type" : "string" }, - "uuid" : { - "type" : "string" - }, "name" : { "type" : "string" }, "set" : { "type" : "boolean" + }, + "uuid" : { + "type" : "string" } } } 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 2c09d6f6de..9158869b1f 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.27", + "meshVersion" : "1.10.28", "meshNodeName" : "Reminiscent Tirtouga", "databaseVendor" : "orientdb", "databaseVersion" : "2.2.16", diff --git a/doc/src/main/docs/generated/api/response/api/v2/microschemas/200/request-schema.json b/doc/src/main/docs/generated/api/response/api/v2/microschemas/200/request-schema.json index c9f2684d15..4fabefc1d6 100644 --- a/doc/src/main/docs/generated/api/response/api/v2/microschemas/200/request-schema.json +++ b/doc/src/main/docs/generated/api/response/api/v2/microschemas/200/request-schema.json @@ -90,6 +90,16 @@ "type" : "object", "id" : "urn:jsonschema:com:gentics:mesh:core:rest:schema:FieldSchema", "properties" : { + "name" : { + "type" : "string", + "required" : true, + "description" : "Name of the field." + }, + "type" : { + "type" : "string", + "required" : true, + "description" : "Type of the field." + }, "required" : { "type" : "boolean" }, @@ -100,16 +110,6 @@ "elasticsearch" : { "type" : "object", "$ref" : "urn:jsonschema:io:vertx:core:json:JsonObject" - }, - "name" : { - "type" : "string", - "required" : true, - "description" : "Name of the field." - }, - "type" : { - "type" : "string", - "required" : true, - "description" : "Type of the field." } } } diff --git a/doc/src/main/docs/generated/api/response/api/v2/microschemas/201/request-schema.json b/doc/src/main/docs/generated/api/response/api/v2/microschemas/201/request-schema.json index ae03f8747b..2c17ccb3c4 100644 --- a/doc/src/main/docs/generated/api/response/api/v2/microschemas/201/request-schema.json +++ b/doc/src/main/docs/generated/api/response/api/v2/microschemas/201/request-schema.json @@ -82,6 +82,16 @@ "type" : "object", "id" : "urn:jsonschema:com:gentics:mesh:core:rest:schema:FieldSchema", "properties" : { + "name" : { + "type" : "string", + "required" : true, + "description" : "Name of the field." + }, + "type" : { + "type" : "string", + "required" : true, + "description" : "Type of the field." + }, "required" : { "type" : "boolean" }, @@ -92,16 +102,6 @@ "elasticsearch" : { "type" : "object", "$ref" : "urn:jsonschema:io:vertx:core:json:JsonObject" - }, - "name" : { - "type" : "string", - "required" : true, - "description" : "Name of the field." - }, - "type" : { - "type" : "string", - "required" : true, - "description" : "Type of the field." } } } diff --git a/doc/src/main/docs/generated/api/response/api/v2/projects/200/request-schema.json b/doc/src/main/docs/generated/api/response/api/v2/projects/200/request-schema.json index 83aebd49d8..e2c2ad4d1c 100644 --- a/doc/src/main/docs/generated/api/response/api/v2/projects/200/request-schema.json +++ b/doc/src/main/docs/generated/api/response/api/v2/projects/200/request-schema.json @@ -92,14 +92,14 @@ "versionUuid" : { "type" : "string" }, - "uuid" : { - "type" : "string" - }, "name" : { "type" : "string" }, "set" : { "type" : "boolean" + }, + "uuid" : { + "type" : "string" } } } diff --git a/doc/src/main/docs/generated/api/response/api/v2/projects/201/request-schema.json b/doc/src/main/docs/generated/api/response/api/v2/projects/201/request-schema.json index a7c1a0d248..def329b4e1 100644 --- a/doc/src/main/docs/generated/api/response/api/v2/projects/201/request-schema.json +++ b/doc/src/main/docs/generated/api/response/api/v2/projects/201/request-schema.json @@ -84,14 +84,14 @@ "versionUuid" : { "type" : "string" }, - "uuid" : { - "type" : "string" - }, "name" : { "type" : "string" }, "set" : { "type" : "boolean" + }, + "uuid" : { + "type" : "string" } } } diff --git a/doc/src/main/docs/generated/api/response/api/v2/projects/{projectUuid}/200/request-schema.json b/doc/src/main/docs/generated/api/response/api/v2/projects/{projectUuid}/200/request-schema.json index a7c1a0d248..def329b4e1 100644 --- a/doc/src/main/docs/generated/api/response/api/v2/projects/{projectUuid}/200/request-schema.json +++ b/doc/src/main/docs/generated/api/response/api/v2/projects/{projectUuid}/200/request-schema.json @@ -84,14 +84,14 @@ "versionUuid" : { "type" : "string" }, - "uuid" : { - "type" : "string" - }, "name" : { "type" : "string" }, "set" : { "type" : "boolean" + }, + "uuid" : { + "type" : "string" } } } diff --git a/doc/src/main/docs/generated/api/response/api/v2/schemas/200/request-schema.json b/doc/src/main/docs/generated/api/response/api/v2/schemas/200/request-schema.json index 0f96063a89..7d6cdfaaea 100644 --- a/doc/src/main/docs/generated/api/response/api/v2/schemas/200/request-schema.json +++ b/doc/src/main/docs/generated/api/response/api/v2/schemas/200/request-schema.json @@ -111,6 +111,16 @@ "type" : "object", "id" : "urn:jsonschema:com:gentics:mesh:core:rest:schema:FieldSchema", "properties" : { + "name" : { + "type" : "string", + "required" : true, + "description" : "Name of the field." + }, + "type" : { + "type" : "string", + "required" : true, + "description" : "Type of the field." + }, "required" : { "type" : "boolean" }, @@ -121,16 +131,6 @@ "elasticsearch" : { "type" : "object", "$ref" : "urn:jsonschema:io:vertx:core:json:JsonObject" - }, - "name" : { - "type" : "string", - "required" : true, - "description" : "Name of the field." - }, - "type" : { - "type" : "string", - "required" : true, - "description" : "Type of the field." } } } diff --git a/doc/src/main/docs/generated/api/response/api/v2/schemas/201/request-schema.json b/doc/src/main/docs/generated/api/response/api/v2/schemas/201/request-schema.json index d89ee8de09..ffc6e28a03 100644 --- a/doc/src/main/docs/generated/api/response/api/v2/schemas/201/request-schema.json +++ b/doc/src/main/docs/generated/api/response/api/v2/schemas/201/request-schema.json @@ -103,6 +103,16 @@ "type" : "object", "id" : "urn:jsonschema:com:gentics:mesh:core:rest:schema:FieldSchema", "properties" : { + "name" : { + "type" : "string", + "required" : true, + "description" : "Name of the field." + }, + "type" : { + "type" : "string", + "required" : true, + "description" : "Type of the field." + }, "required" : { "type" : "boolean" }, @@ -113,16 +123,6 @@ "elasticsearch" : { "type" : "object", "$ref" : "urn:jsonschema:io:vertx:core:json:JsonObject" - }, - "name" : { - "type" : "string", - "required" : true, - "description" : "Name of the field." - }, - "type" : { - "type" : "string", - "required" : true, - "description" : "Type of the field." } } } diff --git a/doc/src/main/docs/generated/api/response/api/v2/schemas/{schemaUuid}/200/request-schema.json b/doc/src/main/docs/generated/api/response/api/v2/schemas/{schemaUuid}/200/request-schema.json index d89ee8de09..ffc6e28a03 100644 --- a/doc/src/main/docs/generated/api/response/api/v2/schemas/{schemaUuid}/200/request-schema.json +++ b/doc/src/main/docs/generated/api/response/api/v2/schemas/{schemaUuid}/200/request-schema.json @@ -103,6 +103,16 @@ "type" : "object", "id" : "urn:jsonschema:com:gentics:mesh:core:rest:schema:FieldSchema", "properties" : { + "name" : { + "type" : "string", + "required" : true, + "description" : "Name of the field." + }, + "type" : { + "type" : "string", + "required" : true, + "description" : "Type of the field." + }, "required" : { "type" : "boolean" }, @@ -113,16 +123,6 @@ "elasticsearch" : { "type" : "object", "$ref" : "urn:jsonschema:io:vertx:core:json:JsonObject" - }, - "name" : { - "type" : "string", - "required" : true, - "description" : "Name of the field." - }, - "type" : { - "type" : "string", - "required" : true, - "description" : "Type of the field." } } } diff --git a/doc/src/main/docs/generated/api/response/api/v2/search/microschemas/200/request-schema.json b/doc/src/main/docs/generated/api/response/api/v2/search/microschemas/200/request-schema.json index c9f2684d15..4fabefc1d6 100644 --- a/doc/src/main/docs/generated/api/response/api/v2/search/microschemas/200/request-schema.json +++ b/doc/src/main/docs/generated/api/response/api/v2/search/microschemas/200/request-schema.json @@ -90,6 +90,16 @@ "type" : "object", "id" : "urn:jsonschema:com:gentics:mesh:core:rest:schema:FieldSchema", "properties" : { + "name" : { + "type" : "string", + "required" : true, + "description" : "Name of the field." + }, + "type" : { + "type" : "string", + "required" : true, + "description" : "Type of the field." + }, "required" : { "type" : "boolean" }, @@ -100,16 +110,6 @@ "elasticsearch" : { "type" : "object", "$ref" : "urn:jsonschema:io:vertx:core:json:JsonObject" - }, - "name" : { - "type" : "string", - "required" : true, - "description" : "Name of the field." - }, - "type" : { - "type" : "string", - "required" : true, - "description" : "Type of the field." } } } diff --git a/doc/src/main/docs/generated/api/response/api/v2/search/nodes/200/request-schema.json b/doc/src/main/docs/generated/api/response/api/v2/search/nodes/200/request-schema.json index 329941f22c..45a3835a7a 100644 --- a/doc/src/main/docs/generated/api/response/api/v2/search/nodes/200/request-schema.json +++ b/doc/src/main/docs/generated/api/response/api/v2/search/nodes/200/request-schema.json @@ -127,14 +127,14 @@ "versionUuid" : { "type" : "string" }, - "uuid" : { - "type" : "string" - }, "name" : { "type" : "string" }, "set" : { "type" : "boolean" + }, + "uuid" : { + "type" : "string" } } } diff --git a/doc/src/main/docs/generated/api/response/api/v2/search/projects/200/request-schema.json b/doc/src/main/docs/generated/api/response/api/v2/search/projects/200/request-schema.json index 83aebd49d8..e2c2ad4d1c 100644 --- a/doc/src/main/docs/generated/api/response/api/v2/search/projects/200/request-schema.json +++ b/doc/src/main/docs/generated/api/response/api/v2/search/projects/200/request-schema.json @@ -92,14 +92,14 @@ "versionUuid" : { "type" : "string" }, - "uuid" : { - "type" : "string" - }, "name" : { "type" : "string" }, "set" : { "type" : "boolean" + }, + "uuid" : { + "type" : "string" } } } diff --git a/doc/src/main/docs/generated/api/response/api/v2/search/schemas/200/request-schema.json b/doc/src/main/docs/generated/api/response/api/v2/search/schemas/200/request-schema.json index 0f96063a89..7d6cdfaaea 100644 --- a/doc/src/main/docs/generated/api/response/api/v2/search/schemas/200/request-schema.json +++ b/doc/src/main/docs/generated/api/response/api/v2/search/schemas/200/request-schema.json @@ -111,6 +111,16 @@ "type" : "object", "id" : "urn:jsonschema:com:gentics:mesh:core:rest:schema:FieldSchema", "properties" : { + "name" : { + "type" : "string", + "required" : true, + "description" : "Name of the field." + }, + "type" : { + "type" : "string", + "required" : true, + "description" : "Type of the field." + }, "required" : { "type" : "boolean" }, @@ -121,16 +131,6 @@ "elasticsearch" : { "type" : "object", "$ref" : "urn:jsonschema:io:vertx:core:json:JsonObject" - }, - "name" : { - "type" : "string", - "required" : true, - "description" : "Name of the field." - }, - "type" : { - "type" : "string", - "required" : true, - "description" : "Type of the field." } } } diff --git a/doc/src/main/docs/generated/api/response/api/v2/{project}/200/request-schema.json b/doc/src/main/docs/generated/api/response/api/v2/{project}/200/request-schema.json index a7c1a0d248..def329b4e1 100644 --- a/doc/src/main/docs/generated/api/response/api/v2/{project}/200/request-schema.json +++ b/doc/src/main/docs/generated/api/response/api/v2/{project}/200/request-schema.json @@ -84,14 +84,14 @@ "versionUuid" : { "type" : "string" }, - "uuid" : { - "type" : "string" - }, "name" : { "type" : "string" }, "set" : { "type" : "boolean" + }, + "uuid" : { + "type" : "string" } } } diff --git a/doc/src/main/docs/generated/api/response/api/v2/{project}/microschemas/200/request-schema.json b/doc/src/main/docs/generated/api/response/api/v2/{project}/microschemas/200/request-schema.json index c9f2684d15..4fabefc1d6 100644 --- a/doc/src/main/docs/generated/api/response/api/v2/{project}/microschemas/200/request-schema.json +++ b/doc/src/main/docs/generated/api/response/api/v2/{project}/microschemas/200/request-schema.json @@ -90,6 +90,16 @@ "type" : "object", "id" : "urn:jsonschema:com:gentics:mesh:core:rest:schema:FieldSchema", "properties" : { + "name" : { + "type" : "string", + "required" : true, + "description" : "Name of the field." + }, + "type" : { + "type" : "string", + "required" : true, + "description" : "Type of the field." + }, "required" : { "type" : "boolean" }, @@ -100,16 +110,6 @@ "elasticsearch" : { "type" : "object", "$ref" : "urn:jsonschema:io:vertx:core:json:JsonObject" - }, - "name" : { - "type" : "string", - "required" : true, - "description" : "Name of the field." - }, - "type" : { - "type" : "string", - "required" : true, - "description" : "Type of the field." } } } diff --git a/doc/src/main/docs/generated/api/response/api/v2/{project}/microschemas/{microschemaUuid}/200/request-schema.json b/doc/src/main/docs/generated/api/response/api/v2/{project}/microschemas/{microschemaUuid}/200/request-schema.json index ae03f8747b..2c17ccb3c4 100644 --- a/doc/src/main/docs/generated/api/response/api/v2/{project}/microschemas/{microschemaUuid}/200/request-schema.json +++ b/doc/src/main/docs/generated/api/response/api/v2/{project}/microschemas/{microschemaUuid}/200/request-schema.json @@ -82,6 +82,16 @@ "type" : "object", "id" : "urn:jsonschema:com:gentics:mesh:core:rest:schema:FieldSchema", "properties" : { + "name" : { + "type" : "string", + "required" : true, + "description" : "Name of the field." + }, + "type" : { + "type" : "string", + "required" : true, + "description" : "Type of the field." + }, "required" : { "type" : "boolean" }, @@ -92,16 +102,6 @@ "elasticsearch" : { "type" : "object", "$ref" : "urn:jsonschema:io:vertx:core:json:JsonObject" - }, - "name" : { - "type" : "string", - "required" : true, - "description" : "Name of the field." - }, - "type" : { - "type" : "string", - "required" : true, - "description" : "Type of the field." } } } diff --git a/doc/src/main/docs/generated/api/response/api/v2/{project}/navroot/{path}/200/request-schema.json b/doc/src/main/docs/generated/api/response/api/v2/{project}/navroot/{path}/200/request-schema.json index 83da0ca20f..a30d239669 100644 --- a/doc/src/main/docs/generated/api/response/api/v2/{project}/navroot/{path}/200/request-schema.json +++ b/doc/src/main/docs/generated/api/response/api/v2/{project}/navroot/{path}/200/request-schema.json @@ -128,14 +128,14 @@ "versionUuid" : { "type" : "string" }, - "uuid" : { - "type" : "string" - }, "name" : { "type" : "string" }, "set" : { "type" : "boolean" + }, + "uuid" : { + "type" : "string" } } } diff --git a/doc/src/main/docs/generated/api/response/api/v2/{project}/nodes/200/request-schema.json b/doc/src/main/docs/generated/api/response/api/v2/{project}/nodes/200/request-schema.json index 329941f22c..45a3835a7a 100644 --- a/doc/src/main/docs/generated/api/response/api/v2/{project}/nodes/200/request-schema.json +++ b/doc/src/main/docs/generated/api/response/api/v2/{project}/nodes/200/request-schema.json @@ -127,14 +127,14 @@ "versionUuid" : { "type" : "string" }, - "uuid" : { - "type" : "string" - }, "name" : { "type" : "string" }, "set" : { "type" : "boolean" + }, + "uuid" : { + "type" : "string" } } } diff --git a/doc/src/main/docs/generated/api/response/api/v2/{project}/nodes/201/request-schema.json b/doc/src/main/docs/generated/api/response/api/v2/{project}/nodes/201/request-schema.json index 4e3c75d99c..56a896ab38 100644 --- a/doc/src/main/docs/generated/api/response/api/v2/{project}/nodes/201/request-schema.json +++ b/doc/src/main/docs/generated/api/response/api/v2/{project}/nodes/201/request-schema.json @@ -119,14 +119,14 @@ "versionUuid" : { "type" : "string" }, - "uuid" : { - "type" : "string" - }, "name" : { "type" : "string" }, "set" : { "type" : "boolean" + }, + "uuid" : { + "type" : "string" } } } diff --git a/doc/src/main/docs/generated/api/response/api/v2/{project}/nodes/{nodeUuid}/200/request-schema.json b/doc/src/main/docs/generated/api/response/api/v2/{project}/nodes/{nodeUuid}/200/request-schema.json index 4e3c75d99c..56a896ab38 100644 --- a/doc/src/main/docs/generated/api/response/api/v2/{project}/nodes/{nodeUuid}/200/request-schema.json +++ b/doc/src/main/docs/generated/api/response/api/v2/{project}/nodes/{nodeUuid}/200/request-schema.json @@ -119,14 +119,14 @@ "versionUuid" : { "type" : "string" }, - "uuid" : { - "type" : "string" - }, "name" : { "type" : "string" }, "set" : { "type" : "boolean" + }, + "uuid" : { + "type" : "string" } } } diff --git a/doc/src/main/docs/generated/api/response/api/v2/{project}/nodes/{nodeUuid}/binary/{fieldName}/200/request-schema.json b/doc/src/main/docs/generated/api/response/api/v2/{project}/nodes/{nodeUuid}/binary/{fieldName}/200/request-schema.json index 4e3c75d99c..56a896ab38 100644 --- a/doc/src/main/docs/generated/api/response/api/v2/{project}/nodes/{nodeUuid}/binary/{fieldName}/200/request-schema.json +++ b/doc/src/main/docs/generated/api/response/api/v2/{project}/nodes/{nodeUuid}/binary/{fieldName}/200/request-schema.json @@ -119,14 +119,14 @@ "versionUuid" : { "type" : "string" }, - "uuid" : { - "type" : "string" - }, "name" : { "type" : "string" }, "set" : { "type" : "boolean" + }, + "uuid" : { + "type" : "string" } } } diff --git a/doc/src/main/docs/generated/api/response/api/v2/{project}/nodes/{nodeUuid}/binaryTransform/{fieldName}/200/request-schema.json b/doc/src/main/docs/generated/api/response/api/v2/{project}/nodes/{nodeUuid}/binaryTransform/{fieldName}/200/request-schema.json index 4e3c75d99c..56a896ab38 100644 --- a/doc/src/main/docs/generated/api/response/api/v2/{project}/nodes/{nodeUuid}/binaryTransform/{fieldName}/200/request-schema.json +++ b/doc/src/main/docs/generated/api/response/api/v2/{project}/nodes/{nodeUuid}/binaryTransform/{fieldName}/200/request-schema.json @@ -119,14 +119,14 @@ "versionUuid" : { "type" : "string" }, - "uuid" : { - "type" : "string" - }, "name" : { "type" : "string" }, "set" : { "type" : "boolean" + }, + "uuid" : { + "type" : "string" } } } diff --git a/doc/src/main/docs/generated/api/response/api/v2/{project}/nodes/{nodeUuid}/children/200/request-schema.json b/doc/src/main/docs/generated/api/response/api/v2/{project}/nodes/{nodeUuid}/children/200/request-schema.json index 329941f22c..45a3835a7a 100644 --- a/doc/src/main/docs/generated/api/response/api/v2/{project}/nodes/{nodeUuid}/children/200/request-schema.json +++ b/doc/src/main/docs/generated/api/response/api/v2/{project}/nodes/{nodeUuid}/children/200/request-schema.json @@ -127,14 +127,14 @@ "versionUuid" : { "type" : "string" }, - "uuid" : { - "type" : "string" - }, "name" : { "type" : "string" }, "set" : { "type" : "boolean" + }, + "uuid" : { + "type" : "string" } } } diff --git a/doc/src/main/docs/generated/api/response/api/v2/{project}/nodes/{nodeUuid}/navigation/200/request-schema.json b/doc/src/main/docs/generated/api/response/api/v2/{project}/nodes/{nodeUuid}/navigation/200/request-schema.json index 83da0ca20f..a30d239669 100644 --- a/doc/src/main/docs/generated/api/response/api/v2/{project}/nodes/{nodeUuid}/navigation/200/request-schema.json +++ b/doc/src/main/docs/generated/api/response/api/v2/{project}/nodes/{nodeUuid}/navigation/200/request-schema.json @@ -128,14 +128,14 @@ "versionUuid" : { "type" : "string" }, - "uuid" : { - "type" : "string" - }, "name" : { "type" : "string" }, "set" : { "type" : "boolean" + }, + "uuid" : { + "type" : "string" } } } diff --git a/doc/src/main/docs/generated/api/response/api/v2/{project}/nodes/{nodeUuid}/s3binary/{fieldName}/200/request-schema.json b/doc/src/main/docs/generated/api/response/api/v2/{project}/nodes/{nodeUuid}/s3binary/{fieldName}/200/request-schema.json index 4e3c75d99c..56a896ab38 100644 --- a/doc/src/main/docs/generated/api/response/api/v2/{project}/nodes/{nodeUuid}/s3binary/{fieldName}/200/request-schema.json +++ b/doc/src/main/docs/generated/api/response/api/v2/{project}/nodes/{nodeUuid}/s3binary/{fieldName}/200/request-schema.json @@ -119,14 +119,14 @@ "versionUuid" : { "type" : "string" }, - "uuid" : { - "type" : "string" - }, "name" : { "type" : "string" }, "set" : { "type" : "boolean" + }, + "uuid" : { + "type" : "string" } } } diff --git a/doc/src/main/docs/generated/api/response/api/v2/{project}/nodes/{nodeUuid}/s3binary/{fieldName}/parseMetadata/200/request-schema.json b/doc/src/main/docs/generated/api/response/api/v2/{project}/nodes/{nodeUuid}/s3binary/{fieldName}/parseMetadata/200/request-schema.json index 4e3c75d99c..56a896ab38 100644 --- a/doc/src/main/docs/generated/api/response/api/v2/{project}/nodes/{nodeUuid}/s3binary/{fieldName}/parseMetadata/200/request-schema.json +++ b/doc/src/main/docs/generated/api/response/api/v2/{project}/nodes/{nodeUuid}/s3binary/{fieldName}/parseMetadata/200/request-schema.json @@ -119,14 +119,14 @@ "versionUuid" : { "type" : "string" }, - "uuid" : { - "type" : "string" - }, "name" : { "type" : "string" }, "set" : { "type" : "boolean" + }, + "uuid" : { + "type" : "string" } } } diff --git a/doc/src/main/docs/generated/api/response/api/v2/{project}/nodes/{nodeUuid}/tags/{tagUuid}/200/request-schema.json b/doc/src/main/docs/generated/api/response/api/v2/{project}/nodes/{nodeUuid}/tags/{tagUuid}/200/request-schema.json index 4e3c75d99c..56a896ab38 100644 --- a/doc/src/main/docs/generated/api/response/api/v2/{project}/nodes/{nodeUuid}/tags/{tagUuid}/200/request-schema.json +++ b/doc/src/main/docs/generated/api/response/api/v2/{project}/nodes/{nodeUuid}/tags/{tagUuid}/200/request-schema.json @@ -119,14 +119,14 @@ "versionUuid" : { "type" : "string" }, - "uuid" : { - "type" : "string" - }, "name" : { "type" : "string" }, "set" : { "type" : "boolean" + }, + "uuid" : { + "type" : "string" } } } diff --git a/doc/src/main/docs/generated/api/response/api/v2/{project}/schemas/200/request-schema.json b/doc/src/main/docs/generated/api/response/api/v2/{project}/schemas/200/request-schema.json index 0f96063a89..7d6cdfaaea 100644 --- a/doc/src/main/docs/generated/api/response/api/v2/{project}/schemas/200/request-schema.json +++ b/doc/src/main/docs/generated/api/response/api/v2/{project}/schemas/200/request-schema.json @@ -111,6 +111,16 @@ "type" : "object", "id" : "urn:jsonschema:com:gentics:mesh:core:rest:schema:FieldSchema", "properties" : { + "name" : { + "type" : "string", + "required" : true, + "description" : "Name of the field." + }, + "type" : { + "type" : "string", + "required" : true, + "description" : "Type of the field." + }, "required" : { "type" : "boolean" }, @@ -121,16 +131,6 @@ "elasticsearch" : { "type" : "object", "$ref" : "urn:jsonschema:io:vertx:core:json:JsonObject" - }, - "name" : { - "type" : "string", - "required" : true, - "description" : "Name of the field." - }, - "type" : { - "type" : "string", - "required" : true, - "description" : "Type of the field." } } } diff --git a/doc/src/main/docs/generated/api/response/api/v2/{project}/schemas/{schemaUuid}/200/request-schema.json b/doc/src/main/docs/generated/api/response/api/v2/{project}/schemas/{schemaUuid}/200/request-schema.json index d89ee8de09..ffc6e28a03 100644 --- a/doc/src/main/docs/generated/api/response/api/v2/{project}/schemas/{schemaUuid}/200/request-schema.json +++ b/doc/src/main/docs/generated/api/response/api/v2/{project}/schemas/{schemaUuid}/200/request-schema.json @@ -103,6 +103,16 @@ "type" : "object", "id" : "urn:jsonschema:com:gentics:mesh:core:rest:schema:FieldSchema", "properties" : { + "name" : { + "type" : "string", + "required" : true, + "description" : "Name of the field." + }, + "type" : { + "type" : "string", + "required" : true, + "description" : "Type of the field." + }, "required" : { "type" : "boolean" }, @@ -113,16 +123,6 @@ "elasticsearch" : { "type" : "object", "$ref" : "urn:jsonschema:io:vertx:core:json:JsonObject" - }, - "name" : { - "type" : "string", - "required" : true, - "description" : "Name of the field." - }, - "type" : { - "type" : "string", - "required" : true, - "description" : "Type of the field." } } } diff --git a/doc/src/main/docs/generated/api/response/api/v2/{project}/search/nodes/200/request-schema.json b/doc/src/main/docs/generated/api/response/api/v2/{project}/search/nodes/200/request-schema.json index 329941f22c..45a3835a7a 100644 --- a/doc/src/main/docs/generated/api/response/api/v2/{project}/search/nodes/200/request-schema.json +++ b/doc/src/main/docs/generated/api/response/api/v2/{project}/search/nodes/200/request-schema.json @@ -127,14 +127,14 @@ "versionUuid" : { "type" : "string" }, - "uuid" : { - "type" : "string" - }, "name" : { "type" : "string" }, "set" : { "type" : "boolean" + }, + "uuid" : { + "type" : "string" } } } diff --git a/doc/src/main/docs/generated/api/response/api/v2/{project}/tagFamilies/{tagFamilyUuid}/tags/{tagUuid}/nodes/200/request-schema.json b/doc/src/main/docs/generated/api/response/api/v2/{project}/tagFamilies/{tagFamilyUuid}/tags/{tagUuid}/nodes/200/request-schema.json index 329941f22c..45a3835a7a 100644 --- a/doc/src/main/docs/generated/api/response/api/v2/{project}/tagFamilies/{tagFamilyUuid}/tags/{tagUuid}/nodes/200/request-schema.json +++ b/doc/src/main/docs/generated/api/response/api/v2/{project}/tagFamilies/{tagFamilyUuid}/tags/{tagUuid}/nodes/200/request-schema.json @@ -127,14 +127,14 @@ "versionUuid" : { "type" : "string" }, - "uuid" : { - "type" : "string" - }, "name" : { "type" : "string" }, "set" : { "type" : "boolean" + }, + "uuid" : { + "type" : "string" } } } diff --git a/doc/src/main/docs/generated/api/response/api/v2/{project}/webroot/{path}/200/request-schema.json b/doc/src/main/docs/generated/api/response/api/v2/{project}/webroot/{path}/200/request-schema.json index 4e3c75d99c..56a896ab38 100644 --- a/doc/src/main/docs/generated/api/response/api/v2/{project}/webroot/{path}/200/request-schema.json +++ b/doc/src/main/docs/generated/api/response/api/v2/{project}/webroot/{path}/200/request-schema.json @@ -119,14 +119,14 @@ "versionUuid" : { "type" : "string" }, - "uuid" : { - "type" : "string" - }, "name" : { "type" : "string" }, "set" : { "type" : "boolean" + }, + "uuid" : { + "type" : "string" } } } diff --git a/doc/src/main/docs/generated/api/response/api/v2/{project}/webroot/{path}/201/request-schema.json b/doc/src/main/docs/generated/api/response/api/v2/{project}/webroot/{path}/201/request-schema.json index 4e3c75d99c..56a896ab38 100644 --- a/doc/src/main/docs/generated/api/response/api/v2/{project}/webroot/{path}/201/request-schema.json +++ b/doc/src/main/docs/generated/api/response/api/v2/{project}/webroot/{path}/201/request-schema.json @@ -119,14 +119,14 @@ "versionUuid" : { "type" : "string" }, - "uuid" : { - "type" : "string" - }, "name" : { "type" : "string" }, "set" : { "type" : "boolean" + }, + "uuid" : { + "type" : "string" } } } 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 8859b0edf9..0329c2d05c 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 -| *2.0.14* +| *2.0.15* | 6d5ccff3 -| *1.10.27* +| *1.10.28* | 6d5ccff3 |====== diff --git a/elasticsearch/pom.xml b/elasticsearch/pom.xml index 2ba03ab59f..80616e9e88 100644 --- a/elasticsearch/pom.xml +++ b/elasticsearch/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh - 1.10.28 + 1.10.29-SNAPSHOT diff --git a/ferma/pom.xml b/ferma/pom.xml index 55f762abbb..36055dff6f 100644 --- a/ferma/pom.xml +++ b/ferma/pom.xml @@ -6,7 +6,7 @@ com.gentics.mesh mesh - 1.10.28 + 1.10.29-SNAPSHOT ferma diff --git a/hazelcast3-cluster-manager/pom.xml b/hazelcast3-cluster-manager/pom.xml index f722ba44e2..27b97c1a13 100644 --- a/hazelcast3-cluster-manager/pom.xml +++ b/hazelcast3-cluster-manager/pom.xml @@ -6,7 +6,7 @@ mesh com.gentics.mesh - 1.10.28 + 1.10.29-SNAPSHOT hazelcast3-cluster-manager diff --git a/madl/api/pom.xml b/madl/api/pom.xml index 9263d4bba1..9e4793d82d 100644 --- a/madl/api/pom.xml +++ b/madl/api/pom.xml @@ -6,7 +6,7 @@ com.gentics.mesh madl - 1.10.28 + 1.10.29-SNAPSHOT madl-api diff --git a/madl/core/pom.xml b/madl/core/pom.xml index b279f1dc2c..73eac887c0 100644 --- a/madl/core/pom.xml +++ b/madl/core/pom.xml @@ -6,7 +6,7 @@ com.gentics.mesh madl - 1.10.28 + 1.10.29-SNAPSHOT madl-core diff --git a/madl/madl-ferma/pom.xml b/madl/madl-ferma/pom.xml index a0d49d577f..6718d87822 100644 --- a/madl/madl-ferma/pom.xml +++ b/madl/madl-ferma/pom.xml @@ -6,7 +6,7 @@ com.gentics.mesh madl - 1.10.28 + 1.10.29-SNAPSHOT madl-ferma diff --git a/madl/orientdb/pom.xml b/madl/orientdb/pom.xml index de1ea7ffa9..a71bbba4f6 100644 --- a/madl/orientdb/pom.xml +++ b/madl/orientdb/pom.xml @@ -7,7 +7,7 @@ com.gentics.mesh madl - 1.10.28 + 1.10.29-SNAPSHOT madl-orientdb diff --git a/madl/pom.xml b/madl/pom.xml index f4a6c603d3..047d041bf7 100644 --- a/madl/pom.xml +++ b/madl/pom.xml @@ -7,7 +7,7 @@ com.gentics.mesh mesh - 1.10.28 + 1.10.29-SNAPSHOT madl diff --git a/mdm/api/pom.xml b/mdm/api/pom.xml index 9ca79fb5dc..f5c7549011 100644 --- a/mdm/api/pom.xml +++ b/mdm/api/pom.xml @@ -7,7 +7,7 @@ com.gentics.mesh mesh-mdm - 1.10.28 + 1.10.29-SNAPSHOT mesh-mdm-api diff --git a/mdm/common/pom.xml b/mdm/common/pom.xml index f1d4a4eac5..7946a483db 100644 --- a/mdm/common/pom.xml +++ b/mdm/common/pom.xml @@ -7,7 +7,7 @@ com.gentics.mesh mesh-mdm - 1.10.28 + 1.10.29-SNAPSHOT mesh-mdm-common diff --git a/mdm/orientdb-api/pom.xml b/mdm/orientdb-api/pom.xml index f850a5f315..c5482e02fd 100644 --- a/mdm/orientdb-api/pom.xml +++ b/mdm/orientdb-api/pom.xml @@ -7,7 +7,7 @@ com.gentics.mesh mesh-mdm - 1.10.28 + 1.10.29-SNAPSHOT mesh-mdm-orientdb-api diff --git a/mdm/orientdb-wrapper/pom.xml b/mdm/orientdb-wrapper/pom.xml index de7263c57f..de974ad32f 100644 --- a/mdm/orientdb-wrapper/pom.xml +++ b/mdm/orientdb-wrapper/pom.xml @@ -7,7 +7,7 @@ com.gentics.mesh mesh-mdm - 1.10.28 + 1.10.29-SNAPSHOT mesh-mdm-orientdb-wrapper diff --git a/mdm/pom.xml b/mdm/pom.xml index 2eb7b57d89..917578dda7 100644 --- a/mdm/pom.xml +++ b/mdm/pom.xml @@ -7,7 +7,7 @@ com.gentics.mesh mesh - 1.10.28 + 1.10.29-SNAPSHOT mesh-mdm diff --git a/performance-tests/pom.xml b/performance-tests/pom.xml index 2bcbb1c20c..dbad7c80fa 100644 --- a/performance-tests/pom.xml +++ b/performance-tests/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh - 1.10.28 + 1.10.29-SNAPSHOT diff --git a/plugin-api/pom.xml b/plugin-api/pom.xml index bee44ef7e1..15bb3a6d9e 100644 --- a/plugin-api/pom.xml +++ b/plugin-api/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh - 1.10.28 + 1.10.29-SNAPSHOT diff --git a/plugin-bom/pom.xml b/plugin-bom/pom.xml index 5b75b44073..0e1035d4dc 100644 --- a/plugin-bom/pom.xml +++ b/plugin-bom/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh - 1.10.28 + 1.10.29-SNAPSHOT diff --git a/plugin-dep/pom.xml b/plugin-dep/pom.xml index e8d6a239d4..53844c752d 100644 --- a/plugin-dep/pom.xml +++ b/plugin-dep/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh - 1.10.28 + 1.10.29-SNAPSHOT diff --git a/plugin-parent/pom.xml b/plugin-parent/pom.xml index 51968595cb..1b7388ac3f 100644 --- a/plugin-parent/pom.xml +++ b/plugin-parent/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh - 1.10.28 + 1.10.29-SNAPSHOT diff --git a/pom.xml b/pom.xml index 5edb1a0f39..e3221af337 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ com.gentics.mesh mesh - 1.10.28 + 1.10.29-SNAPSHOT pom Gentics Mesh diff --git a/rest-client/pom.xml b/rest-client/pom.xml index 12c624b88b..2a9a1e9251 100644 --- a/rest-client/pom.xml +++ b/rest-client/pom.xml @@ -11,7 +11,7 @@ com.gentics.mesh mesh - 1.10.28 + 1.10.29-SNAPSHOT diff --git a/rest-model/pom.xml b/rest-model/pom.xml index 877f6224b8..cef518b68d 100644 --- a/rest-model/pom.xml +++ b/rest-model/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh - 1.10.28 + 1.10.29-SNAPSHOT diff --git a/server/pom.xml b/server/pom.xml index 4495189a6b..0b0b63d96a 100644 --- a/server/pom.xml +++ b/server/pom.xml @@ -11,7 +11,7 @@ com.gentics.mesh mesh - 1.10.28 + 1.10.29-SNAPSHOT diff --git a/services/aws-s3-storage/pom.xml b/services/aws-s3-storage/pom.xml index ab6043a058..67341f2c58 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.28 + 1.10.29-SNAPSHOT diff --git a/services/image-imgscalr/pom.xml b/services/image-imgscalr/pom.xml index 466cebe7ae..dda9503cd3 100644 --- a/services/image-imgscalr/pom.xml +++ b/services/image-imgscalr/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh-services - 1.10.28 + 1.10.29-SNAPSHOT diff --git a/services/jwt-auth/pom.xml b/services/jwt-auth/pom.xml index 7a211d7a86..267fefdc3f 100644 --- a/services/jwt-auth/pom.xml +++ b/services/jwt-auth/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh-services - 1.10.28 + 1.10.29-SNAPSHOT diff --git a/services/local-storage/pom.xml b/services/local-storage/pom.xml index 4201ab5c96..2d8d6850a7 100644 --- a/services/local-storage/pom.xml +++ b/services/local-storage/pom.xml @@ -9,7 +9,7 @@ com.gentics.mesh mesh-services - 1.10.28 + 1.10.29-SNAPSHOT diff --git a/services/metrics-prometheus/pom.xml b/services/metrics-prometheus/pom.xml index fbca10125d..44ac22c43b 100644 --- a/services/metrics-prometheus/pom.xml +++ b/services/metrics-prometheus/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh-services - 1.10.28 + 1.10.29-SNAPSHOT diff --git a/services/pom.xml b/services/pom.xml index cf81184ff4..56e6c7fc3f 100644 --- a/services/pom.xml +++ b/services/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh - 1.10.28 + 1.10.29-SNAPSHOT diff --git a/tests/api/pom.xml b/tests/api/pom.xml index be5acbf80f..6d869c552a 100644 --- a/tests/api/pom.xml +++ b/tests/api/pom.xml @@ -5,7 +5,7 @@ com.gentics.mesh mesh-tests - 1.10.28 + 1.10.29-SNAPSHOT mesh-tests-api Mesh - Tests API diff --git a/tests/common/pom.xml b/tests/common/pom.xml index cd07f52dbd..73e684908b 100644 --- a/tests/common/pom.xml +++ b/tests/common/pom.xml @@ -11,7 +11,7 @@ com.gentics.mesh mesh-tests - 1.10.28 + 1.10.29-SNAPSHOT diff --git a/tests/context-api/pom.xml b/tests/context-api/pom.xml index 9300d6fa15..0bd4f8f58f 100644 --- a/tests/context-api/pom.xml +++ b/tests/context-api/pom.xml @@ -5,7 +5,7 @@ com.gentics.mesh mesh-tests - 1.10.28 + 1.10.29-SNAPSHOT mesh-tests-context-api Mesh - Tests context API diff --git a/tests/context-orientdb/pom.xml b/tests/context-orientdb/pom.xml index 93d63194f8..224d2924d9 100644 --- a/tests/context-orientdb/pom.xml +++ b/tests/context-orientdb/pom.xml @@ -3,7 +3,7 @@ com.gentics.mesh mesh-tests - 1.10.28 + 1.10.29-SNAPSHOT mesh-tests-context-orientdb Mesh - Tests context - OrientDB diff --git a/tests/orientdb-runner/pom.xml b/tests/orientdb-runner/pom.xml index 74576ca739..36fe6f2ee7 100644 --- a/tests/orientdb-runner/pom.xml +++ b/tests/orientdb-runner/pom.xml @@ -5,7 +5,7 @@ com.gentics.mesh mesh-tests - 1.10.28 + 1.10.29-SNAPSHOT mesh-orientdb-tests-runner Mesh - Tests Runner - OrientDB diff --git a/tests/pom.xml b/tests/pom.xml index 273d218182..ac2b686586 100644 --- a/tests/pom.xml +++ b/tests/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh - 1.10.28 + 1.10.29-SNAPSHOT diff --git a/tests/tests-admin-gui/pom.xml b/tests/tests-admin-gui/pom.xml index 5009242a7f..11fce968fa 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.28 + 1.10.29-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 85efbb7557..ced77e0d3b 100644 --- a/tests/tests-api/pom.xml +++ b/tests/tests-api/pom.xml @@ -8,7 +8,7 @@ com.gentics.mesh mesh-tests - 1.10.28 + 1.10.29-SNAPSHOT diff --git a/tests/tests-changelog-system/pom.xml b/tests/tests-changelog-system/pom.xml index 0866356547..5a839bca1b 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.28 + 1.10.29-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 ad160cfec4..20161573f6 100644 --- a/tests/tests-common/pom.xml +++ b/tests/tests-common/pom.xml @@ -8,7 +8,7 @@ com.gentics.mesh mesh-tests - 1.10.28 + 1.10.29-SNAPSHOT diff --git a/tests/tests-core/pom.xml b/tests/tests-core/pom.xml index 5d8f83e069..4c4eb52df0 100644 --- a/tests/tests-core/pom.xml +++ b/tests/tests-core/pom.xml @@ -8,7 +8,7 @@ com.gentics.mesh mesh-tests - 1.10.28 + 1.10.29-SNAPSHOT diff --git a/tests/tests-distributed-coordinator/pom.xml b/tests/tests-distributed-coordinator/pom.xml index 1f2a164476..8b88dd23a2 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.28 + 1.10.29-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 9986095a60..6d0c894543 100644 --- a/tests/tests-distributed/pom.xml +++ b/tests/tests-distributed/pom.xml @@ -11,7 +11,7 @@ com.gentics.mesh mesh-tests - 1.10.28 + 1.10.29-SNAPSHOT diff --git a/tests/tests-elasticsearch/pom.xml b/tests/tests-elasticsearch/pom.xml index e6e18ad7bf..33c969ca38 100644 --- a/tests/tests-elasticsearch/pom.xml +++ b/tests/tests-elasticsearch/pom.xml @@ -5,7 +5,7 @@ com.gentics.mesh mesh-tests - 1.10.28 + 1.10.29-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 4a9d7c1047..b460d025fe 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.28 + 1.10.29-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 e9120f4b08..7b4ced5f08 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.28 + 1.10.29-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 06c70d630d..8cd3f102fe 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.28 + 1.10.29-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 8b98ac457e..067b417c50 100644 --- a/tests/tests-server/pom.xml +++ b/tests/tests-server/pom.xml @@ -5,7 +5,7 @@ com.gentics.mesh mesh-tests - 1.10.28 + 1.10.29-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 11af1cfe4c..304ccb5bc2 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.28 + 1.10.29-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 e4a60a95a3..4d3a0b23c7 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.28 + 1.10.29-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 8fa34fd5fa..c916c03cf3 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.28 + 1.10.29-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 0b2aec9beb..41c4cef82f 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.28 + 1.10.29-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 b6cf0baaa6..cdc1d64df3 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.28 + 1.10.29-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 b290ca8a0c..c22b86d70c 100644 --- a/verticles/admin-gui/pom.xml +++ b/verticles/admin-gui/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh-verticles - 1.10.28 + 1.10.29-SNAPSHOT diff --git a/verticles/graphql/pom.xml b/verticles/graphql/pom.xml index 40c2fc724e..45532ebc0e 100644 --- a/verticles/graphql/pom.xml +++ b/verticles/graphql/pom.xml @@ -9,7 +9,7 @@ com.gentics.mesh mesh-verticles - 1.10.28 + 1.10.29-SNAPSHOT diff --git a/verticles/pom.xml b/verticles/pom.xml index c7ea2fa1db..be29eac1db 100644 --- a/verticles/pom.xml +++ b/verticles/pom.xml @@ -9,7 +9,7 @@ com.gentics.mesh mesh - 1.10.28 + 1.10.29-SNAPSHOT diff --git a/verticles/rest/pom.xml b/verticles/rest/pom.xml index 67405c7f26..d1fe949eda 100644 --- a/verticles/rest/pom.xml +++ b/verticles/rest/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh-verticles - 1.10.28 + 1.10.29-SNAPSHOT