From 979420879c048267012ce330af4857e7291b977f Mon Sep 17 00:00:00 2001 From: jakubkochman Date: Wed, 4 Jun 2025 09:21:31 +0200 Subject: [PATCH 01/17] ACS-9646 removed extra space that broke the escaping logic (#3374) --- .../alfresco/repo/site/SiteServiceImpl.java | 2 +- .../repo/site/SiteServiceImplTest.java | 71 +++++++++++-------- 2 files changed, 44 insertions(+), 29 deletions(-) diff --git a/repository/src/main/java/org/alfresco/repo/site/SiteServiceImpl.java b/repository/src/main/java/org/alfresco/repo/site/SiteServiceImpl.java index 58cc093a99..ddac91298f 100644 --- a/repository/src/main/java/org/alfresco/repo/site/SiteServiceImpl.java +++ b/repository/src/main/java/org/alfresco/repo/site/SiteServiceImpl.java @@ -914,7 +914,7 @@ public class SiteServiceImpl extends AbstractLifecycleBean implements SiteServic String[] tokenizedFilter = SearchLanguageConversion.tokenizeString(escNameFilter); // cm:name - query.append(" cm:name:\" "); + query.append(" cm:name:\""); for (int i = 0; i < tokenizedFilter.length; i++) { if (i != 0) // Not first element diff --git a/repository/src/test/java/org/alfresco/repo/site/SiteServiceImplTest.java b/repository/src/test/java/org/alfresco/repo/site/SiteServiceImplTest.java index 26b4e59e76..64224a13ba 100644 --- a/repository/src/test/java/org/alfresco/repo/site/SiteServiceImplTest.java +++ b/repository/src/test/java/org/alfresco/repo/site/SiteServiceImplTest.java @@ -25,26 +25,19 @@ */ package org.alfresco.repo.site; -import static org.junit.Assert.fail; -import static org.mockito.Mockito.spy; -import static org.mockito.Mockito.when; +import static org.assertj.core.api.Assertions.assertThat; +import static org.mockito.ArgumentMatchers.any; +import static org.mockito.Mockito.*; import java.io.Serializable; -import java.util.ArrayList; -import java.util.Arrays; -import java.util.Comparator; -import java.util.HashMap; -import java.util.HashSet; -import java.util.List; -import java.util.Locale; -import java.util.Map; -import java.util.Set; -import java.util.UUID; +import java.util.*; import org.junit.After; import org.junit.Before; import org.junit.Test; import org.junit.experimental.categories.Category; +import org.mockito.ArgumentCaptor; +import org.mockito.Mockito; import org.springframework.extensions.surf.util.I18NUtil; import org.springframework.test.context.ContextConfiguration; import org.springframework.transaction.annotation.Transactional; @@ -56,6 +49,8 @@ import org.alfresco.query.PagingRequest; import org.alfresco.query.PagingResults; import org.alfresco.repo.admin.SysAdminParams; import org.alfresco.repo.admin.SysAdminParamsImpl; +import org.alfresco.repo.cache.MemoryCache; +import org.alfresco.repo.cache.SimpleCache; import org.alfresco.repo.dictionary.DictionaryDAO; import org.alfresco.repo.dictionary.M2Model; import org.alfresco.repo.dictionary.M2Property; @@ -65,6 +60,7 @@ import org.alfresco.repo.management.subsystems.ChildApplicationContextFactory; import org.alfresco.repo.node.archive.NodeArchiveService; import org.alfresco.repo.node.getchildren.FilterProp; import org.alfresco.repo.node.getchildren.FilterPropString; +import org.alfresco.repo.search.EmptyResultSet; import org.alfresco.repo.security.authentication.AuthenticationComponent; import org.alfresco.repo.security.authentication.AuthenticationUtil; import org.alfresco.repo.security.authentication.AuthenticationUtil.RunAsWork; @@ -78,21 +74,10 @@ import org.alfresco.service.cmr.dictionary.DictionaryService; import org.alfresco.service.cmr.dictionary.TypeDefinition; import org.alfresco.service.cmr.model.FileFolderService; import org.alfresco.service.cmr.model.FileInfo; -import org.alfresco.service.cmr.repository.ChildAssociationRef; -import org.alfresco.service.cmr.repository.ContentService; -import org.alfresco.service.cmr.repository.ContentWriter; -import org.alfresco.service.cmr.repository.CopyService; -import org.alfresco.service.cmr.repository.NodeRef; -import org.alfresco.service.cmr.repository.NodeService; -import org.alfresco.service.cmr.repository.ScriptLocation; -import org.alfresco.service.cmr.repository.ScriptService; -import org.alfresco.service.cmr.repository.StoreRef; -import org.alfresco.service.cmr.security.AccessPermission; -import org.alfresco.service.cmr.security.AccessStatus; -import org.alfresco.service.cmr.security.AuthorityService; -import org.alfresco.service.cmr.security.AuthorityType; -import org.alfresco.service.cmr.security.MutableAuthenticationService; -import org.alfresco.service.cmr.security.PermissionService; +import org.alfresco.service.cmr.repository.*; +import org.alfresco.service.cmr.search.SearchParameters; +import org.alfresco.service.cmr.search.SearchService; +import org.alfresco.service.cmr.security.*; import org.alfresco.service.cmr.site.SiteInfo; import org.alfresco.service.cmr.site.SiteMemberInfo; import org.alfresco.service.cmr.site.SiteService; @@ -3129,4 +3114,34 @@ public class SiteServiceImplTest extends BaseAlfrescoSpringTest siteService.deleteSite(shortName); } + + @Test + public void testFindSitesQueryWithReservedCharacter() + { + // given + SiteServiceImpl cut = new SiteServiceImpl(); + + ArgumentCaptor searchParametersCaptor = ArgumentCaptor.forClass(SearchParameters.class); + + SimpleCache cache = new MemoryCache<>(); + cache.put("key.sitehome.noderef", new NodeRef("mock", "mock", "mock")); + cut.setSingletonCache(cache); + + SearchService searchService = Mockito.mock(SearchService.class); + cut.setSearchService(searchService); + when(searchService.query(any(SearchParameters.class))).thenReturn(new EmptyResultSet()); + + // when + cut.findSites("-chu", 5); + + // then + verify(searchService).query(searchParametersCaptor.capture()); + SearchParameters actualSearchParameters = searchParametersCaptor.getValue(); + assertThat(actualSearchParameters.getQuery()) + .isEqualTo("+TYPE:\"{http://www.alfresco.org/model/site/1.0}site\"" + + " AND ( cm:name:\"\\-chu*\"" + + " OR cm:title: (\"\\-chu*\" )" + + " OR cm:description:\"\\-chu\")"); + + } } From 231075fd5ebabddd7c81964b5d9d1ec78b20e3a5 Mon Sep 17 00:00:00 2001 From: alfresco-build <8039454+alfresco-build@users.noreply.github.com> Date: Wed, 4 Jun 2025 08:13:46 +0000 Subject: [PATCH 02/17] [maven-release-plugin][skip ci] prepare release 25.2.0.41 --- amps/ags/pom.xml | 2 +- amps/ags/rm-automation/pom.xml | 2 +- .../rm-automation/rm-automation-community-rest-api/pom.xml | 2 +- amps/ags/rm-community/pom.xml | 2 +- amps/ags/rm-community/rm-community-repo/pom.xml | 2 +- amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml | 2 +- amps/pom.xml | 2 +- amps/share-services/pom.xml | 2 +- core/pom.xml | 2 +- data-model/pom.xml | 2 +- mmt/pom.xml | 2 +- packaging/distribution/pom.xml | 2 +- packaging/docker-alfresco/pom.xml | 2 +- packaging/pom.xml | 2 +- packaging/tests/pom.xml | 2 +- packaging/tests/tas-cmis/pom.xml | 2 +- packaging/tests/tas-email/pom.xml | 2 +- packaging/tests/tas-integration/pom.xml | 2 +- packaging/tests/tas-restapi/pom.xml | 2 +- packaging/tests/tas-webdav/pom.xml | 2 +- packaging/war/pom.xml | 2 +- pom.xml | 4 ++-- remote-api/pom.xml | 2 +- repository/pom.xml | 2 +- 24 files changed, 25 insertions(+), 25 deletions(-) diff --git a/amps/ags/pom.xml b/amps/ags/pom.xml index c1d02841ba..000f1aa9ad 100644 --- a/amps/ags/pom.xml +++ b/amps/ags/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-amps - 25.2.0.41-SNAPSHOT + 25.2.0.41 diff --git a/amps/ags/rm-automation/pom.xml b/amps/ags/rm-automation/pom.xml index 5605da7449..82dd4b769f 100644 --- a/amps/ags/rm-automation/pom.xml +++ b/amps/ags/rm-automation/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-community-parent - 25.2.0.41-SNAPSHOT + 25.2.0.41 diff --git a/amps/ags/rm-automation/rm-automation-community-rest-api/pom.xml b/amps/ags/rm-automation/rm-automation-community-rest-api/pom.xml index f8419f396a..bebae447a4 100644 --- a/amps/ags/rm-automation/rm-automation-community-rest-api/pom.xml +++ b/amps/ags/rm-automation/rm-automation-community-rest-api/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-automation-community-repo - 25.2.0.41-SNAPSHOT + 25.2.0.41 diff --git a/amps/ags/rm-community/pom.xml b/amps/ags/rm-community/pom.xml index 7b996f7e42..e0bfb85d6b 100644 --- a/amps/ags/rm-community/pom.xml +++ b/amps/ags/rm-community/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-community-parent - 25.2.0.41-SNAPSHOT + 25.2.0.41 diff --git a/amps/ags/rm-community/rm-community-repo/pom.xml b/amps/ags/rm-community/rm-community-repo/pom.xml index 1604bf3b70..a00a1eeef2 100644 --- a/amps/ags/rm-community/rm-community-repo/pom.xml +++ b/amps/ags/rm-community/rm-community-repo/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-governance-services-community-repo-parent - 25.2.0.41-SNAPSHOT + 25.2.0.41 diff --git a/amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml b/amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml index b1bf6b2fef..a257233b93 100644 --- a/amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml +++ b/amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-community-repo-parent - 25.2.0.41-SNAPSHOT + 25.2.0.41 diff --git a/amps/pom.xml b/amps/pom.xml index 23663d62f3..cf5e261708 100644 --- a/amps/pom.xml +++ b/amps/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.2.0.41-SNAPSHOT + 25.2.0.41 diff --git a/amps/share-services/pom.xml b/amps/share-services/pom.xml index 75e0be2d9a..31298de014 100644 --- a/amps/share-services/pom.xml +++ b/amps/share-services/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-community-repo-amps - 25.2.0.41-SNAPSHOT + 25.2.0.41 diff --git a/core/pom.xml b/core/pom.xml index 68e79460e6..c464fdebc9 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.2.0.41-SNAPSHOT + 25.2.0.41 diff --git a/data-model/pom.xml b/data-model/pom.xml index 0a8150baf5..2798230e84 100644 --- a/data-model/pom.xml +++ b/data-model/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.2.0.41-SNAPSHOT + 25.2.0.41 diff --git a/mmt/pom.xml b/mmt/pom.xml index 8208d96d56..96100f99db 100644 --- a/mmt/pom.xml +++ b/mmt/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.2.0.41-SNAPSHOT + 25.2.0.41 diff --git a/packaging/distribution/pom.xml b/packaging/distribution/pom.xml index fc021a0e98..7eab86360a 100644 --- a/packaging/distribution/pom.xml +++ b/packaging/distribution/pom.xml @@ -9,6 +9,6 @@ org.alfresco alfresco-community-repo-packaging - 25.2.0.41-SNAPSHOT + 25.2.0.41 diff --git a/packaging/docker-alfresco/pom.xml b/packaging/docker-alfresco/pom.xml index 136c0d3a9b..78644a7e9c 100644 --- a/packaging/docker-alfresco/pom.xml +++ b/packaging/docker-alfresco/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-packaging - 25.2.0.41-SNAPSHOT + 25.2.0.41 diff --git a/packaging/pom.xml b/packaging/pom.xml index 7976eca723..752c00082d 100644 --- a/packaging/pom.xml +++ b/packaging/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.2.0.41-SNAPSHOT + 25.2.0.41 diff --git a/packaging/tests/pom.xml b/packaging/tests/pom.xml index 8db3306b21..2dcd7d7fa1 100644 --- a/packaging/tests/pom.xml +++ b/packaging/tests/pom.xml @@ -6,7 +6,7 @@ org.alfresco alfresco-community-repo-packaging - 25.2.0.41-SNAPSHOT + 25.2.0.41 diff --git a/packaging/tests/tas-cmis/pom.xml b/packaging/tests/tas-cmis/pom.xml index c03898bf9d..bf6811f3d1 100644 --- a/packaging/tests/tas-cmis/pom.xml +++ b/packaging/tests/tas-cmis/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-tests - 25.2.0.41-SNAPSHOT + 25.2.0.41 diff --git a/packaging/tests/tas-email/pom.xml b/packaging/tests/tas-email/pom.xml index 9f5d5d9df1..198b471796 100644 --- a/packaging/tests/tas-email/pom.xml +++ b/packaging/tests/tas-email/pom.xml @@ -9,7 +9,7 @@ org.alfresco alfresco-community-repo-tests - 25.2.0.41-SNAPSHOT + 25.2.0.41 diff --git a/packaging/tests/tas-integration/pom.xml b/packaging/tests/tas-integration/pom.xml index 5e0e02296b..ef253719c7 100644 --- a/packaging/tests/tas-integration/pom.xml +++ b/packaging/tests/tas-integration/pom.xml @@ -9,7 +9,7 @@ org.alfresco alfresco-community-repo-tests - 25.2.0.41-SNAPSHOT + 25.2.0.41 diff --git a/packaging/tests/tas-restapi/pom.xml b/packaging/tests/tas-restapi/pom.xml index b2c0a149b9..a4fe529265 100644 --- a/packaging/tests/tas-restapi/pom.xml +++ b/packaging/tests/tas-restapi/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-community-repo-tests - 25.2.0.41-SNAPSHOT + 25.2.0.41 diff --git a/packaging/tests/tas-webdav/pom.xml b/packaging/tests/tas-webdav/pom.xml index 012d44f2be..99dd607227 100644 --- a/packaging/tests/tas-webdav/pom.xml +++ b/packaging/tests/tas-webdav/pom.xml @@ -9,7 +9,7 @@ org.alfresco alfresco-community-repo-tests - 25.2.0.41-SNAPSHOT + 25.2.0.41 diff --git a/packaging/war/pom.xml b/packaging/war/pom.xml index 73eb9c506f..da49366d9a 100644 --- a/packaging/war/pom.xml +++ b/packaging/war/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-packaging - 25.2.0.41-SNAPSHOT + 25.2.0.41 diff --git a/pom.xml b/pom.xml index 6c13291307..debf1ac723 100644 --- a/pom.xml +++ b/pom.xml @@ -2,7 +2,7 @@ 4.0.0 alfresco-community-repo - 25.2.0.41-SNAPSHOT + 25.2.0.41 pom Alfresco Community Repo Parent @@ -154,7 +154,7 @@ scm:git:https://github.com/Alfresco/alfresco-community-repo.git scm:git:https://github.com/Alfresco/alfresco-community-repo.git https://github.com/Alfresco/alfresco-community-repo - HEAD + 25.2.0.41 diff --git a/remote-api/pom.xml b/remote-api/pom.xml index 26c8d784b8..b917556428 100644 --- a/remote-api/pom.xml +++ b/remote-api/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.2.0.41-SNAPSHOT + 25.2.0.41 diff --git a/repository/pom.xml b/repository/pom.xml index 8c4e7a3c18..a6e8ae3de2 100644 --- a/repository/pom.xml +++ b/repository/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.2.0.41-SNAPSHOT + 25.2.0.41 From f1862c96368656c33faaba40d020157d382ee23d Mon Sep 17 00:00:00 2001 From: alfresco-build <8039454+alfresco-build@users.noreply.github.com> Date: Wed, 4 Jun 2025 08:13:48 +0000 Subject: [PATCH 03/17] [maven-release-plugin][skip ci] prepare for next development iteration --- amps/ags/pom.xml | 2 +- amps/ags/rm-automation/pom.xml | 2 +- .../rm-automation/rm-automation-community-rest-api/pom.xml | 2 +- amps/ags/rm-community/pom.xml | 2 +- amps/ags/rm-community/rm-community-repo/pom.xml | 2 +- amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml | 2 +- amps/pom.xml | 2 +- amps/share-services/pom.xml | 2 +- core/pom.xml | 2 +- data-model/pom.xml | 2 +- mmt/pom.xml | 2 +- packaging/distribution/pom.xml | 2 +- packaging/docker-alfresco/pom.xml | 2 +- packaging/pom.xml | 2 +- packaging/tests/pom.xml | 2 +- packaging/tests/tas-cmis/pom.xml | 2 +- packaging/tests/tas-email/pom.xml | 2 +- packaging/tests/tas-integration/pom.xml | 2 +- packaging/tests/tas-restapi/pom.xml | 2 +- packaging/tests/tas-webdav/pom.xml | 2 +- packaging/war/pom.xml | 2 +- pom.xml | 4 ++-- remote-api/pom.xml | 2 +- repository/pom.xml | 2 +- 24 files changed, 25 insertions(+), 25 deletions(-) diff --git a/amps/ags/pom.xml b/amps/ags/pom.xml index 000f1aa9ad..cdcc4e0d12 100644 --- a/amps/ags/pom.xml +++ b/amps/ags/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-amps - 25.2.0.41 + 25.2.0.42-SNAPSHOT diff --git a/amps/ags/rm-automation/pom.xml b/amps/ags/rm-automation/pom.xml index 82dd4b769f..d59af29205 100644 --- a/amps/ags/rm-automation/pom.xml +++ b/amps/ags/rm-automation/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-community-parent - 25.2.0.41 + 25.2.0.42-SNAPSHOT diff --git a/amps/ags/rm-automation/rm-automation-community-rest-api/pom.xml b/amps/ags/rm-automation/rm-automation-community-rest-api/pom.xml index bebae447a4..abc6bda273 100644 --- a/amps/ags/rm-automation/rm-automation-community-rest-api/pom.xml +++ b/amps/ags/rm-automation/rm-automation-community-rest-api/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-automation-community-repo - 25.2.0.41 + 25.2.0.42-SNAPSHOT diff --git a/amps/ags/rm-community/pom.xml b/amps/ags/rm-community/pom.xml index e0bfb85d6b..69271487dc 100644 --- a/amps/ags/rm-community/pom.xml +++ b/amps/ags/rm-community/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-community-parent - 25.2.0.41 + 25.2.0.42-SNAPSHOT diff --git a/amps/ags/rm-community/rm-community-repo/pom.xml b/amps/ags/rm-community/rm-community-repo/pom.xml index a00a1eeef2..aeecf074de 100644 --- a/amps/ags/rm-community/rm-community-repo/pom.xml +++ b/amps/ags/rm-community/rm-community-repo/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-governance-services-community-repo-parent - 25.2.0.41 + 25.2.0.42-SNAPSHOT diff --git a/amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml b/amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml index a257233b93..0f592d62f6 100644 --- a/amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml +++ b/amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-community-repo-parent - 25.2.0.41 + 25.2.0.42-SNAPSHOT diff --git a/amps/pom.xml b/amps/pom.xml index cf5e261708..3b8a51181a 100644 --- a/amps/pom.xml +++ b/amps/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.2.0.41 + 25.2.0.42-SNAPSHOT diff --git a/amps/share-services/pom.xml b/amps/share-services/pom.xml index 31298de014..56a98e1ddc 100644 --- a/amps/share-services/pom.xml +++ b/amps/share-services/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-community-repo-amps - 25.2.0.41 + 25.2.0.42-SNAPSHOT diff --git a/core/pom.xml b/core/pom.xml index c464fdebc9..eda91e38af 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.2.0.41 + 25.2.0.42-SNAPSHOT diff --git a/data-model/pom.xml b/data-model/pom.xml index 2798230e84..db147b0933 100644 --- a/data-model/pom.xml +++ b/data-model/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.2.0.41 + 25.2.0.42-SNAPSHOT diff --git a/mmt/pom.xml b/mmt/pom.xml index 96100f99db..63d2601d24 100644 --- a/mmt/pom.xml +++ b/mmt/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.2.0.41 + 25.2.0.42-SNAPSHOT diff --git a/packaging/distribution/pom.xml b/packaging/distribution/pom.xml index 7eab86360a..6054defab7 100644 --- a/packaging/distribution/pom.xml +++ b/packaging/distribution/pom.xml @@ -9,6 +9,6 @@ org.alfresco alfresco-community-repo-packaging - 25.2.0.41 + 25.2.0.42-SNAPSHOT diff --git a/packaging/docker-alfresco/pom.xml b/packaging/docker-alfresco/pom.xml index 78644a7e9c..9670d54f38 100644 --- a/packaging/docker-alfresco/pom.xml +++ b/packaging/docker-alfresco/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-packaging - 25.2.0.41 + 25.2.0.42-SNAPSHOT diff --git a/packaging/pom.xml b/packaging/pom.xml index 752c00082d..caf116098d 100644 --- a/packaging/pom.xml +++ b/packaging/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.2.0.41 + 25.2.0.42-SNAPSHOT diff --git a/packaging/tests/pom.xml b/packaging/tests/pom.xml index 2dcd7d7fa1..312229fc04 100644 --- a/packaging/tests/pom.xml +++ b/packaging/tests/pom.xml @@ -6,7 +6,7 @@ org.alfresco alfresco-community-repo-packaging - 25.2.0.41 + 25.2.0.42-SNAPSHOT diff --git a/packaging/tests/tas-cmis/pom.xml b/packaging/tests/tas-cmis/pom.xml index bf6811f3d1..5012e41300 100644 --- a/packaging/tests/tas-cmis/pom.xml +++ b/packaging/tests/tas-cmis/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-tests - 25.2.0.41 + 25.2.0.42-SNAPSHOT diff --git a/packaging/tests/tas-email/pom.xml b/packaging/tests/tas-email/pom.xml index 198b471796..b24f13e205 100644 --- a/packaging/tests/tas-email/pom.xml +++ b/packaging/tests/tas-email/pom.xml @@ -9,7 +9,7 @@ org.alfresco alfresco-community-repo-tests - 25.2.0.41 + 25.2.0.42-SNAPSHOT diff --git a/packaging/tests/tas-integration/pom.xml b/packaging/tests/tas-integration/pom.xml index ef253719c7..2aeb9a9c2c 100644 --- a/packaging/tests/tas-integration/pom.xml +++ b/packaging/tests/tas-integration/pom.xml @@ -9,7 +9,7 @@ org.alfresco alfresco-community-repo-tests - 25.2.0.41 + 25.2.0.42-SNAPSHOT diff --git a/packaging/tests/tas-restapi/pom.xml b/packaging/tests/tas-restapi/pom.xml index a4fe529265..c53b8cb866 100644 --- a/packaging/tests/tas-restapi/pom.xml +++ b/packaging/tests/tas-restapi/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-community-repo-tests - 25.2.0.41 + 25.2.0.42-SNAPSHOT diff --git a/packaging/tests/tas-webdav/pom.xml b/packaging/tests/tas-webdav/pom.xml index 99dd607227..c9fdb0e2d7 100644 --- a/packaging/tests/tas-webdav/pom.xml +++ b/packaging/tests/tas-webdav/pom.xml @@ -9,7 +9,7 @@ org.alfresco alfresco-community-repo-tests - 25.2.0.41 + 25.2.0.42-SNAPSHOT diff --git a/packaging/war/pom.xml b/packaging/war/pom.xml index da49366d9a..fa25bc9562 100644 --- a/packaging/war/pom.xml +++ b/packaging/war/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-packaging - 25.2.0.41 + 25.2.0.42-SNAPSHOT diff --git a/pom.xml b/pom.xml index debf1ac723..06b92db8f4 100644 --- a/pom.xml +++ b/pom.xml @@ -2,7 +2,7 @@ 4.0.0 alfresco-community-repo - 25.2.0.41 + 25.2.0.42-SNAPSHOT pom Alfresco Community Repo Parent @@ -154,7 +154,7 @@ scm:git:https://github.com/Alfresco/alfresco-community-repo.git scm:git:https://github.com/Alfresco/alfresco-community-repo.git https://github.com/Alfresco/alfresco-community-repo - 25.2.0.41 + HEAD diff --git a/remote-api/pom.xml b/remote-api/pom.xml index b917556428..425f06090e 100644 --- a/remote-api/pom.xml +++ b/remote-api/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.2.0.41 + 25.2.0.42-SNAPSHOT diff --git a/repository/pom.xml b/repository/pom.xml index a6e8ae3de2..a051663650 100644 --- a/repository/pom.xml +++ b/repository/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.2.0.41 + 25.2.0.42-SNAPSHOT From 6f442a703a55013a4192e46902506b9db9765f13 Mon Sep 17 00:00:00 2001 From: Alfresco CI User Date: Sun, 8 Jun 2025 00:05:12 +0000 Subject: [PATCH 04/17] [force] Force release for 2025-06-08. From 09a254e5fdc47f92dd2c444581e34abca2a6fbcf Mon Sep 17 00:00:00 2001 From: alfresco-build <8039454+alfresco-build@users.noreply.github.com> Date: Sun, 8 Jun 2025 00:08:11 +0000 Subject: [PATCH 05/17] [maven-release-plugin][skip ci] prepare release 25.2.0.42 --- amps/ags/pom.xml | 2 +- amps/ags/rm-automation/pom.xml | 2 +- .../rm-automation/rm-automation-community-rest-api/pom.xml | 2 +- amps/ags/rm-community/pom.xml | 2 +- amps/ags/rm-community/rm-community-repo/pom.xml | 2 +- amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml | 2 +- amps/pom.xml | 2 +- amps/share-services/pom.xml | 2 +- core/pom.xml | 2 +- data-model/pom.xml | 2 +- mmt/pom.xml | 2 +- packaging/distribution/pom.xml | 2 +- packaging/docker-alfresco/pom.xml | 2 +- packaging/pom.xml | 2 +- packaging/tests/pom.xml | 2 +- packaging/tests/tas-cmis/pom.xml | 2 +- packaging/tests/tas-email/pom.xml | 2 +- packaging/tests/tas-integration/pom.xml | 2 +- packaging/tests/tas-restapi/pom.xml | 2 +- packaging/tests/tas-webdav/pom.xml | 2 +- packaging/war/pom.xml | 2 +- pom.xml | 4 ++-- remote-api/pom.xml | 2 +- repository/pom.xml | 2 +- 24 files changed, 25 insertions(+), 25 deletions(-) diff --git a/amps/ags/pom.xml b/amps/ags/pom.xml index cdcc4e0d12..e43278f0aa 100644 --- a/amps/ags/pom.xml +++ b/amps/ags/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-amps - 25.2.0.42-SNAPSHOT + 25.2.0.42 diff --git a/amps/ags/rm-automation/pom.xml b/amps/ags/rm-automation/pom.xml index d59af29205..e0f882d98f 100644 --- a/amps/ags/rm-automation/pom.xml +++ b/amps/ags/rm-automation/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-community-parent - 25.2.0.42-SNAPSHOT + 25.2.0.42 diff --git a/amps/ags/rm-automation/rm-automation-community-rest-api/pom.xml b/amps/ags/rm-automation/rm-automation-community-rest-api/pom.xml index abc6bda273..9c61e948af 100644 --- a/amps/ags/rm-automation/rm-automation-community-rest-api/pom.xml +++ b/amps/ags/rm-automation/rm-automation-community-rest-api/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-automation-community-repo - 25.2.0.42-SNAPSHOT + 25.2.0.42 diff --git a/amps/ags/rm-community/pom.xml b/amps/ags/rm-community/pom.xml index 69271487dc..2d2091581f 100644 --- a/amps/ags/rm-community/pom.xml +++ b/amps/ags/rm-community/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-community-parent - 25.2.0.42-SNAPSHOT + 25.2.0.42 diff --git a/amps/ags/rm-community/rm-community-repo/pom.xml b/amps/ags/rm-community/rm-community-repo/pom.xml index aeecf074de..f575aa9212 100644 --- a/amps/ags/rm-community/rm-community-repo/pom.xml +++ b/amps/ags/rm-community/rm-community-repo/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-governance-services-community-repo-parent - 25.2.0.42-SNAPSHOT + 25.2.0.42 diff --git a/amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml b/amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml index 0f592d62f6..83e09543e3 100644 --- a/amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml +++ b/amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-community-repo-parent - 25.2.0.42-SNAPSHOT + 25.2.0.42 diff --git a/amps/pom.xml b/amps/pom.xml index 3b8a51181a..2a9146e5b8 100644 --- a/amps/pom.xml +++ b/amps/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.2.0.42-SNAPSHOT + 25.2.0.42 diff --git a/amps/share-services/pom.xml b/amps/share-services/pom.xml index 56a98e1ddc..3061c5a44f 100644 --- a/amps/share-services/pom.xml +++ b/amps/share-services/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-community-repo-amps - 25.2.0.42-SNAPSHOT + 25.2.0.42 diff --git a/core/pom.xml b/core/pom.xml index eda91e38af..3faeb6b7c5 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.2.0.42-SNAPSHOT + 25.2.0.42 diff --git a/data-model/pom.xml b/data-model/pom.xml index db147b0933..ca53419f10 100644 --- a/data-model/pom.xml +++ b/data-model/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.2.0.42-SNAPSHOT + 25.2.0.42 diff --git a/mmt/pom.xml b/mmt/pom.xml index 63d2601d24..6803a3aa4f 100644 --- a/mmt/pom.xml +++ b/mmt/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.2.0.42-SNAPSHOT + 25.2.0.42 diff --git a/packaging/distribution/pom.xml b/packaging/distribution/pom.xml index 6054defab7..62a290f484 100644 --- a/packaging/distribution/pom.xml +++ b/packaging/distribution/pom.xml @@ -9,6 +9,6 @@ org.alfresco alfresco-community-repo-packaging - 25.2.0.42-SNAPSHOT + 25.2.0.42 diff --git a/packaging/docker-alfresco/pom.xml b/packaging/docker-alfresco/pom.xml index 9670d54f38..3c92333a37 100644 --- a/packaging/docker-alfresco/pom.xml +++ b/packaging/docker-alfresco/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-packaging - 25.2.0.42-SNAPSHOT + 25.2.0.42 diff --git a/packaging/pom.xml b/packaging/pom.xml index caf116098d..7e5aac4dbf 100644 --- a/packaging/pom.xml +++ b/packaging/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.2.0.42-SNAPSHOT + 25.2.0.42 diff --git a/packaging/tests/pom.xml b/packaging/tests/pom.xml index 312229fc04..219b53d193 100644 --- a/packaging/tests/pom.xml +++ b/packaging/tests/pom.xml @@ -6,7 +6,7 @@ org.alfresco alfresco-community-repo-packaging - 25.2.0.42-SNAPSHOT + 25.2.0.42 diff --git a/packaging/tests/tas-cmis/pom.xml b/packaging/tests/tas-cmis/pom.xml index 5012e41300..29304416d1 100644 --- a/packaging/tests/tas-cmis/pom.xml +++ b/packaging/tests/tas-cmis/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-tests - 25.2.0.42-SNAPSHOT + 25.2.0.42 diff --git a/packaging/tests/tas-email/pom.xml b/packaging/tests/tas-email/pom.xml index b24f13e205..46f9405265 100644 --- a/packaging/tests/tas-email/pom.xml +++ b/packaging/tests/tas-email/pom.xml @@ -9,7 +9,7 @@ org.alfresco alfresco-community-repo-tests - 25.2.0.42-SNAPSHOT + 25.2.0.42 diff --git a/packaging/tests/tas-integration/pom.xml b/packaging/tests/tas-integration/pom.xml index 2aeb9a9c2c..ed61a518e4 100644 --- a/packaging/tests/tas-integration/pom.xml +++ b/packaging/tests/tas-integration/pom.xml @@ -9,7 +9,7 @@ org.alfresco alfresco-community-repo-tests - 25.2.0.42-SNAPSHOT + 25.2.0.42 diff --git a/packaging/tests/tas-restapi/pom.xml b/packaging/tests/tas-restapi/pom.xml index c53b8cb866..d51538504f 100644 --- a/packaging/tests/tas-restapi/pom.xml +++ b/packaging/tests/tas-restapi/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-community-repo-tests - 25.2.0.42-SNAPSHOT + 25.2.0.42 diff --git a/packaging/tests/tas-webdav/pom.xml b/packaging/tests/tas-webdav/pom.xml index c9fdb0e2d7..2ac6a95977 100644 --- a/packaging/tests/tas-webdav/pom.xml +++ b/packaging/tests/tas-webdav/pom.xml @@ -9,7 +9,7 @@ org.alfresco alfresco-community-repo-tests - 25.2.0.42-SNAPSHOT + 25.2.0.42 diff --git a/packaging/war/pom.xml b/packaging/war/pom.xml index fa25bc9562..d6b2f52a89 100644 --- a/packaging/war/pom.xml +++ b/packaging/war/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-packaging - 25.2.0.42-SNAPSHOT + 25.2.0.42 diff --git a/pom.xml b/pom.xml index 06b92db8f4..2661aa3c7b 100644 --- a/pom.xml +++ b/pom.xml @@ -2,7 +2,7 @@ 4.0.0 alfresco-community-repo - 25.2.0.42-SNAPSHOT + 25.2.0.42 pom Alfresco Community Repo Parent @@ -154,7 +154,7 @@ scm:git:https://github.com/Alfresco/alfresco-community-repo.git scm:git:https://github.com/Alfresco/alfresco-community-repo.git https://github.com/Alfresco/alfresco-community-repo - HEAD + 25.2.0.42 diff --git a/remote-api/pom.xml b/remote-api/pom.xml index 425f06090e..e15c3bbecb 100644 --- a/remote-api/pom.xml +++ b/remote-api/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.2.0.42-SNAPSHOT + 25.2.0.42 diff --git a/repository/pom.xml b/repository/pom.xml index a051663650..240c02bc9b 100644 --- a/repository/pom.xml +++ b/repository/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.2.0.42-SNAPSHOT + 25.2.0.42 From 698f9b15ce6810b0690fa6efd6986397afdbebd6 Mon Sep 17 00:00:00 2001 From: alfresco-build <8039454+alfresco-build@users.noreply.github.com> Date: Sun, 8 Jun 2025 00:08:13 +0000 Subject: [PATCH 06/17] [maven-release-plugin][skip ci] prepare for next development iteration --- amps/ags/pom.xml | 2 +- amps/ags/rm-automation/pom.xml | 2 +- .../rm-automation/rm-automation-community-rest-api/pom.xml | 2 +- amps/ags/rm-community/pom.xml | 2 +- amps/ags/rm-community/rm-community-repo/pom.xml | 2 +- amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml | 2 +- amps/pom.xml | 2 +- amps/share-services/pom.xml | 2 +- core/pom.xml | 2 +- data-model/pom.xml | 2 +- mmt/pom.xml | 2 +- packaging/distribution/pom.xml | 2 +- packaging/docker-alfresco/pom.xml | 2 +- packaging/pom.xml | 2 +- packaging/tests/pom.xml | 2 +- packaging/tests/tas-cmis/pom.xml | 2 +- packaging/tests/tas-email/pom.xml | 2 +- packaging/tests/tas-integration/pom.xml | 2 +- packaging/tests/tas-restapi/pom.xml | 2 +- packaging/tests/tas-webdav/pom.xml | 2 +- packaging/war/pom.xml | 2 +- pom.xml | 4 ++-- remote-api/pom.xml | 2 +- repository/pom.xml | 2 +- 24 files changed, 25 insertions(+), 25 deletions(-) diff --git a/amps/ags/pom.xml b/amps/ags/pom.xml index e43278f0aa..1d18c76dde 100644 --- a/amps/ags/pom.xml +++ b/amps/ags/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-amps - 25.2.0.42 + 25.2.0.43-SNAPSHOT diff --git a/amps/ags/rm-automation/pom.xml b/amps/ags/rm-automation/pom.xml index e0f882d98f..735db6f8f7 100644 --- a/amps/ags/rm-automation/pom.xml +++ b/amps/ags/rm-automation/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-community-parent - 25.2.0.42 + 25.2.0.43-SNAPSHOT diff --git a/amps/ags/rm-automation/rm-automation-community-rest-api/pom.xml b/amps/ags/rm-automation/rm-automation-community-rest-api/pom.xml index 9c61e948af..8c3a2916bc 100644 --- a/amps/ags/rm-automation/rm-automation-community-rest-api/pom.xml +++ b/amps/ags/rm-automation/rm-automation-community-rest-api/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-automation-community-repo - 25.2.0.42 + 25.2.0.43-SNAPSHOT diff --git a/amps/ags/rm-community/pom.xml b/amps/ags/rm-community/pom.xml index 2d2091581f..e0b14b9c13 100644 --- a/amps/ags/rm-community/pom.xml +++ b/amps/ags/rm-community/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-community-parent - 25.2.0.42 + 25.2.0.43-SNAPSHOT diff --git a/amps/ags/rm-community/rm-community-repo/pom.xml b/amps/ags/rm-community/rm-community-repo/pom.xml index f575aa9212..fb3eb8265c 100644 --- a/amps/ags/rm-community/rm-community-repo/pom.xml +++ b/amps/ags/rm-community/rm-community-repo/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-governance-services-community-repo-parent - 25.2.0.42 + 25.2.0.43-SNAPSHOT diff --git a/amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml b/amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml index 83e09543e3..3f67081630 100644 --- a/amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml +++ b/amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-community-repo-parent - 25.2.0.42 + 25.2.0.43-SNAPSHOT diff --git a/amps/pom.xml b/amps/pom.xml index 2a9146e5b8..719aea8e7a 100644 --- a/amps/pom.xml +++ b/amps/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.2.0.42 + 25.2.0.43-SNAPSHOT diff --git a/amps/share-services/pom.xml b/amps/share-services/pom.xml index 3061c5a44f..657f1618d9 100644 --- a/amps/share-services/pom.xml +++ b/amps/share-services/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-community-repo-amps - 25.2.0.42 + 25.2.0.43-SNAPSHOT diff --git a/core/pom.xml b/core/pom.xml index 3faeb6b7c5..f41f3d5950 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.2.0.42 + 25.2.0.43-SNAPSHOT diff --git a/data-model/pom.xml b/data-model/pom.xml index ca53419f10..7be7d26bc7 100644 --- a/data-model/pom.xml +++ b/data-model/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.2.0.42 + 25.2.0.43-SNAPSHOT diff --git a/mmt/pom.xml b/mmt/pom.xml index 6803a3aa4f..ad28ef2fa9 100644 --- a/mmt/pom.xml +++ b/mmt/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.2.0.42 + 25.2.0.43-SNAPSHOT diff --git a/packaging/distribution/pom.xml b/packaging/distribution/pom.xml index 62a290f484..456faa3e73 100644 --- a/packaging/distribution/pom.xml +++ b/packaging/distribution/pom.xml @@ -9,6 +9,6 @@ org.alfresco alfresco-community-repo-packaging - 25.2.0.42 + 25.2.0.43-SNAPSHOT diff --git a/packaging/docker-alfresco/pom.xml b/packaging/docker-alfresco/pom.xml index 3c92333a37..4ec61f2d6b 100644 --- a/packaging/docker-alfresco/pom.xml +++ b/packaging/docker-alfresco/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-packaging - 25.2.0.42 + 25.2.0.43-SNAPSHOT diff --git a/packaging/pom.xml b/packaging/pom.xml index 7e5aac4dbf..d5651ba2d3 100644 --- a/packaging/pom.xml +++ b/packaging/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.2.0.42 + 25.2.0.43-SNAPSHOT diff --git a/packaging/tests/pom.xml b/packaging/tests/pom.xml index 219b53d193..5d6999a15a 100644 --- a/packaging/tests/pom.xml +++ b/packaging/tests/pom.xml @@ -6,7 +6,7 @@ org.alfresco alfresco-community-repo-packaging - 25.2.0.42 + 25.2.0.43-SNAPSHOT diff --git a/packaging/tests/tas-cmis/pom.xml b/packaging/tests/tas-cmis/pom.xml index 29304416d1..79768176c8 100644 --- a/packaging/tests/tas-cmis/pom.xml +++ b/packaging/tests/tas-cmis/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-tests - 25.2.0.42 + 25.2.0.43-SNAPSHOT diff --git a/packaging/tests/tas-email/pom.xml b/packaging/tests/tas-email/pom.xml index 46f9405265..fc3c7e61a1 100644 --- a/packaging/tests/tas-email/pom.xml +++ b/packaging/tests/tas-email/pom.xml @@ -9,7 +9,7 @@ org.alfresco alfresco-community-repo-tests - 25.2.0.42 + 25.2.0.43-SNAPSHOT diff --git a/packaging/tests/tas-integration/pom.xml b/packaging/tests/tas-integration/pom.xml index ed61a518e4..2ee3288e6b 100644 --- a/packaging/tests/tas-integration/pom.xml +++ b/packaging/tests/tas-integration/pom.xml @@ -9,7 +9,7 @@ org.alfresco alfresco-community-repo-tests - 25.2.0.42 + 25.2.0.43-SNAPSHOT diff --git a/packaging/tests/tas-restapi/pom.xml b/packaging/tests/tas-restapi/pom.xml index d51538504f..d4c7bd63d1 100644 --- a/packaging/tests/tas-restapi/pom.xml +++ b/packaging/tests/tas-restapi/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-community-repo-tests - 25.2.0.42 + 25.2.0.43-SNAPSHOT diff --git a/packaging/tests/tas-webdav/pom.xml b/packaging/tests/tas-webdav/pom.xml index 2ac6a95977..bfb59356f1 100644 --- a/packaging/tests/tas-webdav/pom.xml +++ b/packaging/tests/tas-webdav/pom.xml @@ -9,7 +9,7 @@ org.alfresco alfresco-community-repo-tests - 25.2.0.42 + 25.2.0.43-SNAPSHOT diff --git a/packaging/war/pom.xml b/packaging/war/pom.xml index d6b2f52a89..4dac9eec70 100644 --- a/packaging/war/pom.xml +++ b/packaging/war/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-packaging - 25.2.0.42 + 25.2.0.43-SNAPSHOT diff --git a/pom.xml b/pom.xml index 2661aa3c7b..498a7c5a36 100644 --- a/pom.xml +++ b/pom.xml @@ -2,7 +2,7 @@ 4.0.0 alfresco-community-repo - 25.2.0.42 + 25.2.0.43-SNAPSHOT pom Alfresco Community Repo Parent @@ -154,7 +154,7 @@ scm:git:https://github.com/Alfresco/alfresco-community-repo.git scm:git:https://github.com/Alfresco/alfresco-community-repo.git https://github.com/Alfresco/alfresco-community-repo - 25.2.0.42 + HEAD diff --git a/remote-api/pom.xml b/remote-api/pom.xml index e15c3bbecb..de537c63e5 100644 --- a/remote-api/pom.xml +++ b/remote-api/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.2.0.42 + 25.2.0.43-SNAPSHOT diff --git a/repository/pom.xml b/repository/pom.xml index 240c02bc9b..0735e9a8d9 100644 --- a/repository/pom.xml +++ b/repository/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.2.0.42 + 25.2.0.43-SNAPSHOT From e65614d3c29b779eea0a1db080440d7ee2699531 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piotr=20=C5=BBurek?= Date: Wed, 11 Jun 2025 10:31:40 +0200 Subject: [PATCH 07/17] Trigger CI From dc247187171f638cb8b32c3e2b62e13b4a2e757d Mon Sep 17 00:00:00 2001 From: alfresco-build <8039454+alfresco-build@users.noreply.github.com> Date: Wed, 11 Jun 2025 09:24:30 +0000 Subject: [PATCH 08/17] [maven-release-plugin][skip ci] prepare release 25.2.0.43 --- amps/ags/pom.xml | 2 +- amps/ags/rm-automation/pom.xml | 2 +- .../rm-automation/rm-automation-community-rest-api/pom.xml | 2 +- amps/ags/rm-community/pom.xml | 2 +- amps/ags/rm-community/rm-community-repo/pom.xml | 2 +- amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml | 2 +- amps/pom.xml | 2 +- amps/share-services/pom.xml | 2 +- core/pom.xml | 2 +- data-model/pom.xml | 2 +- mmt/pom.xml | 2 +- packaging/distribution/pom.xml | 2 +- packaging/docker-alfresco/pom.xml | 2 +- packaging/pom.xml | 2 +- packaging/tests/pom.xml | 2 +- packaging/tests/tas-cmis/pom.xml | 2 +- packaging/tests/tas-email/pom.xml | 2 +- packaging/tests/tas-integration/pom.xml | 2 +- packaging/tests/tas-restapi/pom.xml | 2 +- packaging/tests/tas-webdav/pom.xml | 2 +- packaging/war/pom.xml | 2 +- pom.xml | 4 ++-- remote-api/pom.xml | 2 +- repository/pom.xml | 2 +- 24 files changed, 25 insertions(+), 25 deletions(-) diff --git a/amps/ags/pom.xml b/amps/ags/pom.xml index 1d18c76dde..ce7be13dda 100644 --- a/amps/ags/pom.xml +++ b/amps/ags/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-amps - 25.2.0.43-SNAPSHOT + 25.2.0.43 diff --git a/amps/ags/rm-automation/pom.xml b/amps/ags/rm-automation/pom.xml index 735db6f8f7..614c637d16 100644 --- a/amps/ags/rm-automation/pom.xml +++ b/amps/ags/rm-automation/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-community-parent - 25.2.0.43-SNAPSHOT + 25.2.0.43 diff --git a/amps/ags/rm-automation/rm-automation-community-rest-api/pom.xml b/amps/ags/rm-automation/rm-automation-community-rest-api/pom.xml index 8c3a2916bc..77ac0fb617 100644 --- a/amps/ags/rm-automation/rm-automation-community-rest-api/pom.xml +++ b/amps/ags/rm-automation/rm-automation-community-rest-api/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-automation-community-repo - 25.2.0.43-SNAPSHOT + 25.2.0.43 diff --git a/amps/ags/rm-community/pom.xml b/amps/ags/rm-community/pom.xml index e0b14b9c13..04de1a9740 100644 --- a/amps/ags/rm-community/pom.xml +++ b/amps/ags/rm-community/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-community-parent - 25.2.0.43-SNAPSHOT + 25.2.0.43 diff --git a/amps/ags/rm-community/rm-community-repo/pom.xml b/amps/ags/rm-community/rm-community-repo/pom.xml index fb3eb8265c..1f2a6be86b 100644 --- a/amps/ags/rm-community/rm-community-repo/pom.xml +++ b/amps/ags/rm-community/rm-community-repo/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-governance-services-community-repo-parent - 25.2.0.43-SNAPSHOT + 25.2.0.43 diff --git a/amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml b/amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml index 3f67081630..8d08535f7b 100644 --- a/amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml +++ b/amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-community-repo-parent - 25.2.0.43-SNAPSHOT + 25.2.0.43 diff --git a/amps/pom.xml b/amps/pom.xml index 719aea8e7a..e1a6ac9d38 100644 --- a/amps/pom.xml +++ b/amps/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.2.0.43-SNAPSHOT + 25.2.0.43 diff --git a/amps/share-services/pom.xml b/amps/share-services/pom.xml index 657f1618d9..88c5048df9 100644 --- a/amps/share-services/pom.xml +++ b/amps/share-services/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-community-repo-amps - 25.2.0.43-SNAPSHOT + 25.2.0.43 diff --git a/core/pom.xml b/core/pom.xml index f41f3d5950..ab6e0b5ac1 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.2.0.43-SNAPSHOT + 25.2.0.43 diff --git a/data-model/pom.xml b/data-model/pom.xml index 7be7d26bc7..883c57458c 100644 --- a/data-model/pom.xml +++ b/data-model/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.2.0.43-SNAPSHOT + 25.2.0.43 diff --git a/mmt/pom.xml b/mmt/pom.xml index ad28ef2fa9..8446e4b8d0 100644 --- a/mmt/pom.xml +++ b/mmt/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.2.0.43-SNAPSHOT + 25.2.0.43 diff --git a/packaging/distribution/pom.xml b/packaging/distribution/pom.xml index 456faa3e73..0154d92d9d 100644 --- a/packaging/distribution/pom.xml +++ b/packaging/distribution/pom.xml @@ -9,6 +9,6 @@ org.alfresco alfresco-community-repo-packaging - 25.2.0.43-SNAPSHOT + 25.2.0.43 diff --git a/packaging/docker-alfresco/pom.xml b/packaging/docker-alfresco/pom.xml index 4ec61f2d6b..e35c59fd28 100644 --- a/packaging/docker-alfresco/pom.xml +++ b/packaging/docker-alfresco/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-packaging - 25.2.0.43-SNAPSHOT + 25.2.0.43 diff --git a/packaging/pom.xml b/packaging/pom.xml index d5651ba2d3..5da533be55 100644 --- a/packaging/pom.xml +++ b/packaging/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.2.0.43-SNAPSHOT + 25.2.0.43 diff --git a/packaging/tests/pom.xml b/packaging/tests/pom.xml index 5d6999a15a..7b574a5e49 100644 --- a/packaging/tests/pom.xml +++ b/packaging/tests/pom.xml @@ -6,7 +6,7 @@ org.alfresco alfresco-community-repo-packaging - 25.2.0.43-SNAPSHOT + 25.2.0.43 diff --git a/packaging/tests/tas-cmis/pom.xml b/packaging/tests/tas-cmis/pom.xml index 79768176c8..8a25e68946 100644 --- a/packaging/tests/tas-cmis/pom.xml +++ b/packaging/tests/tas-cmis/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-tests - 25.2.0.43-SNAPSHOT + 25.2.0.43 diff --git a/packaging/tests/tas-email/pom.xml b/packaging/tests/tas-email/pom.xml index fc3c7e61a1..4058c88135 100644 --- a/packaging/tests/tas-email/pom.xml +++ b/packaging/tests/tas-email/pom.xml @@ -9,7 +9,7 @@ org.alfresco alfresco-community-repo-tests - 25.2.0.43-SNAPSHOT + 25.2.0.43 diff --git a/packaging/tests/tas-integration/pom.xml b/packaging/tests/tas-integration/pom.xml index 2ee3288e6b..3e23841dac 100644 --- a/packaging/tests/tas-integration/pom.xml +++ b/packaging/tests/tas-integration/pom.xml @@ -9,7 +9,7 @@ org.alfresco alfresco-community-repo-tests - 25.2.0.43-SNAPSHOT + 25.2.0.43 diff --git a/packaging/tests/tas-restapi/pom.xml b/packaging/tests/tas-restapi/pom.xml index d4c7bd63d1..841da9cbb1 100644 --- a/packaging/tests/tas-restapi/pom.xml +++ b/packaging/tests/tas-restapi/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-community-repo-tests - 25.2.0.43-SNAPSHOT + 25.2.0.43 diff --git a/packaging/tests/tas-webdav/pom.xml b/packaging/tests/tas-webdav/pom.xml index bfb59356f1..9a1f8f24c0 100644 --- a/packaging/tests/tas-webdav/pom.xml +++ b/packaging/tests/tas-webdav/pom.xml @@ -9,7 +9,7 @@ org.alfresco alfresco-community-repo-tests - 25.2.0.43-SNAPSHOT + 25.2.0.43 diff --git a/packaging/war/pom.xml b/packaging/war/pom.xml index 4dac9eec70..bebb516227 100644 --- a/packaging/war/pom.xml +++ b/packaging/war/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-packaging - 25.2.0.43-SNAPSHOT + 25.2.0.43 diff --git a/pom.xml b/pom.xml index 498a7c5a36..7cc6771eab 100644 --- a/pom.xml +++ b/pom.xml @@ -2,7 +2,7 @@ 4.0.0 alfresco-community-repo - 25.2.0.43-SNAPSHOT + 25.2.0.43 pom Alfresco Community Repo Parent @@ -154,7 +154,7 @@ scm:git:https://github.com/Alfresco/alfresco-community-repo.git scm:git:https://github.com/Alfresco/alfresco-community-repo.git https://github.com/Alfresco/alfresco-community-repo - HEAD + 25.2.0.43 diff --git a/remote-api/pom.xml b/remote-api/pom.xml index de537c63e5..621aeda2df 100644 --- a/remote-api/pom.xml +++ b/remote-api/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.2.0.43-SNAPSHOT + 25.2.0.43 diff --git a/repository/pom.xml b/repository/pom.xml index 0735e9a8d9..f7da649fdd 100644 --- a/repository/pom.xml +++ b/repository/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.2.0.43-SNAPSHOT + 25.2.0.43 From bd5a016382769b3076186f7a51ad57c6d15d8c62 Mon Sep 17 00:00:00 2001 From: alfresco-build <8039454+alfresco-build@users.noreply.github.com> Date: Wed, 11 Jun 2025 09:24:32 +0000 Subject: [PATCH 09/17] [maven-release-plugin][skip ci] prepare for next development iteration --- amps/ags/pom.xml | 2 +- amps/ags/rm-automation/pom.xml | 2 +- .../rm-automation/rm-automation-community-rest-api/pom.xml | 2 +- amps/ags/rm-community/pom.xml | 2 +- amps/ags/rm-community/rm-community-repo/pom.xml | 2 +- amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml | 2 +- amps/pom.xml | 2 +- amps/share-services/pom.xml | 2 +- core/pom.xml | 2 +- data-model/pom.xml | 2 +- mmt/pom.xml | 2 +- packaging/distribution/pom.xml | 2 +- packaging/docker-alfresco/pom.xml | 2 +- packaging/pom.xml | 2 +- packaging/tests/pom.xml | 2 +- packaging/tests/tas-cmis/pom.xml | 2 +- packaging/tests/tas-email/pom.xml | 2 +- packaging/tests/tas-integration/pom.xml | 2 +- packaging/tests/tas-restapi/pom.xml | 2 +- packaging/tests/tas-webdav/pom.xml | 2 +- packaging/war/pom.xml | 2 +- pom.xml | 4 ++-- remote-api/pom.xml | 2 +- repository/pom.xml | 2 +- 24 files changed, 25 insertions(+), 25 deletions(-) diff --git a/amps/ags/pom.xml b/amps/ags/pom.xml index ce7be13dda..9940daac12 100644 --- a/amps/ags/pom.xml +++ b/amps/ags/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-amps - 25.2.0.43 + 25.2.0.44-SNAPSHOT diff --git a/amps/ags/rm-automation/pom.xml b/amps/ags/rm-automation/pom.xml index 614c637d16..a3127f11fd 100644 --- a/amps/ags/rm-automation/pom.xml +++ b/amps/ags/rm-automation/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-community-parent - 25.2.0.43 + 25.2.0.44-SNAPSHOT diff --git a/amps/ags/rm-automation/rm-automation-community-rest-api/pom.xml b/amps/ags/rm-automation/rm-automation-community-rest-api/pom.xml index 77ac0fb617..dc8f217872 100644 --- a/amps/ags/rm-automation/rm-automation-community-rest-api/pom.xml +++ b/amps/ags/rm-automation/rm-automation-community-rest-api/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-automation-community-repo - 25.2.0.43 + 25.2.0.44-SNAPSHOT diff --git a/amps/ags/rm-community/pom.xml b/amps/ags/rm-community/pom.xml index 04de1a9740..9d33877da8 100644 --- a/amps/ags/rm-community/pom.xml +++ b/amps/ags/rm-community/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-community-parent - 25.2.0.43 + 25.2.0.44-SNAPSHOT diff --git a/amps/ags/rm-community/rm-community-repo/pom.xml b/amps/ags/rm-community/rm-community-repo/pom.xml index 1f2a6be86b..edc6515018 100644 --- a/amps/ags/rm-community/rm-community-repo/pom.xml +++ b/amps/ags/rm-community/rm-community-repo/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-governance-services-community-repo-parent - 25.2.0.43 + 25.2.0.44-SNAPSHOT diff --git a/amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml b/amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml index 8d08535f7b..3c3829302d 100644 --- a/amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml +++ b/amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-community-repo-parent - 25.2.0.43 + 25.2.0.44-SNAPSHOT diff --git a/amps/pom.xml b/amps/pom.xml index e1a6ac9d38..c2384dd966 100644 --- a/amps/pom.xml +++ b/amps/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.2.0.43 + 25.2.0.44-SNAPSHOT diff --git a/amps/share-services/pom.xml b/amps/share-services/pom.xml index 88c5048df9..621cb0c0a3 100644 --- a/amps/share-services/pom.xml +++ b/amps/share-services/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-community-repo-amps - 25.2.0.43 + 25.2.0.44-SNAPSHOT diff --git a/core/pom.xml b/core/pom.xml index ab6e0b5ac1..eec5dbce80 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.2.0.43 + 25.2.0.44-SNAPSHOT diff --git a/data-model/pom.xml b/data-model/pom.xml index 883c57458c..052c45fddc 100644 --- a/data-model/pom.xml +++ b/data-model/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.2.0.43 + 25.2.0.44-SNAPSHOT diff --git a/mmt/pom.xml b/mmt/pom.xml index 8446e4b8d0..45fd7ea0fa 100644 --- a/mmt/pom.xml +++ b/mmt/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.2.0.43 + 25.2.0.44-SNAPSHOT diff --git a/packaging/distribution/pom.xml b/packaging/distribution/pom.xml index 0154d92d9d..bf57ebd027 100644 --- a/packaging/distribution/pom.xml +++ b/packaging/distribution/pom.xml @@ -9,6 +9,6 @@ org.alfresco alfresco-community-repo-packaging - 25.2.0.43 + 25.2.0.44-SNAPSHOT diff --git a/packaging/docker-alfresco/pom.xml b/packaging/docker-alfresco/pom.xml index e35c59fd28..dcc3e1ebfb 100644 --- a/packaging/docker-alfresco/pom.xml +++ b/packaging/docker-alfresco/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-packaging - 25.2.0.43 + 25.2.0.44-SNAPSHOT diff --git a/packaging/pom.xml b/packaging/pom.xml index 5da533be55..86f697fa94 100644 --- a/packaging/pom.xml +++ b/packaging/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.2.0.43 + 25.2.0.44-SNAPSHOT diff --git a/packaging/tests/pom.xml b/packaging/tests/pom.xml index 7b574a5e49..20a9e90c69 100644 --- a/packaging/tests/pom.xml +++ b/packaging/tests/pom.xml @@ -6,7 +6,7 @@ org.alfresco alfresco-community-repo-packaging - 25.2.0.43 + 25.2.0.44-SNAPSHOT diff --git a/packaging/tests/tas-cmis/pom.xml b/packaging/tests/tas-cmis/pom.xml index 8a25e68946..b086f088e9 100644 --- a/packaging/tests/tas-cmis/pom.xml +++ b/packaging/tests/tas-cmis/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-tests - 25.2.0.43 + 25.2.0.44-SNAPSHOT diff --git a/packaging/tests/tas-email/pom.xml b/packaging/tests/tas-email/pom.xml index 4058c88135..c31c85d947 100644 --- a/packaging/tests/tas-email/pom.xml +++ b/packaging/tests/tas-email/pom.xml @@ -9,7 +9,7 @@ org.alfresco alfresco-community-repo-tests - 25.2.0.43 + 25.2.0.44-SNAPSHOT diff --git a/packaging/tests/tas-integration/pom.xml b/packaging/tests/tas-integration/pom.xml index 3e23841dac..fa32bc2cd1 100644 --- a/packaging/tests/tas-integration/pom.xml +++ b/packaging/tests/tas-integration/pom.xml @@ -9,7 +9,7 @@ org.alfresco alfresco-community-repo-tests - 25.2.0.43 + 25.2.0.44-SNAPSHOT diff --git a/packaging/tests/tas-restapi/pom.xml b/packaging/tests/tas-restapi/pom.xml index 841da9cbb1..f6df62bb6b 100644 --- a/packaging/tests/tas-restapi/pom.xml +++ b/packaging/tests/tas-restapi/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-community-repo-tests - 25.2.0.43 + 25.2.0.44-SNAPSHOT diff --git a/packaging/tests/tas-webdav/pom.xml b/packaging/tests/tas-webdav/pom.xml index 9a1f8f24c0..9ad9d3b099 100644 --- a/packaging/tests/tas-webdav/pom.xml +++ b/packaging/tests/tas-webdav/pom.xml @@ -9,7 +9,7 @@ org.alfresco alfresco-community-repo-tests - 25.2.0.43 + 25.2.0.44-SNAPSHOT diff --git a/packaging/war/pom.xml b/packaging/war/pom.xml index bebb516227..579ed0eb2e 100644 --- a/packaging/war/pom.xml +++ b/packaging/war/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-packaging - 25.2.0.43 + 25.2.0.44-SNAPSHOT diff --git a/pom.xml b/pom.xml index 7cc6771eab..629ae995b7 100644 --- a/pom.xml +++ b/pom.xml @@ -2,7 +2,7 @@ 4.0.0 alfresco-community-repo - 25.2.0.43 + 25.2.0.44-SNAPSHOT pom Alfresco Community Repo Parent @@ -154,7 +154,7 @@ scm:git:https://github.com/Alfresco/alfresco-community-repo.git scm:git:https://github.com/Alfresco/alfresco-community-repo.git https://github.com/Alfresco/alfresco-community-repo - 25.2.0.43 + HEAD diff --git a/remote-api/pom.xml b/remote-api/pom.xml index 621aeda2df..8387e33477 100644 --- a/remote-api/pom.xml +++ b/remote-api/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.2.0.43 + 25.2.0.44-SNAPSHOT diff --git a/repository/pom.xml b/repository/pom.xml index f7da649fdd..810d5d1c4c 100644 --- a/repository/pom.xml +++ b/repository/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.2.0.43 + 25.2.0.44-SNAPSHOT From 6f222106c5cef2b8bbbc5f6851fb941a9567dc57 Mon Sep 17 00:00:00 2001 From: Damian Ujma <92095156+damianujma@users.noreply.github.com> Date: Wed, 11 Jun 2025 11:48:13 +0200 Subject: [PATCH 10/17] MNT-25089 Bump ATS to 4.1.8-A1 (#3384) --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 629ae995b7..94a652115c 100644 --- a/pom.xml +++ b/pom.xml @@ -51,8 +51,8 @@ 7.0.2 5.23.0 5.23.0 - 5.1.7 - 4.1.7 + 5.1.8-A.1 + 4.1.8-A.1 7.1 1.0.2 From 3c092b696d439f05b270f4124f0a560b8251fdff Mon Sep 17 00:00:00 2001 From: alfresco-build <8039454+alfresco-build@users.noreply.github.com> Date: Wed, 11 Jun 2025 10:29:54 +0000 Subject: [PATCH 11/17] [maven-release-plugin][skip ci] prepare release 25.2.0.44 --- amps/ags/pom.xml | 2 +- amps/ags/rm-automation/pom.xml | 2 +- .../rm-automation/rm-automation-community-rest-api/pom.xml | 2 +- amps/ags/rm-community/pom.xml | 2 +- amps/ags/rm-community/rm-community-repo/pom.xml | 2 +- amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml | 2 +- amps/pom.xml | 2 +- amps/share-services/pom.xml | 2 +- core/pom.xml | 2 +- data-model/pom.xml | 2 +- mmt/pom.xml | 2 +- packaging/distribution/pom.xml | 2 +- packaging/docker-alfresco/pom.xml | 2 +- packaging/pom.xml | 2 +- packaging/tests/pom.xml | 2 +- packaging/tests/tas-cmis/pom.xml | 2 +- packaging/tests/tas-email/pom.xml | 2 +- packaging/tests/tas-integration/pom.xml | 2 +- packaging/tests/tas-restapi/pom.xml | 2 +- packaging/tests/tas-webdav/pom.xml | 2 +- packaging/war/pom.xml | 2 +- pom.xml | 4 ++-- remote-api/pom.xml | 2 +- repository/pom.xml | 2 +- 24 files changed, 25 insertions(+), 25 deletions(-) diff --git a/amps/ags/pom.xml b/amps/ags/pom.xml index 9940daac12..68ec6ad2e3 100644 --- a/amps/ags/pom.xml +++ b/amps/ags/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-amps - 25.2.0.44-SNAPSHOT + 25.2.0.44 diff --git a/amps/ags/rm-automation/pom.xml b/amps/ags/rm-automation/pom.xml index a3127f11fd..5039433e97 100644 --- a/amps/ags/rm-automation/pom.xml +++ b/amps/ags/rm-automation/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-community-parent - 25.2.0.44-SNAPSHOT + 25.2.0.44 diff --git a/amps/ags/rm-automation/rm-automation-community-rest-api/pom.xml b/amps/ags/rm-automation/rm-automation-community-rest-api/pom.xml index dc8f217872..6e82af03c3 100644 --- a/amps/ags/rm-automation/rm-automation-community-rest-api/pom.xml +++ b/amps/ags/rm-automation/rm-automation-community-rest-api/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-automation-community-repo - 25.2.0.44-SNAPSHOT + 25.2.0.44 diff --git a/amps/ags/rm-community/pom.xml b/amps/ags/rm-community/pom.xml index 9d33877da8..bb4fd7a8de 100644 --- a/amps/ags/rm-community/pom.xml +++ b/amps/ags/rm-community/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-community-parent - 25.2.0.44-SNAPSHOT + 25.2.0.44 diff --git a/amps/ags/rm-community/rm-community-repo/pom.xml b/amps/ags/rm-community/rm-community-repo/pom.xml index edc6515018..5d441acd49 100644 --- a/amps/ags/rm-community/rm-community-repo/pom.xml +++ b/amps/ags/rm-community/rm-community-repo/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-governance-services-community-repo-parent - 25.2.0.44-SNAPSHOT + 25.2.0.44 diff --git a/amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml b/amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml index 3c3829302d..11bdce8f7d 100644 --- a/amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml +++ b/amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-community-repo-parent - 25.2.0.44-SNAPSHOT + 25.2.0.44 diff --git a/amps/pom.xml b/amps/pom.xml index c2384dd966..6c4adc5b72 100644 --- a/amps/pom.xml +++ b/amps/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.2.0.44-SNAPSHOT + 25.2.0.44 diff --git a/amps/share-services/pom.xml b/amps/share-services/pom.xml index 621cb0c0a3..e618689932 100644 --- a/amps/share-services/pom.xml +++ b/amps/share-services/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-community-repo-amps - 25.2.0.44-SNAPSHOT + 25.2.0.44 diff --git a/core/pom.xml b/core/pom.xml index eec5dbce80..808520b1ab 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.2.0.44-SNAPSHOT + 25.2.0.44 diff --git a/data-model/pom.xml b/data-model/pom.xml index 052c45fddc..079cd607eb 100644 --- a/data-model/pom.xml +++ b/data-model/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.2.0.44-SNAPSHOT + 25.2.0.44 diff --git a/mmt/pom.xml b/mmt/pom.xml index 45fd7ea0fa..49674c75c7 100644 --- a/mmt/pom.xml +++ b/mmt/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.2.0.44-SNAPSHOT + 25.2.0.44 diff --git a/packaging/distribution/pom.xml b/packaging/distribution/pom.xml index bf57ebd027..581137800b 100644 --- a/packaging/distribution/pom.xml +++ b/packaging/distribution/pom.xml @@ -9,6 +9,6 @@ org.alfresco alfresco-community-repo-packaging - 25.2.0.44-SNAPSHOT + 25.2.0.44 diff --git a/packaging/docker-alfresco/pom.xml b/packaging/docker-alfresco/pom.xml index dcc3e1ebfb..8ffa8da50d 100644 --- a/packaging/docker-alfresco/pom.xml +++ b/packaging/docker-alfresco/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-packaging - 25.2.0.44-SNAPSHOT + 25.2.0.44 diff --git a/packaging/pom.xml b/packaging/pom.xml index 86f697fa94..0e0486d996 100644 --- a/packaging/pom.xml +++ b/packaging/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.2.0.44-SNAPSHOT + 25.2.0.44 diff --git a/packaging/tests/pom.xml b/packaging/tests/pom.xml index 20a9e90c69..9f52956013 100644 --- a/packaging/tests/pom.xml +++ b/packaging/tests/pom.xml @@ -6,7 +6,7 @@ org.alfresco alfresco-community-repo-packaging - 25.2.0.44-SNAPSHOT + 25.2.0.44 diff --git a/packaging/tests/tas-cmis/pom.xml b/packaging/tests/tas-cmis/pom.xml index b086f088e9..667ebe7e5f 100644 --- a/packaging/tests/tas-cmis/pom.xml +++ b/packaging/tests/tas-cmis/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-tests - 25.2.0.44-SNAPSHOT + 25.2.0.44 diff --git a/packaging/tests/tas-email/pom.xml b/packaging/tests/tas-email/pom.xml index c31c85d947..c5433395a8 100644 --- a/packaging/tests/tas-email/pom.xml +++ b/packaging/tests/tas-email/pom.xml @@ -9,7 +9,7 @@ org.alfresco alfresco-community-repo-tests - 25.2.0.44-SNAPSHOT + 25.2.0.44 diff --git a/packaging/tests/tas-integration/pom.xml b/packaging/tests/tas-integration/pom.xml index fa32bc2cd1..ee2bf42a54 100644 --- a/packaging/tests/tas-integration/pom.xml +++ b/packaging/tests/tas-integration/pom.xml @@ -9,7 +9,7 @@ org.alfresco alfresco-community-repo-tests - 25.2.0.44-SNAPSHOT + 25.2.0.44 diff --git a/packaging/tests/tas-restapi/pom.xml b/packaging/tests/tas-restapi/pom.xml index f6df62bb6b..f36fd97bc7 100644 --- a/packaging/tests/tas-restapi/pom.xml +++ b/packaging/tests/tas-restapi/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-community-repo-tests - 25.2.0.44-SNAPSHOT + 25.2.0.44 diff --git a/packaging/tests/tas-webdav/pom.xml b/packaging/tests/tas-webdav/pom.xml index 9ad9d3b099..1ecbda94c8 100644 --- a/packaging/tests/tas-webdav/pom.xml +++ b/packaging/tests/tas-webdav/pom.xml @@ -9,7 +9,7 @@ org.alfresco alfresco-community-repo-tests - 25.2.0.44-SNAPSHOT + 25.2.0.44 diff --git a/packaging/war/pom.xml b/packaging/war/pom.xml index 579ed0eb2e..7a704dc570 100644 --- a/packaging/war/pom.xml +++ b/packaging/war/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-packaging - 25.2.0.44-SNAPSHOT + 25.2.0.44 diff --git a/pom.xml b/pom.xml index 94a652115c..db3195bc5c 100644 --- a/pom.xml +++ b/pom.xml @@ -2,7 +2,7 @@ 4.0.0 alfresco-community-repo - 25.2.0.44-SNAPSHOT + 25.2.0.44 pom Alfresco Community Repo Parent @@ -154,7 +154,7 @@ scm:git:https://github.com/Alfresco/alfresco-community-repo.git scm:git:https://github.com/Alfresco/alfresco-community-repo.git https://github.com/Alfresco/alfresco-community-repo - HEAD + 25.2.0.44 diff --git a/remote-api/pom.xml b/remote-api/pom.xml index 8387e33477..c2e8fd516e 100644 --- a/remote-api/pom.xml +++ b/remote-api/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.2.0.44-SNAPSHOT + 25.2.0.44 diff --git a/repository/pom.xml b/repository/pom.xml index 810d5d1c4c..36834a47fa 100644 --- a/repository/pom.xml +++ b/repository/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.2.0.44-SNAPSHOT + 25.2.0.44 From 8a64d9fb0b52b23b23a3e7d14db7064f4789be87 Mon Sep 17 00:00:00 2001 From: alfresco-build <8039454+alfresco-build@users.noreply.github.com> Date: Wed, 11 Jun 2025 10:29:56 +0000 Subject: [PATCH 12/17] [maven-release-plugin][skip ci] prepare for next development iteration --- amps/ags/pom.xml | 2 +- amps/ags/rm-automation/pom.xml | 2 +- .../rm-automation/rm-automation-community-rest-api/pom.xml | 2 +- amps/ags/rm-community/pom.xml | 2 +- amps/ags/rm-community/rm-community-repo/pom.xml | 2 +- amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml | 2 +- amps/pom.xml | 2 +- amps/share-services/pom.xml | 2 +- core/pom.xml | 2 +- data-model/pom.xml | 2 +- mmt/pom.xml | 2 +- packaging/distribution/pom.xml | 2 +- packaging/docker-alfresco/pom.xml | 2 +- packaging/pom.xml | 2 +- packaging/tests/pom.xml | 2 +- packaging/tests/tas-cmis/pom.xml | 2 +- packaging/tests/tas-email/pom.xml | 2 +- packaging/tests/tas-integration/pom.xml | 2 +- packaging/tests/tas-restapi/pom.xml | 2 +- packaging/tests/tas-webdav/pom.xml | 2 +- packaging/war/pom.xml | 2 +- pom.xml | 4 ++-- remote-api/pom.xml | 2 +- repository/pom.xml | 2 +- 24 files changed, 25 insertions(+), 25 deletions(-) diff --git a/amps/ags/pom.xml b/amps/ags/pom.xml index 68ec6ad2e3..91b2d528ab 100644 --- a/amps/ags/pom.xml +++ b/amps/ags/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-amps - 25.2.0.44 + 25.2.0.45-SNAPSHOT diff --git a/amps/ags/rm-automation/pom.xml b/amps/ags/rm-automation/pom.xml index 5039433e97..a76926d140 100644 --- a/amps/ags/rm-automation/pom.xml +++ b/amps/ags/rm-automation/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-community-parent - 25.2.0.44 + 25.2.0.45-SNAPSHOT diff --git a/amps/ags/rm-automation/rm-automation-community-rest-api/pom.xml b/amps/ags/rm-automation/rm-automation-community-rest-api/pom.xml index 6e82af03c3..31812bcfc6 100644 --- a/amps/ags/rm-automation/rm-automation-community-rest-api/pom.xml +++ b/amps/ags/rm-automation/rm-automation-community-rest-api/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-automation-community-repo - 25.2.0.44 + 25.2.0.45-SNAPSHOT diff --git a/amps/ags/rm-community/pom.xml b/amps/ags/rm-community/pom.xml index bb4fd7a8de..cb70f9c8f2 100644 --- a/amps/ags/rm-community/pom.xml +++ b/amps/ags/rm-community/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-community-parent - 25.2.0.44 + 25.2.0.45-SNAPSHOT diff --git a/amps/ags/rm-community/rm-community-repo/pom.xml b/amps/ags/rm-community/rm-community-repo/pom.xml index 5d441acd49..ab67d01c8e 100644 --- a/amps/ags/rm-community/rm-community-repo/pom.xml +++ b/amps/ags/rm-community/rm-community-repo/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-governance-services-community-repo-parent - 25.2.0.44 + 25.2.0.45-SNAPSHOT diff --git a/amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml b/amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml index 11bdce8f7d..20a75ca379 100644 --- a/amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml +++ b/amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-community-repo-parent - 25.2.0.44 + 25.2.0.45-SNAPSHOT diff --git a/amps/pom.xml b/amps/pom.xml index 6c4adc5b72..848886aa65 100644 --- a/amps/pom.xml +++ b/amps/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.2.0.44 + 25.2.0.45-SNAPSHOT diff --git a/amps/share-services/pom.xml b/amps/share-services/pom.xml index e618689932..f7f3a98eae 100644 --- a/amps/share-services/pom.xml +++ b/amps/share-services/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-community-repo-amps - 25.2.0.44 + 25.2.0.45-SNAPSHOT diff --git a/core/pom.xml b/core/pom.xml index 808520b1ab..7d5924bdde 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.2.0.44 + 25.2.0.45-SNAPSHOT diff --git a/data-model/pom.xml b/data-model/pom.xml index 079cd607eb..6396dce796 100644 --- a/data-model/pom.xml +++ b/data-model/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.2.0.44 + 25.2.0.45-SNAPSHOT diff --git a/mmt/pom.xml b/mmt/pom.xml index 49674c75c7..2a18dba800 100644 --- a/mmt/pom.xml +++ b/mmt/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.2.0.44 + 25.2.0.45-SNAPSHOT diff --git a/packaging/distribution/pom.xml b/packaging/distribution/pom.xml index 581137800b..47340657f8 100644 --- a/packaging/distribution/pom.xml +++ b/packaging/distribution/pom.xml @@ -9,6 +9,6 @@ org.alfresco alfresco-community-repo-packaging - 25.2.0.44 + 25.2.0.45-SNAPSHOT diff --git a/packaging/docker-alfresco/pom.xml b/packaging/docker-alfresco/pom.xml index 8ffa8da50d..bb4ab5a0e1 100644 --- a/packaging/docker-alfresco/pom.xml +++ b/packaging/docker-alfresco/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-packaging - 25.2.0.44 + 25.2.0.45-SNAPSHOT diff --git a/packaging/pom.xml b/packaging/pom.xml index 0e0486d996..38463b7d28 100644 --- a/packaging/pom.xml +++ b/packaging/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.2.0.44 + 25.2.0.45-SNAPSHOT diff --git a/packaging/tests/pom.xml b/packaging/tests/pom.xml index 9f52956013..6d92b183d9 100644 --- a/packaging/tests/pom.xml +++ b/packaging/tests/pom.xml @@ -6,7 +6,7 @@ org.alfresco alfresco-community-repo-packaging - 25.2.0.44 + 25.2.0.45-SNAPSHOT diff --git a/packaging/tests/tas-cmis/pom.xml b/packaging/tests/tas-cmis/pom.xml index 667ebe7e5f..d05cf21fe6 100644 --- a/packaging/tests/tas-cmis/pom.xml +++ b/packaging/tests/tas-cmis/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-tests - 25.2.0.44 + 25.2.0.45-SNAPSHOT diff --git a/packaging/tests/tas-email/pom.xml b/packaging/tests/tas-email/pom.xml index c5433395a8..a0e5b49d77 100644 --- a/packaging/tests/tas-email/pom.xml +++ b/packaging/tests/tas-email/pom.xml @@ -9,7 +9,7 @@ org.alfresco alfresco-community-repo-tests - 25.2.0.44 + 25.2.0.45-SNAPSHOT diff --git a/packaging/tests/tas-integration/pom.xml b/packaging/tests/tas-integration/pom.xml index ee2bf42a54..8acd3337a0 100644 --- a/packaging/tests/tas-integration/pom.xml +++ b/packaging/tests/tas-integration/pom.xml @@ -9,7 +9,7 @@ org.alfresco alfresco-community-repo-tests - 25.2.0.44 + 25.2.0.45-SNAPSHOT diff --git a/packaging/tests/tas-restapi/pom.xml b/packaging/tests/tas-restapi/pom.xml index f36fd97bc7..57e483c9ef 100644 --- a/packaging/tests/tas-restapi/pom.xml +++ b/packaging/tests/tas-restapi/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-community-repo-tests - 25.2.0.44 + 25.2.0.45-SNAPSHOT diff --git a/packaging/tests/tas-webdav/pom.xml b/packaging/tests/tas-webdav/pom.xml index 1ecbda94c8..b75a5de7b8 100644 --- a/packaging/tests/tas-webdav/pom.xml +++ b/packaging/tests/tas-webdav/pom.xml @@ -9,7 +9,7 @@ org.alfresco alfresco-community-repo-tests - 25.2.0.44 + 25.2.0.45-SNAPSHOT diff --git a/packaging/war/pom.xml b/packaging/war/pom.xml index 7a704dc570..a78a4552d2 100644 --- a/packaging/war/pom.xml +++ b/packaging/war/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-packaging - 25.2.0.44 + 25.2.0.45-SNAPSHOT diff --git a/pom.xml b/pom.xml index db3195bc5c..fe34f63077 100644 --- a/pom.xml +++ b/pom.xml @@ -2,7 +2,7 @@ 4.0.0 alfresco-community-repo - 25.2.0.44 + 25.2.0.45-SNAPSHOT pom Alfresco Community Repo Parent @@ -154,7 +154,7 @@ scm:git:https://github.com/Alfresco/alfresco-community-repo.git scm:git:https://github.com/Alfresco/alfresco-community-repo.git https://github.com/Alfresco/alfresco-community-repo - 25.2.0.44 + HEAD diff --git a/remote-api/pom.xml b/remote-api/pom.xml index c2e8fd516e..95d4b45077 100644 --- a/remote-api/pom.xml +++ b/remote-api/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.2.0.44 + 25.2.0.45-SNAPSHOT diff --git a/repository/pom.xml b/repository/pom.xml index 36834a47fa..d6f42581d7 100644 --- a/repository/pom.xml +++ b/repository/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.2.0.44 + 25.2.0.45-SNAPSHOT From 04fa6611e09e60a685bbefaf0f50c052c07973a0 Mon Sep 17 00:00:00 2001 From: bsayan2 Date: Thu, 12 Jun 2025 18:27:03 +0530 Subject: [PATCH 13/17] MNT-24883 test case fix --- .../repo/content/transform/LocalTransformImpl.java | 7 ++++++- .../registry/LocalTransformServiceRegistryConfigTest.java | 5 +++++ .../resources/test/alfresco/test-renditions-context.xml | 1 + 3 files changed, 12 insertions(+), 1 deletion(-) diff --git a/repository/src/main/java/org/alfresco/repo/content/transform/LocalTransformImpl.java b/repository/src/main/java/org/alfresco/repo/content/transform/LocalTransformImpl.java index 3b973ab518..c39789f0a3 100644 --- a/repository/src/main/java/org/alfresco/repo/content/transform/LocalTransformImpl.java +++ b/repository/src/main/java/org/alfresco/repo/content/transform/LocalTransformImpl.java @@ -157,7 +157,12 @@ public class LocalTransformImpl extends AbstractLocalTransform transformOptions.put(SOURCE_NODE_REF, sourceNodeRef.toString()); } - String filename = sourceNodeRef != null ? (String) nodeService.getProperty(sourceNodeRef, ContentModel.PROP_NAME) : null; + String filename = null; + if (sourceNodeRef != null && nodeService.exists(sourceNodeRef)) + { + filename = (String) nodeService.getProperty(sourceNodeRef, ContentModel.PROP_NAME); + } + if (StringUtils.isNotEmpty(filename)) { transformOptions.put(SOURCE_FILENAME, filename); diff --git a/repository/src/test/java/org/alfresco/transform/registry/LocalTransformServiceRegistryConfigTest.java b/repository/src/test/java/org/alfresco/transform/registry/LocalTransformServiceRegistryConfigTest.java index 394331aea1..0551b9cf57 100644 --- a/repository/src/test/java/org/alfresco/transform/registry/LocalTransformServiceRegistryConfigTest.java +++ b/repository/src/test/java/org/alfresco/transform/registry/LocalTransformServiceRegistryConfigTest.java @@ -64,6 +64,7 @@ import org.alfresco.repo.content.transform.LocalPipelineTransform; import org.alfresco.repo.content.transform.LocalTransformImpl; import org.alfresco.repo.content.transform.LocalTransformServiceRegistry; import org.alfresco.repo.content.transform.TransformerDebug; +import org.alfresco.service.cmr.repository.NodeService; import org.alfresco.transform.config.SupportedSourceAndTarget; import org.alfresco.transform.config.TransformConfig; import org.alfresco.transform.config.TransformOption; @@ -205,6 +206,9 @@ public class LocalTransformServiceRegistryConfigTest extends TransformRegistryMo @Mock private MimetypeMap mimetypeMap; + @Mock + private NodeService nodeService; + private Map> imagemagickSupportedTransformation; private Map> tikaSupportedTransformation; private Map> pdfRendererSupportedTransformation; @@ -232,6 +236,7 @@ public class LocalTransformServiceRegistryConfigTest extends TransformRegistryMo registry.setProperties(properties); registry.setTransformerDebug(transformerDebug); registry.setMimetypeService(mimetypeMap); + registry.setNodeService(nodeService); registry.setPipelineConfigDir(""); registry.setCronExpression(null); // just read it once registry.afterPropertiesSet(); diff --git a/repository/src/test/resources/test/alfresco/test-renditions-context.xml b/repository/src/test/resources/test/alfresco/test-renditions-context.xml index 990b71bf97..eea831a8f7 100644 --- a/repository/src/test/resources/test/alfresco/test-renditions-context.xml +++ b/repository/src/test/resources/test/alfresco/test-renditions-context.xml @@ -28,6 +28,7 @@ + \ No newline at end of file From b378de58d8e20b9c8023355b5f1bc6e65aea4362 Mon Sep 17 00:00:00 2001 From: Alfresco CI User Date: Sun, 15 Jun 2025 00:05:16 +0000 Subject: [PATCH 14/17] [force] Force release for 2025-06-15. From e38e7b4bdade76b80ba54e5e783e02e143d048ad Mon Sep 17 00:00:00 2001 From: alfresco-build <8039454+alfresco-build@users.noreply.github.com> Date: Sun, 15 Jun 2025 00:08:15 +0000 Subject: [PATCH 15/17] [maven-release-plugin][skip ci] prepare release 25.2.0.45 --- amps/ags/pom.xml | 2 +- amps/ags/rm-automation/pom.xml | 2 +- .../rm-automation/rm-automation-community-rest-api/pom.xml | 2 +- amps/ags/rm-community/pom.xml | 2 +- amps/ags/rm-community/rm-community-repo/pom.xml | 2 +- amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml | 2 +- amps/pom.xml | 2 +- amps/share-services/pom.xml | 2 +- core/pom.xml | 2 +- data-model/pom.xml | 2 +- mmt/pom.xml | 2 +- packaging/distribution/pom.xml | 2 +- packaging/docker-alfresco/pom.xml | 2 +- packaging/pom.xml | 2 +- packaging/tests/pom.xml | 2 +- packaging/tests/tas-cmis/pom.xml | 2 +- packaging/tests/tas-email/pom.xml | 2 +- packaging/tests/tas-integration/pom.xml | 2 +- packaging/tests/tas-restapi/pom.xml | 2 +- packaging/tests/tas-webdav/pom.xml | 2 +- packaging/war/pom.xml | 2 +- pom.xml | 4 ++-- remote-api/pom.xml | 2 +- repository/pom.xml | 2 +- 24 files changed, 25 insertions(+), 25 deletions(-) diff --git a/amps/ags/pom.xml b/amps/ags/pom.xml index 91b2d528ab..21b948e3dd 100644 --- a/amps/ags/pom.xml +++ b/amps/ags/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-amps - 25.2.0.45-SNAPSHOT + 25.2.0.45 diff --git a/amps/ags/rm-automation/pom.xml b/amps/ags/rm-automation/pom.xml index a76926d140..efb8763ecb 100644 --- a/amps/ags/rm-automation/pom.xml +++ b/amps/ags/rm-automation/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-community-parent - 25.2.0.45-SNAPSHOT + 25.2.0.45 diff --git a/amps/ags/rm-automation/rm-automation-community-rest-api/pom.xml b/amps/ags/rm-automation/rm-automation-community-rest-api/pom.xml index 31812bcfc6..deb52a2831 100644 --- a/amps/ags/rm-automation/rm-automation-community-rest-api/pom.xml +++ b/amps/ags/rm-automation/rm-automation-community-rest-api/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-automation-community-repo - 25.2.0.45-SNAPSHOT + 25.2.0.45 diff --git a/amps/ags/rm-community/pom.xml b/amps/ags/rm-community/pom.xml index cb70f9c8f2..4d6f33c6d8 100644 --- a/amps/ags/rm-community/pom.xml +++ b/amps/ags/rm-community/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-community-parent - 25.2.0.45-SNAPSHOT + 25.2.0.45 diff --git a/amps/ags/rm-community/rm-community-repo/pom.xml b/amps/ags/rm-community/rm-community-repo/pom.xml index ab67d01c8e..eb48c255f0 100644 --- a/amps/ags/rm-community/rm-community-repo/pom.xml +++ b/amps/ags/rm-community/rm-community-repo/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-governance-services-community-repo-parent - 25.2.0.45-SNAPSHOT + 25.2.0.45 diff --git a/amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml b/amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml index 20a75ca379..836c4850ff 100644 --- a/amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml +++ b/amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-community-repo-parent - 25.2.0.45-SNAPSHOT + 25.2.0.45 diff --git a/amps/pom.xml b/amps/pom.xml index 848886aa65..8caaeaa80e 100644 --- a/amps/pom.xml +++ b/amps/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.2.0.45-SNAPSHOT + 25.2.0.45 diff --git a/amps/share-services/pom.xml b/amps/share-services/pom.xml index f7f3a98eae..e505611375 100644 --- a/amps/share-services/pom.xml +++ b/amps/share-services/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-community-repo-amps - 25.2.0.45-SNAPSHOT + 25.2.0.45 diff --git a/core/pom.xml b/core/pom.xml index 7d5924bdde..f83bd8090e 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.2.0.45-SNAPSHOT + 25.2.0.45 diff --git a/data-model/pom.xml b/data-model/pom.xml index 6396dce796..735aa8d763 100644 --- a/data-model/pom.xml +++ b/data-model/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.2.0.45-SNAPSHOT + 25.2.0.45 diff --git a/mmt/pom.xml b/mmt/pom.xml index 2a18dba800..f7fd25979f 100644 --- a/mmt/pom.xml +++ b/mmt/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.2.0.45-SNAPSHOT + 25.2.0.45 diff --git a/packaging/distribution/pom.xml b/packaging/distribution/pom.xml index 47340657f8..7887021b95 100644 --- a/packaging/distribution/pom.xml +++ b/packaging/distribution/pom.xml @@ -9,6 +9,6 @@ org.alfresco alfresco-community-repo-packaging - 25.2.0.45-SNAPSHOT + 25.2.0.45 diff --git a/packaging/docker-alfresco/pom.xml b/packaging/docker-alfresco/pom.xml index bb4ab5a0e1..4886e2a8f1 100644 --- a/packaging/docker-alfresco/pom.xml +++ b/packaging/docker-alfresco/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-packaging - 25.2.0.45-SNAPSHOT + 25.2.0.45 diff --git a/packaging/pom.xml b/packaging/pom.xml index 38463b7d28..4a124c1d50 100644 --- a/packaging/pom.xml +++ b/packaging/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.2.0.45-SNAPSHOT + 25.2.0.45 diff --git a/packaging/tests/pom.xml b/packaging/tests/pom.xml index 6d92b183d9..65c4eb6f34 100644 --- a/packaging/tests/pom.xml +++ b/packaging/tests/pom.xml @@ -6,7 +6,7 @@ org.alfresco alfresco-community-repo-packaging - 25.2.0.45-SNAPSHOT + 25.2.0.45 diff --git a/packaging/tests/tas-cmis/pom.xml b/packaging/tests/tas-cmis/pom.xml index d05cf21fe6..f7cd38466d 100644 --- a/packaging/tests/tas-cmis/pom.xml +++ b/packaging/tests/tas-cmis/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-tests - 25.2.0.45-SNAPSHOT + 25.2.0.45 diff --git a/packaging/tests/tas-email/pom.xml b/packaging/tests/tas-email/pom.xml index a0e5b49d77..0bc253b152 100644 --- a/packaging/tests/tas-email/pom.xml +++ b/packaging/tests/tas-email/pom.xml @@ -9,7 +9,7 @@ org.alfresco alfresco-community-repo-tests - 25.2.0.45-SNAPSHOT + 25.2.0.45 diff --git a/packaging/tests/tas-integration/pom.xml b/packaging/tests/tas-integration/pom.xml index 8acd3337a0..02ae3a2d67 100644 --- a/packaging/tests/tas-integration/pom.xml +++ b/packaging/tests/tas-integration/pom.xml @@ -9,7 +9,7 @@ org.alfresco alfresco-community-repo-tests - 25.2.0.45-SNAPSHOT + 25.2.0.45 diff --git a/packaging/tests/tas-restapi/pom.xml b/packaging/tests/tas-restapi/pom.xml index 57e483c9ef..59c1369a04 100644 --- a/packaging/tests/tas-restapi/pom.xml +++ b/packaging/tests/tas-restapi/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-community-repo-tests - 25.2.0.45-SNAPSHOT + 25.2.0.45 diff --git a/packaging/tests/tas-webdav/pom.xml b/packaging/tests/tas-webdav/pom.xml index b75a5de7b8..2b49d154e1 100644 --- a/packaging/tests/tas-webdav/pom.xml +++ b/packaging/tests/tas-webdav/pom.xml @@ -9,7 +9,7 @@ org.alfresco alfresco-community-repo-tests - 25.2.0.45-SNAPSHOT + 25.2.0.45 diff --git a/packaging/war/pom.xml b/packaging/war/pom.xml index a78a4552d2..6cf3762a77 100644 --- a/packaging/war/pom.xml +++ b/packaging/war/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-packaging - 25.2.0.45-SNAPSHOT + 25.2.0.45 diff --git a/pom.xml b/pom.xml index fe34f63077..fa73745f83 100644 --- a/pom.xml +++ b/pom.xml @@ -2,7 +2,7 @@ 4.0.0 alfresco-community-repo - 25.2.0.45-SNAPSHOT + 25.2.0.45 pom Alfresco Community Repo Parent @@ -154,7 +154,7 @@ scm:git:https://github.com/Alfresco/alfresco-community-repo.git scm:git:https://github.com/Alfresco/alfresco-community-repo.git https://github.com/Alfresco/alfresco-community-repo - HEAD + 25.2.0.45 diff --git a/remote-api/pom.xml b/remote-api/pom.xml index 95d4b45077..02999424e8 100644 --- a/remote-api/pom.xml +++ b/remote-api/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.2.0.45-SNAPSHOT + 25.2.0.45 diff --git a/repository/pom.xml b/repository/pom.xml index d6f42581d7..0e0a9cc02c 100644 --- a/repository/pom.xml +++ b/repository/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.2.0.45-SNAPSHOT + 25.2.0.45 From 8fca14df40da869163fb9e4f554cbd71bf7c28cd Mon Sep 17 00:00:00 2001 From: alfresco-build <8039454+alfresco-build@users.noreply.github.com> Date: Sun, 15 Jun 2025 00:08:17 +0000 Subject: [PATCH 16/17] [maven-release-plugin][skip ci] prepare for next development iteration --- amps/ags/pom.xml | 2 +- amps/ags/rm-automation/pom.xml | 2 +- .../rm-automation/rm-automation-community-rest-api/pom.xml | 2 +- amps/ags/rm-community/pom.xml | 2 +- amps/ags/rm-community/rm-community-repo/pom.xml | 2 +- amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml | 2 +- amps/pom.xml | 2 +- amps/share-services/pom.xml | 2 +- core/pom.xml | 2 +- data-model/pom.xml | 2 +- mmt/pom.xml | 2 +- packaging/distribution/pom.xml | 2 +- packaging/docker-alfresco/pom.xml | 2 +- packaging/pom.xml | 2 +- packaging/tests/pom.xml | 2 +- packaging/tests/tas-cmis/pom.xml | 2 +- packaging/tests/tas-email/pom.xml | 2 +- packaging/tests/tas-integration/pom.xml | 2 +- packaging/tests/tas-restapi/pom.xml | 2 +- packaging/tests/tas-webdav/pom.xml | 2 +- packaging/war/pom.xml | 2 +- pom.xml | 4 ++-- remote-api/pom.xml | 2 +- repository/pom.xml | 2 +- 24 files changed, 25 insertions(+), 25 deletions(-) diff --git a/amps/ags/pom.xml b/amps/ags/pom.xml index 21b948e3dd..0df00eafd4 100644 --- a/amps/ags/pom.xml +++ b/amps/ags/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-amps - 25.2.0.45 + 25.2.0.46-SNAPSHOT diff --git a/amps/ags/rm-automation/pom.xml b/amps/ags/rm-automation/pom.xml index efb8763ecb..87473c7ea1 100644 --- a/amps/ags/rm-automation/pom.xml +++ b/amps/ags/rm-automation/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-community-parent - 25.2.0.45 + 25.2.0.46-SNAPSHOT diff --git a/amps/ags/rm-automation/rm-automation-community-rest-api/pom.xml b/amps/ags/rm-automation/rm-automation-community-rest-api/pom.xml index deb52a2831..942e7930a0 100644 --- a/amps/ags/rm-automation/rm-automation-community-rest-api/pom.xml +++ b/amps/ags/rm-automation/rm-automation-community-rest-api/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-automation-community-repo - 25.2.0.45 + 25.2.0.46-SNAPSHOT diff --git a/amps/ags/rm-community/pom.xml b/amps/ags/rm-community/pom.xml index 4d6f33c6d8..16ea3b1eee 100644 --- a/amps/ags/rm-community/pom.xml +++ b/amps/ags/rm-community/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-community-parent - 25.2.0.45 + 25.2.0.46-SNAPSHOT diff --git a/amps/ags/rm-community/rm-community-repo/pom.xml b/amps/ags/rm-community/rm-community-repo/pom.xml index eb48c255f0..0683e30d5f 100644 --- a/amps/ags/rm-community/rm-community-repo/pom.xml +++ b/amps/ags/rm-community/rm-community-repo/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-governance-services-community-repo-parent - 25.2.0.45 + 25.2.0.46-SNAPSHOT diff --git a/amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml b/amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml index 836c4850ff..84df7861ac 100644 --- a/amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml +++ b/amps/ags/rm-community/rm-community-rest-api-explorer/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-governance-services-community-repo-parent - 25.2.0.45 + 25.2.0.46-SNAPSHOT diff --git a/amps/pom.xml b/amps/pom.xml index 8caaeaa80e..56be8644ae 100644 --- a/amps/pom.xml +++ b/amps/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.2.0.45 + 25.2.0.46-SNAPSHOT diff --git a/amps/share-services/pom.xml b/amps/share-services/pom.xml index e505611375..ad4d73e193 100644 --- a/amps/share-services/pom.xml +++ b/amps/share-services/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-community-repo-amps - 25.2.0.45 + 25.2.0.46-SNAPSHOT diff --git a/core/pom.xml b/core/pom.xml index f83bd8090e..10352e67d8 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.2.0.45 + 25.2.0.46-SNAPSHOT diff --git a/data-model/pom.xml b/data-model/pom.xml index 735aa8d763..1ffd217da6 100644 --- a/data-model/pom.xml +++ b/data-model/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.2.0.45 + 25.2.0.46-SNAPSHOT diff --git a/mmt/pom.xml b/mmt/pom.xml index f7fd25979f..b0a6f3f1b3 100644 --- a/mmt/pom.xml +++ b/mmt/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.2.0.45 + 25.2.0.46-SNAPSHOT diff --git a/packaging/distribution/pom.xml b/packaging/distribution/pom.xml index 7887021b95..23e74d0127 100644 --- a/packaging/distribution/pom.xml +++ b/packaging/distribution/pom.xml @@ -9,6 +9,6 @@ org.alfresco alfresco-community-repo-packaging - 25.2.0.45 + 25.2.0.46-SNAPSHOT diff --git a/packaging/docker-alfresco/pom.xml b/packaging/docker-alfresco/pom.xml index 4886e2a8f1..54d0d62f87 100644 --- a/packaging/docker-alfresco/pom.xml +++ b/packaging/docker-alfresco/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-packaging - 25.2.0.45 + 25.2.0.46-SNAPSHOT diff --git a/packaging/pom.xml b/packaging/pom.xml index 4a124c1d50..eda30c59f9 100644 --- a/packaging/pom.xml +++ b/packaging/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.2.0.45 + 25.2.0.46-SNAPSHOT diff --git a/packaging/tests/pom.xml b/packaging/tests/pom.xml index 65c4eb6f34..05240e8f49 100644 --- a/packaging/tests/pom.xml +++ b/packaging/tests/pom.xml @@ -6,7 +6,7 @@ org.alfresco alfresco-community-repo-packaging - 25.2.0.45 + 25.2.0.46-SNAPSHOT diff --git a/packaging/tests/tas-cmis/pom.xml b/packaging/tests/tas-cmis/pom.xml index f7cd38466d..b3b4778716 100644 --- a/packaging/tests/tas-cmis/pom.xml +++ b/packaging/tests/tas-cmis/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-tests - 25.2.0.45 + 25.2.0.46-SNAPSHOT diff --git a/packaging/tests/tas-email/pom.xml b/packaging/tests/tas-email/pom.xml index 0bc253b152..62afd2ea2b 100644 --- a/packaging/tests/tas-email/pom.xml +++ b/packaging/tests/tas-email/pom.xml @@ -9,7 +9,7 @@ org.alfresco alfresco-community-repo-tests - 25.2.0.45 + 25.2.0.46-SNAPSHOT diff --git a/packaging/tests/tas-integration/pom.xml b/packaging/tests/tas-integration/pom.xml index 02ae3a2d67..50fe735379 100644 --- a/packaging/tests/tas-integration/pom.xml +++ b/packaging/tests/tas-integration/pom.xml @@ -9,7 +9,7 @@ org.alfresco alfresco-community-repo-tests - 25.2.0.45 + 25.2.0.46-SNAPSHOT diff --git a/packaging/tests/tas-restapi/pom.xml b/packaging/tests/tas-restapi/pom.xml index 59c1369a04..33742b7649 100644 --- a/packaging/tests/tas-restapi/pom.xml +++ b/packaging/tests/tas-restapi/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-community-repo-tests - 25.2.0.45 + 25.2.0.46-SNAPSHOT diff --git a/packaging/tests/tas-webdav/pom.xml b/packaging/tests/tas-webdav/pom.xml index 2b49d154e1..14dbaee77c 100644 --- a/packaging/tests/tas-webdav/pom.xml +++ b/packaging/tests/tas-webdav/pom.xml @@ -9,7 +9,7 @@ org.alfresco alfresco-community-repo-tests - 25.2.0.45 + 25.2.0.46-SNAPSHOT diff --git a/packaging/war/pom.xml b/packaging/war/pom.xml index 6cf3762a77..1714ee4925 100644 --- a/packaging/war/pom.xml +++ b/packaging/war/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo-packaging - 25.2.0.45 + 25.2.0.46-SNAPSHOT diff --git a/pom.xml b/pom.xml index fa73745f83..073919ebbb 100644 --- a/pom.xml +++ b/pom.xml @@ -2,7 +2,7 @@ 4.0.0 alfresco-community-repo - 25.2.0.45 + 25.2.0.46-SNAPSHOT pom Alfresco Community Repo Parent @@ -154,7 +154,7 @@ scm:git:https://github.com/Alfresco/alfresco-community-repo.git scm:git:https://github.com/Alfresco/alfresco-community-repo.git https://github.com/Alfresco/alfresco-community-repo - 25.2.0.45 + HEAD diff --git a/remote-api/pom.xml b/remote-api/pom.xml index 02999424e8..67b162c25a 100644 --- a/remote-api/pom.xml +++ b/remote-api/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.2.0.45 + 25.2.0.46-SNAPSHOT diff --git a/repository/pom.xml b/repository/pom.xml index 0e0a9cc02c..ec079603c8 100644 --- a/repository/pom.xml +++ b/repository/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-community-repo - 25.2.0.45 + 25.2.0.46-SNAPSHOT From c510462bdfc9e2f8a72b94870c4427c9a4cc8e9e Mon Sep 17 00:00:00 2001 From: bsayan2 Date: Mon, 16 Jun 2025 10:39:06 +0530 Subject: [PATCH 17/17] MNT-24883 licesence header update --- .../repo/content/transform/AbstractLocalTransform.java | 4 ++-- .../repo/content/transform/LocalFailoverTransform.java | 9 +++++++-- .../content/transform/LocalPassThroughTransform.java | 9 +++++++-- .../repo/content/transform/LocalPipelineTransform.java | 8 ++++++-- .../content/transform/LocalTransformServiceRegistry.java | 2 +- .../LocalTransformServiceRegistryConfigTest.java | 2 +- 6 files changed, 24 insertions(+), 10 deletions(-) diff --git a/repository/src/main/java/org/alfresco/repo/content/transform/AbstractLocalTransform.java b/repository/src/main/java/org/alfresco/repo/content/transform/AbstractLocalTransform.java index d1c7309673..269b4524f8 100644 --- a/repository/src/main/java/org/alfresco/repo/content/transform/AbstractLocalTransform.java +++ b/repository/src/main/java/org/alfresco/repo/content/transform/AbstractLocalTransform.java @@ -2,7 +2,7 @@ * #%L * Alfresco Repository * %% - * Copyright (C) 2019 - 2022 Alfresco Software Limited + * Copyright (C) 2019 - 2025 Alfresco Software Limited * %% * This file is part of the Alfresco software. * If the software was purchased under a paid Alfresco license, the terms of @@ -34,12 +34,12 @@ import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; import org.alfresco.error.AlfrescoRuntimeException; -import org.alfresco.service.cmr.repository.*; import org.alfresco.service.cmr.repository.ContentIOException; import org.alfresco.service.cmr.repository.ContentReader; import org.alfresco.service.cmr.repository.ContentWriter; import org.alfresco.service.cmr.repository.MimetypeService; import org.alfresco.service.cmr.repository.NodeRef; +import org.alfresco.service.cmr.repository.NodeService; import org.alfresco.transform.config.TransformOption; import org.alfresco.transform.config.TransformOptionGroup; import org.alfresco.transform.config.TransformOptionValue; diff --git a/repository/src/main/java/org/alfresco/repo/content/transform/LocalFailoverTransform.java b/repository/src/main/java/org/alfresco/repo/content/transform/LocalFailoverTransform.java index 1ca56dd151..f4ec8642cb 100644 --- a/repository/src/main/java/org/alfresco/repo/content/transform/LocalFailoverTransform.java +++ b/repository/src/main/java/org/alfresco/repo/content/transform/LocalFailoverTransform.java @@ -2,7 +2,7 @@ * #%L * Alfresco Repository * %% - * Copyright (C) 2019 - 2022 Alfresco Software Limited + * Copyright (C) 2019 - 2025 Alfresco Software Limited * %% * This file is part of the Alfresco software. * If the software was purchased under a paid Alfresco license, the terms of @@ -32,7 +32,12 @@ import java.util.Map; import java.util.Set; import org.alfresco.repo.content.filestore.FileContentWriter; -import org.alfresco.service.cmr.repository.*; +import org.alfresco.service.cmr.repository.ContentIOException; +import org.alfresco.service.cmr.repository.ContentReader; +import org.alfresco.service.cmr.repository.ContentWriter; +import org.alfresco.service.cmr.repository.MimetypeService; +import org.alfresco.service.cmr.repository.NodeRef; +import org.alfresco.service.cmr.repository.NodeService; import org.alfresco.transform.config.TransformOption; import org.alfresco.util.TempFileProvider; diff --git a/repository/src/main/java/org/alfresco/repo/content/transform/LocalPassThroughTransform.java b/repository/src/main/java/org/alfresco/repo/content/transform/LocalPassThroughTransform.java index 8b27ccc4bd..17ca9731ae 100644 --- a/repository/src/main/java/org/alfresco/repo/content/transform/LocalPassThroughTransform.java +++ b/repository/src/main/java/org/alfresco/repo/content/transform/LocalPassThroughTransform.java @@ -2,7 +2,7 @@ * #%L * Alfresco Repository * %% - * Copyright (C) 2005 - 2022 Alfresco Software Limited + * Copyright (C) 2005 - 2025 Alfresco Software Limited * %% * This file is part of the Alfresco software. * If the software was purchased under a paid Alfresco license, the terms of @@ -36,7 +36,12 @@ import java.util.Map; import java.util.Set; import org.alfresco.repo.content.MimetypeMap; -import org.alfresco.service.cmr.repository.*; +import org.alfresco.service.cmr.repository.ContentIOException; +import org.alfresco.service.cmr.repository.ContentReader; +import org.alfresco.service.cmr.repository.ContentWriter; +import org.alfresco.service.cmr.repository.MimetypeService; +import org.alfresco.service.cmr.repository.NodeRef; +import org.alfresco.service.cmr.repository.NodeService; import org.alfresco.transform.config.SupportedSourceAndTarget; import org.alfresco.transform.config.TransformOption; import org.alfresco.transform.config.Transformer; diff --git a/repository/src/main/java/org/alfresco/repo/content/transform/LocalPipelineTransform.java b/repository/src/main/java/org/alfresco/repo/content/transform/LocalPipelineTransform.java index 5d935a2c45..0ada671e95 100644 --- a/repository/src/main/java/org/alfresco/repo/content/transform/LocalPipelineTransform.java +++ b/repository/src/main/java/org/alfresco/repo/content/transform/LocalPipelineTransform.java @@ -2,7 +2,7 @@ * #%L * Alfresco Repository * %% - * Copyright (C) 2005 - 2022 Alfresco Software Limited + * Copyright (C) 2005 - 2025 Alfresco Software Limited * %% * This file is part of the Alfresco software. * If the software was purchased under a paid Alfresco license, the terms of @@ -34,7 +34,11 @@ import java.util.Map; import java.util.Set; import org.alfresco.repo.content.filestore.FileContentWriter; -import org.alfresco.service.cmr.repository.*; +import org.alfresco.service.cmr.repository.ContentReader; +import org.alfresco.service.cmr.repository.ContentWriter; +import org.alfresco.service.cmr.repository.MimetypeService; +import org.alfresco.service.cmr.repository.NodeRef; +import org.alfresco.service.cmr.repository.NodeService; import org.alfresco.transform.config.TransformOption; import org.alfresco.util.TempFileProvider; diff --git a/repository/src/main/java/org/alfresco/repo/content/transform/LocalTransformServiceRegistry.java b/repository/src/main/java/org/alfresco/repo/content/transform/LocalTransformServiceRegistry.java index c47a598c9e..1f7c3a7e0f 100644 --- a/repository/src/main/java/org/alfresco/repo/content/transform/LocalTransformServiceRegistry.java +++ b/repository/src/main/java/org/alfresco/repo/content/transform/LocalTransformServiceRegistry.java @@ -2,7 +2,7 @@ * #%L * Alfresco Repository * %% - * Copyright (C) 2019 - 2023 Alfresco Software Limited + * Copyright (C) 2019 - 2025 Alfresco Software Limited * %% * This file is part of the Alfresco software. * If the software was purchased under a paid Alfresco license, the terms of diff --git a/repository/src/test/java/org/alfresco/transform/registry/LocalTransformServiceRegistryConfigTest.java b/repository/src/test/java/org/alfresco/transform/registry/LocalTransformServiceRegistryConfigTest.java index 0551b9cf57..7b8b7d9cc8 100644 --- a/repository/src/test/java/org/alfresco/transform/registry/LocalTransformServiceRegistryConfigTest.java +++ b/repository/src/test/java/org/alfresco/transform/registry/LocalTransformServiceRegistryConfigTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Repository * %% - * Copyright (C) 2005 - 2023 Alfresco Software Limited + * Copyright (C) 2005 - 2025 Alfresco Software Limited * %% * This file is part of the Alfresco software. * If the software was purchased under a paid Alfresco license, the terms of