Skip to content

Commit

Permalink
Merge pull request #67 from xenit-eu/ALFREDOPS-860-release-for-acs-23
Browse files Browse the repository at this point in the history
[ALFREDOPS-860] added support for ACS 23.1, dropped support for ACS 6…
  • Loading branch information
pvriel authored Jan 10, 2025
2 parents 5292927 + 28cfbde commit a38c070
Show file tree
Hide file tree
Showing 11 changed files with 18 additions and 16 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
strategy:
matrix:
flavour: [ "community" ]
version: [ "71", "72", "73", "74" ]
version: [ "231" ]
steps:
- uses: actions/checkout@v4
with:
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,13 @@ Version template:

# Alfresco Health Processor Changelog

## [1.0.0] - 2025-01-10
### Added
* Added support for Alfresco 23.1

### Removed
* Removed support for Alfresco 6.x and 7.x

## [0.6.1] - 2025-01-08

### Fixed
Expand Down
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@
A background processor capable of performing various operations on the nodes in your Alfresco repository, in a batched
and controlled manner.

### Note regarding Alfresco 6.x and 7.x
Starting from version 1.0.0, the Health Processor is no longer compatible with Alfresco 6.x and 7.x.
For Alfresco 6.x and 7.x, please use an older version of the Health Processor.

## Usage

Alfresco Health Processor is available in Maven Central as an
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
alfrescoVersion=7.1.1.2
alfredTelemetryVersion=0.10.1
alfredTelemetryVersion=1.0.0
micrometerVersion=1.0.6
jvmExtrasVersion=0.1.2
lombokVersion=1.18.36
Expand Down
3 changes: 3 additions & 0 deletions integration-tests/alfresco-community-231/overload.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
ext {
alfrescoVersion = '23.1.0'
}
3 changes: 0 additions & 3 deletions integration-tests/alfresco-community-71/overload.gradle

This file was deleted.

3 changes: 0 additions & 3 deletions integration-tests/alfresco-community-72/overload.gradle

This file was deleted.

3 changes: 0 additions & 3 deletions integration-tests/alfresco-community-73/overload.gradle

This file was deleted.

3 changes: 0 additions & 3 deletions integration-tests/alfresco-community-74/overload.gradle

This file was deleted.

2 changes: 1 addition & 1 deletion integration-tests/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ subprojects { Project p ->

dockerBuild {
alfresco {
baseImage = "docker.io/xenit/alfresco-repository-skeleton:${alfrescoVersion.substring(0,3)}"
baseImage = "docker.io/xenit/alfresco-repository-skeleton:${alfrescoVersion.substring(0, alfrescoVersion.lastIndexOf('.'))}"
}
}

Expand Down
2 changes: 1 addition & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ include 'alfresco-health-processor-api'
include 'alfresco-health-processor-platform'
include 'integration-tests'

def integrationTestVersions = ["71","72","73","74"]
def integrationTestVersions = ["231"]

integrationTestVersions.each {version ->
include ":integration-tests:alfresco-community-${version}"
Expand Down

0 comments on commit a38c070

Please sign in to comment.