From c89265dc2ee1e4532d31d2138fe8c67ff5f4eb90 Mon Sep 17 00:00:00 2001 From: Norbert Pomaroli Date: Tue, 16 Jan 2024 10:39:46 +0100 Subject: [PATCH 1/5] Implement DataLoader for micronode fields --- LTS-CHANGELOG.adoc | 7 +++++- .../mesh/core/data/dao/ContentDao.java | 8 +++++++ .../mesh/core/data/dao/DaoTransformable.java | 6 +++++ .../mesh/core/data/page/PageTransformer.java | 7 ++++++ .../data/dao/impl/ContentDaoWrapperImpl.java | 12 +++++++--- .../gentics/mesh/graphql/GraphQLHandler.java | 1 + .../type/field/FieldDefinitionProvider.java | 24 ++++++++++++++++++- 7 files changed, 60 insertions(+), 5 deletions(-) diff --git a/LTS-CHANGELOG.adoc b/LTS-CHANGELOG.adoc index 4df4b4c181..9a0534c2cc 100644 --- a/LTS-CHANGELOG.adoc +++ b/LTS-CHANGELOG.adoc @@ -17,12 +17,17 @@ 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.25]] +== 1.10.25 (TBD) + +icon:check[] GraphQL: Fetching of micronode fields has been improved to allow batch loading. + [[v1.10.24]] == 1.10.24 (10.01.2024) icon:check[] REST: The documentation of the generic parameter `fields` has been fixed. Now `fields` works over the Language entities as well, the values are `uuid`,`name`,`languageTag`,`nativeName`. -icon:check[] GraphQL. Some of (micro)schema fields related queries rely on the target (micro)schema having at least one field, crashing in HTTP 500 otherwise. This has now been fixed. +icon:check[] GraphQL: Some of (micro)schema fields related queries rely on the target (micro)schema having at least one field, crashing in HTTP 500 otherwise. This has now been fixed. [[v1.10.23]] == 1.10.23 (20.12.2023) diff --git a/mdm/api/src/main/java/com/gentics/mesh/core/data/dao/ContentDao.java b/mdm/api/src/main/java/com/gentics/mesh/core/data/dao/ContentDao.java index ebfc2c5293..b315561708 100644 --- a/mdm/api/src/main/java/com/gentics/mesh/core/data/dao/ContentDao.java +++ b/mdm/api/src/main/java/com/gentics/mesh/core/data/dao/ContentDao.java @@ -25,6 +25,7 @@ import com.gentics.mesh.core.data.HibNodeFieldContainerEdge; import com.gentics.mesh.core.data.branch.HibBranch; import com.gentics.mesh.core.data.diff.FieldContainerChange; +import com.gentics.mesh.core.data.node.HibMicronode; import com.gentics.mesh.core.data.node.HibNode; import com.gentics.mesh.core.data.node.field.list.HibMicronodeFieldList; import com.gentics.mesh.core.data.node.field.nesting.HibMicronodeField; @@ -1113,4 +1114,11 @@ default Stream> getStringListFieldValues(List listUuids); + + /** + * Load the micronodes for the given collection of micronode fields + * @param micronodeFields micronode fields + * @return map of field to micronode + */ + Map getMicronodes(Collection micronodeFields); } diff --git a/mdm/api/src/main/java/com/gentics/mesh/core/data/dao/DaoTransformable.java b/mdm/api/src/main/java/com/gentics/mesh/core/data/dao/DaoTransformable.java index ecdb18ccee..20c164a73c 100644 --- a/mdm/api/src/main/java/com/gentics/mesh/core/data/dao/DaoTransformable.java +++ b/mdm/api/src/main/java/com/gentics/mesh/core/data/dao/DaoTransformable.java @@ -17,6 +17,12 @@ * Rest model type */ public interface DaoTransformable { + /** + * Invoked before transforming the elements in the page to their REST models + * @param page page of elements + * @param ac action context + */ + default void beforeTransformToRestSync(Page> page, InternalActionContext ac) {} /** * Transform the element into the matching rest model response asynchronously. diff --git a/mdm/common/src/main/java/com/gentics/mesh/core/data/page/PageTransformer.java b/mdm/common/src/main/java/com/gentics/mesh/core/data/page/PageTransformer.java index 5cf5edf74a..0aa3a92d41 100644 --- a/mdm/common/src/main/java/com/gentics/mesh/core/data/page/PageTransformer.java +++ b/mdm/common/src/main/java/com/gentics/mesh/core/data/page/PageTransformer.java @@ -37,6 +37,13 @@ public PageTransformer(Map transformToRestSync(Page> page, InternalActionContext ac, int level) { + if (page.getSize() > 0) { + HibCoreElement element = page.getWrappedList().get(0); + ElementType type = element.getTypeInfo().getType(); + DaoTransformable, RestModel> dao = daos.get(type); + dao.beforeTransformToRestSync(page, ac); + } + List responses = transformToRestSync(page.stream(), ac, level).collect(Collectors.toList()); ListResponse listResponse = new ListResponse<>(); page.setPaging(listResponse); diff --git a/mdm/orientdb-wrapper/src/main/java/com/gentics/mesh/core/data/dao/impl/ContentDaoWrapperImpl.java b/mdm/orientdb-wrapper/src/main/java/com/gentics/mesh/core/data/dao/impl/ContentDaoWrapperImpl.java index 3472d278ab..ef3450287a 100644 --- a/mdm/orientdb-wrapper/src/main/java/com/gentics/mesh/core/data/dao/impl/ContentDaoWrapperImpl.java +++ b/mdm/orientdb-wrapper/src/main/java/com/gentics/mesh/core/data/dao/impl/ContentDaoWrapperImpl.java @@ -3,21 +3,22 @@ import static com.gentics.mesh.core.data.relationship.GraphRelationships.HAS_FIELD_CONTAINER; import static com.gentics.mesh.core.data.util.HibClassConverter.toGraph; +import java.util.Collection; import java.util.Iterator; import java.util.List; import java.util.Map; import java.util.Objects; import java.util.Set; +import java.util.function.Function; import java.util.stream.Collectors; import java.util.stream.Stream; import javax.inject.Inject; -import com.gentics.mesh.core.data.user.HibUser; - import org.apache.commons.collections4.CollectionUtils; import org.apache.commons.lang.NotImplementedException; import org.apache.commons.lang3.StringUtils; +import org.apache.commons.lang3.tuple.Pair; import com.gentics.mesh.context.BulkActionContext; import com.gentics.mesh.context.InternalActionContext; @@ -39,13 +40,13 @@ import com.gentics.mesh.core.data.node.impl.MicronodeImpl; import com.gentics.mesh.core.data.node.impl.NodeImpl; import com.gentics.mesh.core.data.schema.HibSchemaVersion; +import com.gentics.mesh.core.data.user.HibUser; import com.gentics.mesh.core.db.GraphDBTx; import com.gentics.mesh.core.rest.common.ContainerType; import com.gentics.mesh.core.result.Result; import com.gentics.mesh.graphdb.OrientDBDatabase; import com.gentics.mesh.util.StreamUtil; import com.gentics.mesh.util.VersionNumber; -import org.apache.commons.lang3.tuple.Pair; public class ContentDaoWrapperImpl implements ContentDaoWrapper { @@ -384,4 +385,9 @@ public Map> getHtmlListFieldValues(List listUuids) public Map> getStringListFieldValues(List listUuids) { throw new NotImplementedException("Prefetching of list values is not implemented"); } + + @Override + public Map getMicronodes(Collection micronodeFields) { + return micronodeFields.stream().distinct().collect(Collectors.toMap(Function.identity(), HibMicronodeField::getMicronode)); + } } 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 75cc260511..1017ccd278 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 @@ -112,6 +112,7 @@ public void handleQuery(GraphQLContext gc, String body) { 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_DATA_LOADER_KEY, DataLoader.newDataLoader(typeProvider.getFieldDefProvider().MICRONODE_LOADER, options)); ExecutionInput executionInput = ExecutionInput .newExecutionInput() diff --git a/verticles/graphql/src/main/java/com/gentics/mesh/graphql/type/field/FieldDefinitionProvider.java b/verticles/graphql/src/main/java/com/gentics/mesh/graphql/type/field/FieldDefinitionProvider.java index e9e7983958..804d888504 100644 --- a/verticles/graphql/src/main/java/com/gentics/mesh/graphql/type/field/FieldDefinitionProvider.java +++ b/verticles/graphql/src/main/java/com/gentics/mesh/graphql/type/field/FieldDefinitionProvider.java @@ -14,6 +14,7 @@ import static graphql.schema.GraphQLFieldDefinition.newFieldDefinition; import static graphql.schema.GraphQLObjectType.newObject; +import java.util.ArrayList; import java.util.Arrays; import java.util.Collections; import java.util.HashMap; @@ -124,6 +125,11 @@ public class FieldDefinitionProvider extends AbstractTypeProvider { */ public static final String STRING_LIST_VALUES_DATA_LOADER_KEY = "stringListLoader"; + /** + * Key for the data loader for micronode field values + */ + public static final String MICRONODE_DATA_LOADER_KEY = "micronodeLoader"; + protected final MicronodeFieldTypeProvider micronodeFieldTypeProvider; protected final WebRootLinkReplacerImpl linkReplacer; @@ -211,6 +217,20 @@ private static CompletionStage>> listValueDataLoader(List MICRONODE_LOADER = (keys, environment) -> { + ContentDao contentDao = Tx.get().contentDao(); + Map micronodes = contentDao.getMicronodes(keys); + + Promise> promise = Promise.promise(); + List result = keys.stream().map(field -> micronodes.get(field)).collect(Collectors.toList()); + promise.complete(result); + + return promise.future().toCompletionStage(); + }; + @Inject public FieldDefinitionProvider(MeshOptions options, MicronodeFieldTypeProvider micronodeFieldTypeProvider, WebRootLinkReplacerImpl linkReplacer) { super(options); @@ -713,7 +733,9 @@ public Optional createMicronodeDef(GraphQLContext contex HibFieldContainer container = env.getSource(); HibMicronodeField micronodeField = container.getMicronode(schema.getName()); if (micronodeField != null) { - return micronodeField.getMicronode(); + + DataLoader micronodeLoader = env.getDataLoader(MICRONODE_DATA_LOADER_KEY); + return micronodeLoader.load(micronodeField); } return null; }).build()); From d871b841d3660c0c51c5a85263effc4f38d70723 Mon Sep 17 00:00:00 2001 From: Norbert Pomaroli Date: Tue, 16 Jan 2024 15:33:40 +0100 Subject: [PATCH 2/5] Add dataloader for micronode list values --- .../mesh/core/data/dao/ContentDao.java | 7 ++++++ .../data/dao/impl/ContentDaoWrapperImpl.java | 5 ++++ .../gentics/mesh/graphql/GraphQLHandler.java | 1 + .../type/field/FieldDefinitionProvider.java | 23 +++++++++++++++++-- 4 files changed, 34 insertions(+), 2 deletions(-) diff --git a/mdm/api/src/main/java/com/gentics/mesh/core/data/dao/ContentDao.java b/mdm/api/src/main/java/com/gentics/mesh/core/data/dao/ContentDao.java index b315561708..fa5eecaf17 100644 --- a/mdm/api/src/main/java/com/gentics/mesh/core/data/dao/ContentDao.java +++ b/mdm/api/src/main/java/com/gentics/mesh/core/data/dao/ContentDao.java @@ -1115,6 +1115,13 @@ default Stream> getStringListFieldValues(List listUuids); + /** + * Get the Micronode list field values for the given list UUIDs + * @param listUuids list UUIDs + * @return map of list UUIDs to lists of micronode field values + */ + Map> getMicronodeListFieldValues(List listUuids); + /** * Load the micronodes for the given collection of micronode fields * @param micronodeFields micronode fields diff --git a/mdm/orientdb-wrapper/src/main/java/com/gentics/mesh/core/data/dao/impl/ContentDaoWrapperImpl.java b/mdm/orientdb-wrapper/src/main/java/com/gentics/mesh/core/data/dao/impl/ContentDaoWrapperImpl.java index ef3450287a..c2a9eef469 100644 --- a/mdm/orientdb-wrapper/src/main/java/com/gentics/mesh/core/data/dao/impl/ContentDaoWrapperImpl.java +++ b/mdm/orientdb-wrapper/src/main/java/com/gentics/mesh/core/data/dao/impl/ContentDaoWrapperImpl.java @@ -386,6 +386,11 @@ public Map> getStringListFieldValues(List listUuids throw new NotImplementedException("Prefetching of list values is not implemented"); } + @Override + public Map> getMicronodeListFieldValues(List listUuids) { + throw new NotImplementedException("Prefetching of list values is not implemented"); + } + @Override public Map getMicronodes(Collection micronodeFields) { return micronodeFields.stream().distinct().collect(Collectors.toMap(Function.identity(), HibMicronodeField::getMicronode)); 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 1017ccd278..dc5f575bd7 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 @@ -112,6 +112,7 @@ public void handleQuery(GraphQLContext gc, String body) { 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 diff --git a/verticles/graphql/src/main/java/com/gentics/mesh/graphql/type/field/FieldDefinitionProvider.java b/verticles/graphql/src/main/java/com/gentics/mesh/graphql/type/field/FieldDefinitionProvider.java index 804d888504..a937b5f1ca 100644 --- a/verticles/graphql/src/main/java/com/gentics/mesh/graphql/type/field/FieldDefinitionProvider.java +++ b/verticles/graphql/src/main/java/com/gentics/mesh/graphql/type/field/FieldDefinitionProvider.java @@ -14,7 +14,6 @@ import static graphql.schema.GraphQLFieldDefinition.newFieldDefinition; import static graphql.schema.GraphQLObjectType.newObject; -import java.util.ArrayList; import java.util.Arrays; import java.util.Collections; import java.util.HashMap; @@ -125,6 +124,11 @@ public class FieldDefinitionProvider extends AbstractTypeProvider { */ public static final String STRING_LIST_VALUES_DATA_LOADER_KEY = "stringListLoader"; + /** + * Key for the data loader for micronode list field values + */ + public static final String MICRONODE_LIST_VALUES_DATA_LOADER_KEY = "micronodeUuidListLoader"; + /** * Key for the data loader for micronode field values */ @@ -217,6 +221,14 @@ private static CompletionStage>> listValueDataLoader(List> MICRONODE_LIST_VALUE_LOADER = (keys, environment) -> { + ContentDao contentDao = Tx.get().contentDao(); + return listValueDataLoader(keys, contentDao::getMicronodeListFieldValues, Functions.identity()); + }; + /** * DataLoader implementation for micronodes */ @@ -686,7 +698,14 @@ public Optional createListDef(GraphQLContext context, Li if (micronodeList == null) { return null; } - return micronodeList.getList().stream().map(item -> item.getMicronode()).collect(Collectors.toList()); + + String micronodeListUuid = micronodeList.getUuid(); + if (contentDao.supportsPrefetchingListFieldValues() && !StringUtils.isEmpty(micronodeListUuid)) { + DataLoader> micronodeListValueLoader = env.getDataLoader(FieldDefinitionProvider.MICRONODE_LIST_VALUES_DATA_LOADER_KEY); + return micronodeListValueLoader.load(micronodeListUuid); + } else { + return micronodeList.getList().stream().map(item -> item.getMicronode()).collect(Collectors.toList()); + } default: return null; } From 617825c73a6240c2dad1faa808fa148a7768d5a3 Mon Sep 17 00:00:00 2001 From: 1000 user <1000@a66feb33f7bb> Date: Tue, 16 Jan 2024 16:28:47 +0100 Subject: [PATCH 3/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 5018fbc070..ec73ed29aa 100644 --- a/api/pom.xml +++ b/api/pom.xml @@ -11,7 +11,7 @@ com.gentics.mesh mesh - 1.10.25-SNAPSHOT + 1.10.25 diff --git a/bom/pom.xml b/bom/pom.xml index 7409cf0003..294925dc22 100644 --- a/bom/pom.xml +++ b/bom/pom.xml @@ -11,7 +11,7 @@ com.gentics.mesh mesh - 1.10.25-SNAPSHOT + 1.10.25 diff --git a/changelog-system/pom.xml b/changelog-system/pom.xml index 3070e77879..63e6650e14 100644 --- a/changelog-system/pom.xml +++ b/changelog-system/pom.xml @@ -12,7 +12,7 @@ com.gentics.mesh mesh - 1.10.25-SNAPSHOT + 1.10.25 diff --git a/common-api/pom.xml b/common-api/pom.xml index ad59e120f4..5a6439f3f2 100644 --- a/common-api/pom.xml +++ b/common-api/pom.xml @@ -11,7 +11,7 @@ com.gentics.mesh mesh - 1.10.25-SNAPSHOT + 1.10.25 diff --git a/common/pom.xml b/common/pom.xml index 6b965b6ab6..b6f28d4124 100644 --- a/common/pom.xml +++ b/common/pom.xml @@ -11,7 +11,7 @@ com.gentics.mesh mesh - 1.10.25-SNAPSHOT + 1.10.25 diff --git a/core/pom.xml b/core/pom.xml index 659ac71ae0..7ce21c9f57 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -11,7 +11,7 @@ com.gentics.mesh mesh - 1.10.25-SNAPSHOT + 1.10.25 diff --git a/databases/orientdb/pom.xml b/databases/orientdb/pom.xml index 9de7544336..8755c66465 100644 --- a/databases/orientdb/pom.xml +++ b/databases/orientdb/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh-databases - 1.10.25-SNAPSHOT + 1.10.25 diff --git a/databases/pom.xml b/databases/pom.xml index 7791fb7a7e..35848c0f2e 100644 --- a/databases/pom.xml +++ b/databases/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh - 1.10.25-SNAPSHOT + 1.10.25 diff --git a/demo/common/pom.xml b/demo/common/pom.xml index 2a59de1ba9..1f95f28a8c 100644 --- a/demo/common/pom.xml +++ b/demo/common/pom.xml @@ -11,7 +11,7 @@ com.gentics.mesh mesh-demos - 1.10.25-SNAPSHOT + 1.10.25 diff --git a/demo/default/pom.xml b/demo/default/pom.xml index 946f30b75c..a674ac236f 100644 --- a/demo/default/pom.xml +++ b/demo/default/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh-demos - 1.10.25-SNAPSHOT + 1.10.25 diff --git a/demo/pom.xml b/demo/pom.xml index fed2e4ffc9..e1482c58e3 100644 --- a/demo/pom.xml +++ b/demo/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh - 1.10.25-SNAPSHOT + 1.10.25 diff --git a/distributed-coordinator/pom.xml b/distributed-coordinator/pom.xml index 96b7918c10..9e3e17cb08 100644 --- a/distributed-coordinator/pom.xml +++ b/distributed-coordinator/pom.xml @@ -7,7 +7,7 @@ com.gentics.mesh mesh - 1.10.25-SNAPSHOT + 1.10.25 mesh-distributed-coordinator diff --git a/distributed/pom.xml b/distributed/pom.xml index 200e2b8be3..1ef6774ece 100644 --- a/distributed/pom.xml +++ b/distributed/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh - 1.10.25-SNAPSHOT + 1.10.25 diff --git a/doc/pom.xml b/doc/pom.xml index f16a98403c..605a685b14 100644 --- a/doc/pom.xml +++ b/doc/pom.xml @@ -6,7 +6,7 @@ com.gentics.mesh mesh - 1.10.25-SNAPSHOT + 1.10.25 mesh-doc diff --git a/elasticsearch/pom.xml b/elasticsearch/pom.xml index 2ac6491f48..07afc443b6 100644 --- a/elasticsearch/pom.xml +++ b/elasticsearch/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh - 1.10.25-SNAPSHOT + 1.10.25 diff --git a/ferma/pom.xml b/ferma/pom.xml index f5b78d3734..3003643801 100644 --- a/ferma/pom.xml +++ b/ferma/pom.xml @@ -6,7 +6,7 @@ com.gentics.mesh mesh - 1.10.25-SNAPSHOT + 1.10.25 ferma diff --git a/hazelcast3-cluster-manager/pom.xml b/hazelcast3-cluster-manager/pom.xml index 7c23e86d80..6cf268557e 100644 --- a/hazelcast3-cluster-manager/pom.xml +++ b/hazelcast3-cluster-manager/pom.xml @@ -6,7 +6,7 @@ mesh com.gentics.mesh - 1.10.25-SNAPSHOT + 1.10.25 hazelcast3-cluster-manager diff --git a/madl/api/pom.xml b/madl/api/pom.xml index d03f02f13a..01c4a66434 100644 --- a/madl/api/pom.xml +++ b/madl/api/pom.xml @@ -6,7 +6,7 @@ com.gentics.mesh madl - 1.10.25-SNAPSHOT + 1.10.25 madl-api diff --git a/madl/core/pom.xml b/madl/core/pom.xml index 3eaf0f964a..96a72cd7a5 100644 --- a/madl/core/pom.xml +++ b/madl/core/pom.xml @@ -6,7 +6,7 @@ com.gentics.mesh madl - 1.10.25-SNAPSHOT + 1.10.25 madl-core diff --git a/madl/madl-ferma/pom.xml b/madl/madl-ferma/pom.xml index c1e14e2f56..61d88c64ad 100644 --- a/madl/madl-ferma/pom.xml +++ b/madl/madl-ferma/pom.xml @@ -6,7 +6,7 @@ com.gentics.mesh madl - 1.10.25-SNAPSHOT + 1.10.25 madl-ferma diff --git a/madl/orientdb/pom.xml b/madl/orientdb/pom.xml index 172607314b..019dd87f2c 100644 --- a/madl/orientdb/pom.xml +++ b/madl/orientdb/pom.xml @@ -7,7 +7,7 @@ com.gentics.mesh madl - 1.10.25-SNAPSHOT + 1.10.25 madl-orientdb diff --git a/madl/pom.xml b/madl/pom.xml index 026bb34320..f3f7b1b849 100644 --- a/madl/pom.xml +++ b/madl/pom.xml @@ -7,7 +7,7 @@ com.gentics.mesh mesh - 1.10.25-SNAPSHOT + 1.10.25 madl diff --git a/mdm/api/pom.xml b/mdm/api/pom.xml index 65474db0fe..16eee2b351 100644 --- a/mdm/api/pom.xml +++ b/mdm/api/pom.xml @@ -7,7 +7,7 @@ com.gentics.mesh mesh-mdm - 1.10.25-SNAPSHOT + 1.10.25 mesh-mdm-api diff --git a/mdm/common/pom.xml b/mdm/common/pom.xml index b59634edfd..d8728baadb 100644 --- a/mdm/common/pom.xml +++ b/mdm/common/pom.xml @@ -7,7 +7,7 @@ com.gentics.mesh mesh-mdm - 1.10.25-SNAPSHOT + 1.10.25 mesh-mdm-common diff --git a/mdm/orientdb-api/pom.xml b/mdm/orientdb-api/pom.xml index 31c90891c8..1ec7f1dfd1 100644 --- a/mdm/orientdb-api/pom.xml +++ b/mdm/orientdb-api/pom.xml @@ -7,7 +7,7 @@ com.gentics.mesh mesh-mdm - 1.10.25-SNAPSHOT + 1.10.25 mesh-mdm-orientdb-api diff --git a/mdm/orientdb-wrapper/pom.xml b/mdm/orientdb-wrapper/pom.xml index 501c4e2301..e9ae6b43fc 100644 --- a/mdm/orientdb-wrapper/pom.xml +++ b/mdm/orientdb-wrapper/pom.xml @@ -7,7 +7,7 @@ com.gentics.mesh mesh-mdm - 1.10.25-SNAPSHOT + 1.10.25 mesh-mdm-orientdb-wrapper diff --git a/mdm/pom.xml b/mdm/pom.xml index 181eb7500e..8d0c33c29a 100644 --- a/mdm/pom.xml +++ b/mdm/pom.xml @@ -7,7 +7,7 @@ com.gentics.mesh mesh - 1.10.25-SNAPSHOT + 1.10.25 mesh-mdm diff --git a/performance-tests/pom.xml b/performance-tests/pom.xml index ffd0572025..887713a9ca 100644 --- a/performance-tests/pom.xml +++ b/performance-tests/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh - 1.10.25-SNAPSHOT + 1.10.25 diff --git a/plugin-api/pom.xml b/plugin-api/pom.xml index 254cf1d085..aca5492fb7 100644 --- a/plugin-api/pom.xml +++ b/plugin-api/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh - 1.10.25-SNAPSHOT + 1.10.25 diff --git a/plugin-bom/pom.xml b/plugin-bom/pom.xml index bbee984682..749601f893 100644 --- a/plugin-bom/pom.xml +++ b/plugin-bom/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh - 1.10.25-SNAPSHOT + 1.10.25 diff --git a/plugin-dep/pom.xml b/plugin-dep/pom.xml index 8a6e1597e5..0a623f822a 100644 --- a/plugin-dep/pom.xml +++ b/plugin-dep/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh - 1.10.25-SNAPSHOT + 1.10.25 diff --git a/plugin-parent/pom.xml b/plugin-parent/pom.xml index 8ba0313090..2f0d29bacf 100644 --- a/plugin-parent/pom.xml +++ b/plugin-parent/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh - 1.10.25-SNAPSHOT + 1.10.25 diff --git a/pom.xml b/pom.xml index 425ee8a56f..3e858898b6 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ com.gentics.mesh mesh - 1.10.25-SNAPSHOT + 1.10.25 pom Gentics Mesh diff --git a/rest-client/pom.xml b/rest-client/pom.xml index 6df5f42c89..6de389b866 100644 --- a/rest-client/pom.xml +++ b/rest-client/pom.xml @@ -11,7 +11,7 @@ com.gentics.mesh mesh - 1.10.25-SNAPSHOT + 1.10.25 diff --git a/rest-model/pom.xml b/rest-model/pom.xml index b0d823f639..dbf775ee5a 100644 --- a/rest-model/pom.xml +++ b/rest-model/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh - 1.10.25-SNAPSHOT + 1.10.25 diff --git a/server/pom.xml b/server/pom.xml index df0daa7b87..040442cd47 100644 --- a/server/pom.xml +++ b/server/pom.xml @@ -11,7 +11,7 @@ com.gentics.mesh mesh - 1.10.25-SNAPSHOT + 1.10.25 diff --git a/services/aws-s3-storage/pom.xml b/services/aws-s3-storage/pom.xml index 031ff15e0b..17242c94aa 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.25-SNAPSHOT + 1.10.25 diff --git a/services/image-imgscalr/pom.xml b/services/image-imgscalr/pom.xml index bb2293e7b8..dcb119c0b6 100644 --- a/services/image-imgscalr/pom.xml +++ b/services/image-imgscalr/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh-services - 1.10.25-SNAPSHOT + 1.10.25 diff --git a/services/jwt-auth/pom.xml b/services/jwt-auth/pom.xml index 3f11d2d357..807cf519f3 100644 --- a/services/jwt-auth/pom.xml +++ b/services/jwt-auth/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh-services - 1.10.25-SNAPSHOT + 1.10.25 diff --git a/services/local-storage/pom.xml b/services/local-storage/pom.xml index a8a078a7f8..ac38db1f5b 100644 --- a/services/local-storage/pom.xml +++ b/services/local-storage/pom.xml @@ -9,7 +9,7 @@ com.gentics.mesh mesh-services - 1.10.25-SNAPSHOT + 1.10.25 diff --git a/services/metrics-prometheus/pom.xml b/services/metrics-prometheus/pom.xml index c8607aa907..ebc3ac073b 100644 --- a/services/metrics-prometheus/pom.xml +++ b/services/metrics-prometheus/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh-services - 1.10.25-SNAPSHOT + 1.10.25 diff --git a/services/pom.xml b/services/pom.xml index e64c26c7ba..cd4c520dd1 100644 --- a/services/pom.xml +++ b/services/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh - 1.10.25-SNAPSHOT + 1.10.25 diff --git a/tests/api/pom.xml b/tests/api/pom.xml index c325ab0459..3c94534554 100644 --- a/tests/api/pom.xml +++ b/tests/api/pom.xml @@ -5,7 +5,7 @@ com.gentics.mesh mesh-tests - 1.10.25-SNAPSHOT + 1.10.25 mesh-tests-api Mesh - Tests API diff --git a/tests/common/pom.xml b/tests/common/pom.xml index 44d8f3da8f..b052fc3d33 100644 --- a/tests/common/pom.xml +++ b/tests/common/pom.xml @@ -11,7 +11,7 @@ com.gentics.mesh mesh-tests - 1.10.25-SNAPSHOT + 1.10.25 diff --git a/tests/context-api/pom.xml b/tests/context-api/pom.xml index 4e7ff17d9f..056bad7959 100644 --- a/tests/context-api/pom.xml +++ b/tests/context-api/pom.xml @@ -5,7 +5,7 @@ com.gentics.mesh mesh-tests - 1.10.25-SNAPSHOT + 1.10.25 mesh-tests-context-api Mesh - Tests context API diff --git a/tests/context-orientdb/pom.xml b/tests/context-orientdb/pom.xml index 2f26a95e63..df0e140189 100644 --- a/tests/context-orientdb/pom.xml +++ b/tests/context-orientdb/pom.xml @@ -3,7 +3,7 @@ com.gentics.mesh mesh-tests - 1.10.25-SNAPSHOT + 1.10.25 mesh-tests-context-orientdb Mesh - Tests context - OrientDB diff --git a/tests/orientdb-runner/pom.xml b/tests/orientdb-runner/pom.xml index 86f393e2c1..4484142b09 100644 --- a/tests/orientdb-runner/pom.xml +++ b/tests/orientdb-runner/pom.xml @@ -5,7 +5,7 @@ com.gentics.mesh mesh-tests - 1.10.25-SNAPSHOT + 1.10.25 mesh-orientdb-tests-runner Mesh - Tests Runner - OrientDB diff --git a/tests/pom.xml b/tests/pom.xml index 76e6f99f7a..eecee1bdf8 100644 --- a/tests/pom.xml +++ b/tests/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh - 1.10.25-SNAPSHOT + 1.10.25 diff --git a/tests/tests-admin-gui/pom.xml b/tests/tests-admin-gui/pom.xml index deea9d2fd9..e68cf7d825 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.25-SNAPSHOT + 1.10.25 tests-mesh-admin-gui Mesh Admin GUI - Shared tests diff --git a/tests/tests-api/pom.xml b/tests/tests-api/pom.xml index a521e771e0..fc54271d0f 100644 --- a/tests/tests-api/pom.xml +++ b/tests/tests-api/pom.xml @@ -8,7 +8,7 @@ com.gentics.mesh mesh-tests - 1.10.25-SNAPSHOT + 1.10.25 diff --git a/tests/tests-changelog-system/pom.xml b/tests/tests-changelog-system/pom.xml index 2f4197cbc0..314779395a 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.25-SNAPSHOT + 1.10.25 tests-mesh-changelog-system Mesh Changelog System - Shared tests diff --git a/tests/tests-common/pom.xml b/tests/tests-common/pom.xml index efaca32f79..669bb54d83 100644 --- a/tests/tests-common/pom.xml +++ b/tests/tests-common/pom.xml @@ -8,7 +8,7 @@ com.gentics.mesh mesh-tests - 1.10.25-SNAPSHOT + 1.10.25 diff --git a/tests/tests-core/pom.xml b/tests/tests-core/pom.xml index ee041ea27e..5ae16b027c 100644 --- a/tests/tests-core/pom.xml +++ b/tests/tests-core/pom.xml @@ -8,7 +8,7 @@ com.gentics.mesh mesh-tests - 1.10.25-SNAPSHOT + 1.10.25 diff --git a/tests/tests-distributed-coordinator/pom.xml b/tests/tests-distributed-coordinator/pom.xml index 91759ec960..0138139067 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.25-SNAPSHOT + 1.10.25 tests-mesh-distributed-coordinator Mesh Distributed Coordinator - Shared tests diff --git a/tests/tests-distributed/pom.xml b/tests/tests-distributed/pom.xml index d1ebfc43a6..e33465926f 100644 --- a/tests/tests-distributed/pom.xml +++ b/tests/tests-distributed/pom.xml @@ -11,7 +11,7 @@ com.gentics.mesh mesh-tests - 1.10.25-SNAPSHOT + 1.10.25 diff --git a/tests/tests-elasticsearch/pom.xml b/tests/tests-elasticsearch/pom.xml index 124a2f1e3a..5d620b5e29 100644 --- a/tests/tests-elasticsearch/pom.xml +++ b/tests/tests-elasticsearch/pom.xml @@ -5,7 +5,7 @@ com.gentics.mesh mesh-tests - 1.10.25-SNAPSHOT + 1.10.25 tests-mesh-elasticsearch Mesh Elasticsearch - Shared tests diff --git a/tests/tests-plugin-api/pom.xml b/tests/tests-plugin-api/pom.xml index b1326cc4af..5589a7bc44 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.25-SNAPSHOT + 1.10.25 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 2f76ce42f9..8197c94c43 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.25-SNAPSHOT + 1.10.25 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 0a173a940e..a1be0f14f7 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.25-SNAPSHOT + 1.10.25 tests-mesh-rest-model Mesh REST Model - Shared tests diff --git a/tests/tests-server/pom.xml b/tests/tests-server/pom.xml index cefd242e94..42f8200f60 100644 --- a/tests/tests-server/pom.xml +++ b/tests/tests-server/pom.xml @@ -5,7 +5,7 @@ com.gentics.mesh mesh-tests - 1.10.25-SNAPSHOT + 1.10.25 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 863ef3c549..2bbf51f013 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.25-SNAPSHOT + 1.10.25 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 d5e15c5f16..202fd2da4d 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.25-SNAPSHOT + 1.10.25 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 eae6f82eb2..c80d5a42ce 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.25-SNAPSHOT + 1.10.25 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 44386060db..168ec8689c 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.25-SNAPSHOT + 1.10.25 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 328b070d9f..bf10602a38 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.25-SNAPSHOT + 1.10.25 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 96398d9381..3c48fa221d 100644 --- a/verticles/admin-gui/pom.xml +++ b/verticles/admin-gui/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh-verticles - 1.10.25-SNAPSHOT + 1.10.25 diff --git a/verticles/graphql/pom.xml b/verticles/graphql/pom.xml index eef6583e79..2dba5d2981 100644 --- a/verticles/graphql/pom.xml +++ b/verticles/graphql/pom.xml @@ -9,7 +9,7 @@ com.gentics.mesh mesh-verticles - 1.10.25-SNAPSHOT + 1.10.25 diff --git a/verticles/pom.xml b/verticles/pom.xml index 77b155505b..5b11f7b30b 100644 --- a/verticles/pom.xml +++ b/verticles/pom.xml @@ -9,7 +9,7 @@ com.gentics.mesh mesh - 1.10.25-SNAPSHOT + 1.10.25 diff --git a/verticles/rest/pom.xml b/verticles/rest/pom.xml index 42df3beb77..30daa31fd2 100644 --- a/verticles/rest/pom.xml +++ b/verticles/rest/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh-verticles - 1.10.25-SNAPSHOT + 1.10.25 From a43f758d0c227f9a37f171cca8dc77bd092be15a Mon Sep 17 00:00:00 2001 From: 1000 user <1000@a66feb33f7bb> Date: Tue, 16 Jan 2024 16:51:18 +0100 Subject: [PATCH 4/5] [Jenkins | hotfix-1.10.x] Prepare for the next development iteration (1.10.26-SNAPSHOT) --- api/pom.xml | 2 +- bom/pom.xml | 2 +- changelog-system/pom.xml | 2 +- common-api/pom.xml | 2 +- common/pom.xml | 2 +- core/pom.xml | 2 +- databases/orientdb/pom.xml | 2 +- databases/pom.xml | 2 +- demo/common/pom.xml | 2 +- demo/default/pom.xml | 2 +- demo/pom.xml | 2 +- distributed-coordinator/pom.xml | 2 +- distributed/pom.xml | 2 +- doc/pom.xml | 2 +- doc/src/main/docs/generated/api/api-docs.raml | 24 +++++++++---------- doc/src/main/docs/generated/api/api.raml | 24 +++++++++---------- .../api/response/api/v2/200/example.json | 2 +- .../tables/mesh-db-revs.adoc-include | 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 +- 73 files changed, 96 insertions(+), 96 deletions(-) diff --git a/api/pom.xml b/api/pom.xml index ec73ed29aa..a0bf5bb4cd 100644 --- a/api/pom.xml +++ b/api/pom.xml @@ -11,7 +11,7 @@ com.gentics.mesh mesh - 1.10.25 + 1.10.26-SNAPSHOT diff --git a/bom/pom.xml b/bom/pom.xml index 294925dc22..9fb8c2b264 100644 --- a/bom/pom.xml +++ b/bom/pom.xml @@ -11,7 +11,7 @@ com.gentics.mesh mesh - 1.10.25 + 1.10.26-SNAPSHOT diff --git a/changelog-system/pom.xml b/changelog-system/pom.xml index 63e6650e14..a00b6331ab 100644 --- a/changelog-system/pom.xml +++ b/changelog-system/pom.xml @@ -12,7 +12,7 @@ com.gentics.mesh mesh - 1.10.25 + 1.10.26-SNAPSHOT diff --git a/common-api/pom.xml b/common-api/pom.xml index 5a6439f3f2..d85fe38565 100644 --- a/common-api/pom.xml +++ b/common-api/pom.xml @@ -11,7 +11,7 @@ com.gentics.mesh mesh - 1.10.25 + 1.10.26-SNAPSHOT diff --git a/common/pom.xml b/common/pom.xml index b6f28d4124..52d77a22c3 100644 --- a/common/pom.xml +++ b/common/pom.xml @@ -11,7 +11,7 @@ com.gentics.mesh mesh - 1.10.25 + 1.10.26-SNAPSHOT diff --git a/core/pom.xml b/core/pom.xml index 7ce21c9f57..6a14b59508 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -11,7 +11,7 @@ com.gentics.mesh mesh - 1.10.25 + 1.10.26-SNAPSHOT diff --git a/databases/orientdb/pom.xml b/databases/orientdb/pom.xml index 8755c66465..02aae8f02b 100644 --- a/databases/orientdb/pom.xml +++ b/databases/orientdb/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh-databases - 1.10.25 + 1.10.26-SNAPSHOT diff --git a/databases/pom.xml b/databases/pom.xml index 35848c0f2e..ca508ebbd5 100644 --- a/databases/pom.xml +++ b/databases/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh - 1.10.25 + 1.10.26-SNAPSHOT diff --git a/demo/common/pom.xml b/demo/common/pom.xml index 1f95f28a8c..5fbfef06ed 100644 --- a/demo/common/pom.xml +++ b/demo/common/pom.xml @@ -11,7 +11,7 @@ com.gentics.mesh mesh-demos - 1.10.25 + 1.10.26-SNAPSHOT diff --git a/demo/default/pom.xml b/demo/default/pom.xml index a674ac236f..e83a8b09e4 100644 --- a/demo/default/pom.xml +++ b/demo/default/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh-demos - 1.10.25 + 1.10.26-SNAPSHOT diff --git a/demo/pom.xml b/demo/pom.xml index e1482c58e3..6a0a24aeaf 100644 --- a/demo/pom.xml +++ b/demo/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh - 1.10.25 + 1.10.26-SNAPSHOT diff --git a/distributed-coordinator/pom.xml b/distributed-coordinator/pom.xml index 9e3e17cb08..68351004a2 100644 --- a/distributed-coordinator/pom.xml +++ b/distributed-coordinator/pom.xml @@ -7,7 +7,7 @@ com.gentics.mesh mesh - 1.10.25 + 1.10.26-SNAPSHOT mesh-distributed-coordinator diff --git a/distributed/pom.xml b/distributed/pom.xml index 1ef6774ece..d73c4a251c 100644 --- a/distributed/pom.xml +++ b/distributed/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh - 1.10.25 + 1.10.26-SNAPSHOT diff --git a/doc/pom.xml b/doc/pom.xml index 605a685b14..03f5dd646d 100644 --- a/doc/pom.xml +++ b/doc/pom.xml @@ -6,7 +6,7 @@ com.gentics.mesh mesh - 1.10.25 + 1.10.26-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 7f396b970a..8b9fd59309 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.24" +version: "1.10.25" 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" : "acabc861df974abe9f0fabc22f6e7aaa" + "uuid" : "88a71a3cf9ed4ce79f971ebc893725b9" } ] } responses: @@ -1328,7 +1328,7 @@ mediaType: application/json "exclusive" : true, "ignore" : [ { "name" : "admin", - "uuid" : "2497154c774c4515ba58b9712752da89" + "uuid" : "18fbe3e391854a7ebb4dd39750e18f1a" } ] } responses: @@ -1854,7 +1854,7 @@ mediaType: application/json "exclusive" : true, "ignore" : [ { "name" : "admin", - "uuid" : "7b559583b6aa4b57810265adc37761af" + "uuid" : "768bba05cdcc4ef9a19a2fe8cf1a8114" } ] } responses: @@ -2787,7 +2787,7 @@ mediaType: application/json "exclusive" : true, "ignore" : [ { "name" : "admin", - "uuid" : "dba3ac64f0c24196a12917e976512ffc" + "uuid" : "ae2b0e676de74604a9cbd9828177ff26" } ] } responses: @@ -3746,7 +3746,7 @@ mediaType: application/json "exclusive" : true, "ignore" : [ { "name" : "admin", - "uuid" : "a5a5d0a1b59d44f3ac79d9f7ce5be232" + "uuid" : "cddb8d059f5e49fcb049168b8eea3bfa" } ] } responses: @@ -4383,7 +4383,7 @@ mediaType: application/json "exclusive" : true, "ignore" : [ { "name" : "admin", - "uuid" : "2fdaeb46323146c29179dbc5987cfddc" + "uuid" : "0e63b917fd714187b4a9347a960304dd" } ] } responses: @@ -7443,7 +7443,7 @@ mediaType: application/json | vertxVersion | false | string | Used Vert.x version. | example: | { - "meshVersion" : "1.10.24", + "meshVersion" : "1.10.25", "meshNodeName" : "Reminiscent Tirtouga", "databaseVendor" : "orientdb", "databaseVersion" : "2.2.16", @@ -9880,7 +9880,7 @@ mediaType: application/json "exclusive" : true, "ignore" : [ { "name" : "admin", - "uuid" : "a1d8e686097a4d60aa38e7a5df684409" + "uuid" : "f5099e9fcd5543abbfb1b61638f0d0df" } ] } responses: @@ -11325,7 +11325,7 @@ mediaType: application/json "exclusive" : true, "ignore" : [ { "name" : "admin", - "uuid" : "89a214fea2804002a5f3d5adf6212efe" + "uuid" : "331066fca3964c8db76b20c5c27fdcc9" } ] } responses: @@ -12114,7 +12114,7 @@ mediaType: application/json "exclusive" : true, "ignore" : [ { "name" : "admin", - "uuid" : "668595b471874b57b40e5d6e93674667" + "uuid" : "61a6c96f52cc4d658ee653a2d5beed13" } ] } responses: @@ -13785,7 +13785,7 @@ mediaType: application/json "exclusive" : true, "ignore" : [ { "name" : "admin", - "uuid" : "fa86cb2def6e4207a4fda3c284bfa63a" + "uuid" : "ce594e737fba41b78768664df39ab492" } ] } responses: diff --git a/doc/src/main/docs/generated/api/api.raml b/doc/src/main/docs/generated/api/api.raml index bc64fb8c8b..57c86f9b00 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.24" +version: "1.10.25" 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" : "0ff7431b1c7845518809ccc792c57569" + "uuid" : "de93fc3743aa4f9099f53cb1f83b365b" } ] } responses: @@ -3035,7 +3035,7 @@ mediaType: application/json "exclusive" : true, "ignore" : [ { "name" : "admin", - "uuid" : "d0cd0df34ddb45a2a7d05ba57633183c" + "uuid" : "e83a43d9ff5540d099f71e662b5196f1" } ] } responses: @@ -4328,7 +4328,7 @@ mediaType: application/json "exclusive" : true, "ignore" : [ { "name" : "admin", - "uuid" : "1ad950ceb7e041359f89411fa76b3b52" + "uuid" : "912d64a43b1145c0a6a2adaca3b9701f" } ] } responses: @@ -6702,7 +6702,7 @@ mediaType: application/json "exclusive" : true, "ignore" : [ { "name" : "admin", - "uuid" : "1239265f2ce544eb825bce80a677e5e0" + "uuid" : "d809242d4fb24a908666821bd450f099" } ] } responses: @@ -9018,7 +9018,7 @@ mediaType: application/json "exclusive" : true, "ignore" : [ { "name" : "admin", - "uuid" : "c2b4b896390f4382bd19b7c1045da778" + "uuid" : "48d306206dea43bab44e29f9b6f1dbd6" } ] } responses: @@ -10683,7 +10683,7 @@ mediaType: application/json "exclusive" : true, "ignore" : [ { "name" : "admin", - "uuid" : "5d4d4fea696e412da79d5f8f1d457eef" + "uuid" : "911c94fb23a342f9acf5aa50f584f9be" } ] } responses: @@ -17062,7 +17062,7 @@ mediaType: application/json } example: | { - "meshVersion" : "1.10.24", + "meshVersion" : "1.10.25", "meshNodeName" : "Reminiscent Tirtouga", "databaseVendor" : "orientdb", "databaseVersion" : "2.2.16", @@ -22815,7 +22815,7 @@ mediaType: application/json "exclusive" : true, "ignore" : [ { "name" : "admin", - "uuid" : "7f46c0e7ec7d48ff8526440847e1edff" + "uuid" : "1d3e39fa019144059ca616cdf5e74f13" } ] } responses: @@ -26195,7 +26195,7 @@ mediaType: application/json "exclusive" : true, "ignore" : [ { "name" : "admin", - "uuid" : "38f5b8c087ec462eb58d56530ea3a7e2" + "uuid" : "e6440f797dd54ec3bdf40934581c2c3f" } ] } responses: @@ -28058,7 +28058,7 @@ mediaType: application/json "exclusive" : true, "ignore" : [ { "name" : "admin", - "uuid" : "b2bf00ea8dff49eea9aaeb67c7e2f0aa" + "uuid" : "33c8cb6e40454919a8d638d055b2aebf" } ] } responses: @@ -31866,7 +31866,7 @@ mediaType: application/json "exclusive" : true, "ignore" : [ { "name" : "admin", - "uuid" : "3b22bbc7037046c8bd1075c94535c948" + "uuid" : "70ab0b5ec7f647babc8cde6cb3d27f39" } ] } responses: diff --git a/doc/src/main/docs/generated/api/response/api/v2/200/example.json b/doc/src/main/docs/generated/api/response/api/v2/200/example.json index 5d02ac2eba..7bcd1579d6 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.24", + "meshVersion" : "1.10.25", "meshNodeName" : "Reminiscent Tirtouga", "databaseVendor" : "orientdb", "databaseVersion" : "2.2.16", diff --git a/doc/src/main/docs/generated/tables/mesh-db-revs.adoc-include b/doc/src/main/docs/generated/tables/mesh-db-revs.adoc-include index 4ede9e0fac..0a91766359 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.11* +| *2.0.12* | 6d5ccff3 -| *1.10.24* +| *1.10.25* | 6d5ccff3 |====== diff --git a/elasticsearch/pom.xml b/elasticsearch/pom.xml index 07afc443b6..1730940d5d 100644 --- a/elasticsearch/pom.xml +++ b/elasticsearch/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh - 1.10.25 + 1.10.26-SNAPSHOT diff --git a/ferma/pom.xml b/ferma/pom.xml index 3003643801..12b66438bc 100644 --- a/ferma/pom.xml +++ b/ferma/pom.xml @@ -6,7 +6,7 @@ com.gentics.mesh mesh - 1.10.25 + 1.10.26-SNAPSHOT ferma diff --git a/hazelcast3-cluster-manager/pom.xml b/hazelcast3-cluster-manager/pom.xml index 6cf268557e..3ec0570db6 100644 --- a/hazelcast3-cluster-manager/pom.xml +++ b/hazelcast3-cluster-manager/pom.xml @@ -6,7 +6,7 @@ mesh com.gentics.mesh - 1.10.25 + 1.10.26-SNAPSHOT hazelcast3-cluster-manager diff --git a/madl/api/pom.xml b/madl/api/pom.xml index 01c4a66434..aa5001d2f9 100644 --- a/madl/api/pom.xml +++ b/madl/api/pom.xml @@ -6,7 +6,7 @@ com.gentics.mesh madl - 1.10.25 + 1.10.26-SNAPSHOT madl-api diff --git a/madl/core/pom.xml b/madl/core/pom.xml index 96a72cd7a5..212a738b40 100644 --- a/madl/core/pom.xml +++ b/madl/core/pom.xml @@ -6,7 +6,7 @@ com.gentics.mesh madl - 1.10.25 + 1.10.26-SNAPSHOT madl-core diff --git a/madl/madl-ferma/pom.xml b/madl/madl-ferma/pom.xml index 61d88c64ad..cb60ddd176 100644 --- a/madl/madl-ferma/pom.xml +++ b/madl/madl-ferma/pom.xml @@ -6,7 +6,7 @@ com.gentics.mesh madl - 1.10.25 + 1.10.26-SNAPSHOT madl-ferma diff --git a/madl/orientdb/pom.xml b/madl/orientdb/pom.xml index 019dd87f2c..6bd99c994c 100644 --- a/madl/orientdb/pom.xml +++ b/madl/orientdb/pom.xml @@ -7,7 +7,7 @@ com.gentics.mesh madl - 1.10.25 + 1.10.26-SNAPSHOT madl-orientdb diff --git a/madl/pom.xml b/madl/pom.xml index f3f7b1b849..d5d79dcaaf 100644 --- a/madl/pom.xml +++ b/madl/pom.xml @@ -7,7 +7,7 @@ com.gentics.mesh mesh - 1.10.25 + 1.10.26-SNAPSHOT madl diff --git a/mdm/api/pom.xml b/mdm/api/pom.xml index 16eee2b351..7d9ff8c5a2 100644 --- a/mdm/api/pom.xml +++ b/mdm/api/pom.xml @@ -7,7 +7,7 @@ com.gentics.mesh mesh-mdm - 1.10.25 + 1.10.26-SNAPSHOT mesh-mdm-api diff --git a/mdm/common/pom.xml b/mdm/common/pom.xml index d8728baadb..42b50ead82 100644 --- a/mdm/common/pom.xml +++ b/mdm/common/pom.xml @@ -7,7 +7,7 @@ com.gentics.mesh mesh-mdm - 1.10.25 + 1.10.26-SNAPSHOT mesh-mdm-common diff --git a/mdm/orientdb-api/pom.xml b/mdm/orientdb-api/pom.xml index 1ec7f1dfd1..0b65ec6f73 100644 --- a/mdm/orientdb-api/pom.xml +++ b/mdm/orientdb-api/pom.xml @@ -7,7 +7,7 @@ com.gentics.mesh mesh-mdm - 1.10.25 + 1.10.26-SNAPSHOT mesh-mdm-orientdb-api diff --git a/mdm/orientdb-wrapper/pom.xml b/mdm/orientdb-wrapper/pom.xml index e9ae6b43fc..a884208869 100644 --- a/mdm/orientdb-wrapper/pom.xml +++ b/mdm/orientdb-wrapper/pom.xml @@ -7,7 +7,7 @@ com.gentics.mesh mesh-mdm - 1.10.25 + 1.10.26-SNAPSHOT mesh-mdm-orientdb-wrapper diff --git a/mdm/pom.xml b/mdm/pom.xml index 8d0c33c29a..b8c0409974 100644 --- a/mdm/pom.xml +++ b/mdm/pom.xml @@ -7,7 +7,7 @@ com.gentics.mesh mesh - 1.10.25 + 1.10.26-SNAPSHOT mesh-mdm diff --git a/performance-tests/pom.xml b/performance-tests/pom.xml index 887713a9ca..06a187c903 100644 --- a/performance-tests/pom.xml +++ b/performance-tests/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh - 1.10.25 + 1.10.26-SNAPSHOT diff --git a/plugin-api/pom.xml b/plugin-api/pom.xml index aca5492fb7..74b279602c 100644 --- a/plugin-api/pom.xml +++ b/plugin-api/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh - 1.10.25 + 1.10.26-SNAPSHOT diff --git a/plugin-bom/pom.xml b/plugin-bom/pom.xml index 749601f893..dcf05fb215 100644 --- a/plugin-bom/pom.xml +++ b/plugin-bom/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh - 1.10.25 + 1.10.26-SNAPSHOT diff --git a/plugin-dep/pom.xml b/plugin-dep/pom.xml index 0a623f822a..329add4660 100644 --- a/plugin-dep/pom.xml +++ b/plugin-dep/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh - 1.10.25 + 1.10.26-SNAPSHOT diff --git a/plugin-parent/pom.xml b/plugin-parent/pom.xml index 2f0d29bacf..7727fbc6fc 100644 --- a/plugin-parent/pom.xml +++ b/plugin-parent/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh - 1.10.25 + 1.10.26-SNAPSHOT diff --git a/pom.xml b/pom.xml index 3e858898b6..dd52898008 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ com.gentics.mesh mesh - 1.10.25 + 1.10.26-SNAPSHOT pom Gentics Mesh diff --git a/rest-client/pom.xml b/rest-client/pom.xml index 6de389b866..0d7b99bc01 100644 --- a/rest-client/pom.xml +++ b/rest-client/pom.xml @@ -11,7 +11,7 @@ com.gentics.mesh mesh - 1.10.25 + 1.10.26-SNAPSHOT diff --git a/rest-model/pom.xml b/rest-model/pom.xml index dbf775ee5a..10e3840857 100644 --- a/rest-model/pom.xml +++ b/rest-model/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh - 1.10.25 + 1.10.26-SNAPSHOT diff --git a/server/pom.xml b/server/pom.xml index 040442cd47..5c6256437d 100644 --- a/server/pom.xml +++ b/server/pom.xml @@ -11,7 +11,7 @@ com.gentics.mesh mesh - 1.10.25 + 1.10.26-SNAPSHOT diff --git a/services/aws-s3-storage/pom.xml b/services/aws-s3-storage/pom.xml index 17242c94aa..b1f05e5594 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.25 + 1.10.26-SNAPSHOT diff --git a/services/image-imgscalr/pom.xml b/services/image-imgscalr/pom.xml index dcb119c0b6..03c65ca60f 100644 --- a/services/image-imgscalr/pom.xml +++ b/services/image-imgscalr/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh-services - 1.10.25 + 1.10.26-SNAPSHOT diff --git a/services/jwt-auth/pom.xml b/services/jwt-auth/pom.xml index 807cf519f3..6b267846e3 100644 --- a/services/jwt-auth/pom.xml +++ b/services/jwt-auth/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh-services - 1.10.25 + 1.10.26-SNAPSHOT diff --git a/services/local-storage/pom.xml b/services/local-storage/pom.xml index ac38db1f5b..c9afd7e7fd 100644 --- a/services/local-storage/pom.xml +++ b/services/local-storage/pom.xml @@ -9,7 +9,7 @@ com.gentics.mesh mesh-services - 1.10.25 + 1.10.26-SNAPSHOT diff --git a/services/metrics-prometheus/pom.xml b/services/metrics-prometheus/pom.xml index ebc3ac073b..6aef4fc598 100644 --- a/services/metrics-prometheus/pom.xml +++ b/services/metrics-prometheus/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh-services - 1.10.25 + 1.10.26-SNAPSHOT diff --git a/services/pom.xml b/services/pom.xml index cd4c520dd1..ef03bb5773 100644 --- a/services/pom.xml +++ b/services/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh - 1.10.25 + 1.10.26-SNAPSHOT diff --git a/tests/api/pom.xml b/tests/api/pom.xml index 3c94534554..6086acd3bd 100644 --- a/tests/api/pom.xml +++ b/tests/api/pom.xml @@ -5,7 +5,7 @@ com.gentics.mesh mesh-tests - 1.10.25 + 1.10.26-SNAPSHOT mesh-tests-api Mesh - Tests API diff --git a/tests/common/pom.xml b/tests/common/pom.xml index b052fc3d33..3fc15806e5 100644 --- a/tests/common/pom.xml +++ b/tests/common/pom.xml @@ -11,7 +11,7 @@ com.gentics.mesh mesh-tests - 1.10.25 + 1.10.26-SNAPSHOT diff --git a/tests/context-api/pom.xml b/tests/context-api/pom.xml index 056bad7959..85bc725805 100644 --- a/tests/context-api/pom.xml +++ b/tests/context-api/pom.xml @@ -5,7 +5,7 @@ com.gentics.mesh mesh-tests - 1.10.25 + 1.10.26-SNAPSHOT mesh-tests-context-api Mesh - Tests context API diff --git a/tests/context-orientdb/pom.xml b/tests/context-orientdb/pom.xml index df0e140189..135393047c 100644 --- a/tests/context-orientdb/pom.xml +++ b/tests/context-orientdb/pom.xml @@ -3,7 +3,7 @@ com.gentics.mesh mesh-tests - 1.10.25 + 1.10.26-SNAPSHOT mesh-tests-context-orientdb Mesh - Tests context - OrientDB diff --git a/tests/orientdb-runner/pom.xml b/tests/orientdb-runner/pom.xml index 4484142b09..65763c1349 100644 --- a/tests/orientdb-runner/pom.xml +++ b/tests/orientdb-runner/pom.xml @@ -5,7 +5,7 @@ com.gentics.mesh mesh-tests - 1.10.25 + 1.10.26-SNAPSHOT mesh-orientdb-tests-runner Mesh - Tests Runner - OrientDB diff --git a/tests/pom.xml b/tests/pom.xml index eecee1bdf8..586db619a5 100644 --- a/tests/pom.xml +++ b/tests/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh - 1.10.25 + 1.10.26-SNAPSHOT diff --git a/tests/tests-admin-gui/pom.xml b/tests/tests-admin-gui/pom.xml index e68cf7d825..7ece4d721f 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.25 + 1.10.26-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 fc54271d0f..069c985548 100644 --- a/tests/tests-api/pom.xml +++ b/tests/tests-api/pom.xml @@ -8,7 +8,7 @@ com.gentics.mesh mesh-tests - 1.10.25 + 1.10.26-SNAPSHOT diff --git a/tests/tests-changelog-system/pom.xml b/tests/tests-changelog-system/pom.xml index 314779395a..0fda4d13bd 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.25 + 1.10.26-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 669bb54d83..3f282efe88 100644 --- a/tests/tests-common/pom.xml +++ b/tests/tests-common/pom.xml @@ -8,7 +8,7 @@ com.gentics.mesh mesh-tests - 1.10.25 + 1.10.26-SNAPSHOT diff --git a/tests/tests-core/pom.xml b/tests/tests-core/pom.xml index 5ae16b027c..9e2721416c 100644 --- a/tests/tests-core/pom.xml +++ b/tests/tests-core/pom.xml @@ -8,7 +8,7 @@ com.gentics.mesh mesh-tests - 1.10.25 + 1.10.26-SNAPSHOT diff --git a/tests/tests-distributed-coordinator/pom.xml b/tests/tests-distributed-coordinator/pom.xml index 0138139067..052ce5eb45 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.25 + 1.10.26-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 e33465926f..ef49102def 100644 --- a/tests/tests-distributed/pom.xml +++ b/tests/tests-distributed/pom.xml @@ -11,7 +11,7 @@ com.gentics.mesh mesh-tests - 1.10.25 + 1.10.26-SNAPSHOT diff --git a/tests/tests-elasticsearch/pom.xml b/tests/tests-elasticsearch/pom.xml index 5d620b5e29..d5d7c5a458 100644 --- a/tests/tests-elasticsearch/pom.xml +++ b/tests/tests-elasticsearch/pom.xml @@ -5,7 +5,7 @@ com.gentics.mesh mesh-tests - 1.10.25 + 1.10.26-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 5589a7bc44..3ef87e0c43 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.25 + 1.10.26-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 8197c94c43..06a184c8b5 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.25 + 1.10.26-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 a1be0f14f7..833526ff71 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.25 + 1.10.26-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 42f8200f60..5d1b255e3d 100644 --- a/tests/tests-server/pom.xml +++ b/tests/tests-server/pom.xml @@ -5,7 +5,7 @@ com.gentics.mesh mesh-tests - 1.10.25 + 1.10.26-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 2bbf51f013..7b915f0729 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.25 + 1.10.26-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 202fd2da4d..cbcb312219 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.25 + 1.10.26-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 c80d5a42ce..599de38043 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.25 + 1.10.26-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 168ec8689c..d4cb19f499 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.25 + 1.10.26-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 bf10602a38..98f0aa9b8f 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.25 + 1.10.26-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 3c48fa221d..c51d4d53f4 100644 --- a/verticles/admin-gui/pom.xml +++ b/verticles/admin-gui/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh-verticles - 1.10.25 + 1.10.26-SNAPSHOT diff --git a/verticles/graphql/pom.xml b/verticles/graphql/pom.xml index 2dba5d2981..c3ab17cb05 100644 --- a/verticles/graphql/pom.xml +++ b/verticles/graphql/pom.xml @@ -9,7 +9,7 @@ com.gentics.mesh mesh-verticles - 1.10.25 + 1.10.26-SNAPSHOT diff --git a/verticles/pom.xml b/verticles/pom.xml index 5b11f7b30b..7ec5d28cc5 100644 --- a/verticles/pom.xml +++ b/verticles/pom.xml @@ -9,7 +9,7 @@ com.gentics.mesh mesh - 1.10.25 + 1.10.26-SNAPSHOT diff --git a/verticles/rest/pom.xml b/verticles/rest/pom.xml index 30daa31fd2..3d242833d2 100644 --- a/verticles/rest/pom.xml +++ b/verticles/rest/pom.xml @@ -10,7 +10,7 @@ com.gentics.mesh mesh-verticles - 1.10.25 + 1.10.26-SNAPSHOT From 651e5f8ac7e2c009c740476f60f0d961244ffa09 Mon Sep 17 00:00:00 2001 From: Serhii Plyhun Date: Tue, 16 Jan 2024 17:02:55 +0100 Subject: [PATCH 5/5] .25 --- LTS-CHANGELOG.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LTS-CHANGELOG.adoc b/LTS-CHANGELOG.adoc index 9a0534c2cc..56a103ba6d 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.25]] -== 1.10.25 (TBD) +== 1.10.25 (17.01.2024) icon:check[] GraphQL: Fetching of micronode fields has been improved to allow batch loading.