Skip to content

Commit 25bdc63

Browse files
authored
Merge pull request #150 from xenit-eu/ALFREDAPI-510_merge
Alfredapi 510 merge
2 parents c9512fe + 21fefbc commit 25bdc63

File tree

30 files changed

+221
-303
lines changed

30 files changed

+221
-303
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,19 @@
11
# Alfred API - Changelog
22

33

4+
## 4.0.0 (2023-01-17)
5+
This release adds support for Alfresco 7.3 and drops support for Alfresco 5.2 and 6.1.
6+
7+
### Added
8+
* [ALFREDAPI-505](https://xenitsupport.jira.com/browse/ALFREDAPI-505): Added support for Alfresco 7.3
9+
10+
### Fixed
11+
* [ALFREDAPI-503](https://xenitsupport.jira.com/browse/ALFREDAPI-503): Fixed issue where site information could not be retrieved if the user does not have permissions to one of the components
12+
13+
### Removed
14+
* [ALFREDAPI-505](https://xenitsupport.jira.com/browse/ALFREDAPI-505): Drop support for Alfresco 5.2 and 6.1
15+
16+
417
## 3.1.0 (2022-04-21)
518

619
### Added

Jenkinsfile

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -45,12 +45,6 @@ node {
4545
stage("Unit test apix-rest-v1") {
4646
sh "${gradleCommand} :apix-rest-v1:test"
4747
}
48-
stage("Build 52") {
49-
BuildVersionX("52")
50-
}
51-
stage("Build 61") {
52-
BuildVersionX("61")
53-
}
5448
stage("Build 62") {
5549
BuildVersionX("62")
5650
}
@@ -63,6 +57,9 @@ node {
6357
stage("Build 72") {
6458
BuildVersionX("72")
6559
}
60+
stage("Build 73") {
61+
BuildVersionX("73")
62+
}
6663

6764
stage("Publishing") {
6865
def gitBranch = env.BRANCH_NAME

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ In a development scenario, it is possible to upload code changes to a running al
9797
This requires the running alfresco to already have an older or equal version of alfred-api installed, and
9898
the use of the jar artifact instead of the amp to do the new install.
9999
The JAR has the format `apix-impl-{ALFRESCO-VERSION}-{APIX-VERSION}.jar` and can be found under
100-
`apix-impl/{ALFRESCO-VERSION}/build/libs/`, where `ALFRESCO-VERSION` is one of *(52|61|62|70|71|72)*.
100+
`apix-impl/{ALFRESCO-VERSION}/build/libs/`, where `ALFRESCO-VERSION` is one of *(62|70|71|72|73)*.
101101
The new installation can be done either through the DE web interface, or with the following gradle task.
102102
```bash
103103
./gradlew :apix-impl:apix-impl-{ALFRESCO-VERSION}:installBundle -Phost={ALFRESCO-HOST} -Pport={ALFRESCO-PORT}

apix-docker/52/build.gradle

Lines changed: 0 additions & 11 deletions
This file was deleted.

apix-docker/52/debug-extension.docker-compose.yml

Lines changed: 0 additions & 17 deletions
This file was deleted.

apix-docker/52/docker-compose.yml

Lines changed: 0 additions & 38 deletions
This file was deleted.

apix-docker/61/build.gradle

Lines changed: 0 additions & 13 deletions
This file was deleted.

apix-docker/61/docker-compose.yml

Lines changed: 0 additions & 38 deletions
This file was deleted.

apix-docker/73/build.gradle

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
dependencies {
2+
baseAlfrescoWar platform("org.alfresco:acs-packaging:7.3.0.1")
3+
baseAlfrescoWar 'org.alfresco:content-services@war'
4+
}
5+
6+
dockerAlfresco {
7+
baseImage = 'docker.xenit.eu/private/alfresco-enterprise/alfresco-repository-enterprise:7.3.0.1'
8+
}

apix-docker/61/debug-extension.docker-compose.yml renamed to apix-docker/73/debug-extension.docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ services:
77
- DEBUG=true
88
- SHARE_HOST=alfresco-share
99
alfresco-share:
10-
image: hub.xenit.eu/public/alfresco-share-community:6.1
10+
image: docker.io/xenit/alfresco-share-community:7.3
1111
ports:
1212
- 8090:8080
1313
environment:
1414
- DEBUG=true
1515
- ALFRESCO_HOST=alfresco-core
16-
- ALFRESCO_INTERNAL_HOST=alfresco-core
16+
- ALFRESCO_INTERNAL_HOST=alfresco-core

0 commit comments

Comments
 (0)