Skip to content
This repository was archived by the owner on Apr 8, 2025. It is now read-only.

Commit fb6be4d

Browse files
authored
Merge pull request #360 from xenit-eu/master
Release version 3.0.0
2 parents 428f5b5 + b5ea3b2 commit fb6be4d

File tree

96 files changed

+300
-7428
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

96 files changed

+300
-7428
lines changed

.github/workflows/ci.yml

Lines changed: 22 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,9 @@ name: CI
22

33
on:
44
push:
5-
pull_request:
6-
5+
workflow_dispatch:
6+
schedule:
7+
- cron: '7 0 * * SUN'
78
env:
89
ORG_GRADLE_PROJECT_alfresco_nexus_username: ${{ secrets.ALFRESCO_NEXUS_USERNAME }}
910
ORG_GRADLE_PROJECT_alfresco_nexus_password: ${{ secrets.ALFRESCO_NEXUS_PASSWORD }}
@@ -25,9 +26,15 @@ jobs:
2526
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
2627
GITHUB_TOKEN: ${{ github.token }}
2728
run: ./gradlew sonarqube
29+
- name: 'Upload Artifact'
30+
if: success() || failure()
31+
uses: actions/upload-artifact@v3
32+
with:
33+
name: test-result
34+
path: /home/runner/work/**/build/reports
35+
retention-days: 2
2836
integration-test:
2937
runs-on: ubuntu-latest
30-
if: ${{ startsWith(github.ref, 'refs/heads/master') || startsWith(github.base_ref, 'master') || startswith(github.ref, 'refs/heads/release') }}
3138
strategy:
3239
matrix:
3340
flavour: [ "community", "enterprise" ]
@@ -38,12 +45,20 @@ jobs:
3845
- uses: actions/setup-java@v1
3946
with:
4047
java-version: 11
48+
- name: Login to CloudSmith docker registry
49+
env:
50+
DOCKER_USER: ${{ secrets.CLOUDSMITH_USER }}
51+
DOCKER_PASSWORD: ${{ secrets.CLOUDSMITH_APIKEY }}
52+
run: echo "$DOCKER_PASSWORD" | docker login docker.xenit.eu --username "$DOCKER_USER" --password-stdin
4153
- name: Test
4254
run: ./gradlew integrationTest -P${{ matrix.flavour }}
43-
env:
44-
ORG_GRADLE_PROJECT_xenit_docker_registry_url: ${{ secrets.XENIT_DOCKER_REGISTRY_URL }}
45-
ORG_GRADLE_PROJECT_xenit_docker_registry_username: ${{ secrets.XENIT_DOCKER_REGISTRY_USERNAME }}
46-
ORG_GRADLE_PROJECT_xenit_docker_registry_password: ${{ secrets.XENIT_DOCKER_REGISTRY_PASSWORD }}
55+
- name: 'Upload Artifact'
56+
if: success() || failure()
57+
uses: actions/upload-artifact@v3
58+
with:
59+
name: test-result-${{ matrix.flavour }}
60+
path: /home/runner/work/**/build/reports
61+
retention-days: 2
4762
publish:
4863
needs: [test, integration-test]
4964
runs-on: ubuntu-latest

CHANGELOG.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,22 @@ Version template:
2020
### YANKED (for reverted functionality in)
2121
-->
2222
# Dynamic Extensions For Alfresco Changelog
23+
24+
## [3.0.0] - 2022-11-29
25+
26+
### Added
27+
28+
* [#356](https://github.com/xenit-eu/dynamic-extensions-for-alfresco/issues/356) Added Alfresco 7.3 compatibility
29+
2330
## [2.1.4] - 2022-07-13
2431
### Fixed
2532
* [#350](https://github.com/xenit-eu/dynamic-extensions-for-alfresco/issues/350) Added missing curly brace in osgi framework spring context
2633

2734
## [2.1.3] - 2022-04-11
2835
### Added
2936
* [#344](https://github.com/xenit-eu/dynamic-extensions-for-alfresco/issues/344) Made it possible to configure boot delegation in OSGI framework context
30-
* [#346](https://github.com/xenit-eu/dynamic-extensions-for-alfresco/issues/346) Added Alfresc 7.1 compatibility
31-
* [#347](https://github.com/xenit-eu/dynamic-extensions-for-alfresco/issues/347) Added Alfresc 7.2 compatibility
37+
* [#346](https://github.com/xenit-eu/dynamic-extensions-for-alfresco/issues/346) Added Alfresco 7.1 compatibility
38+
* [#347](https://github.com/xenit-eu/dynamic-extensions-for-alfresco/issues/347) Added Alfresco 7.2 compatibility
3239

3340
## [2.1.2] - 2022-02-03
3441
### Fixed

README.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -66,13 +66,12 @@ the [Alfresco Docker Gradle Plugins](https://github.com/xenit-eu/alfresco-docker
6666

6767
Dynamic Extensions is systematically integration-tested against:
6868

69+
* Alfresco Enterprise & Community 7.3
70+
* Alfresco Enterprise & Community 7.2
71+
* Alfresco Enterprise & Community 7.1
6972
* Alfresco Enterprise & Community 7.0
7073
* Alfresco Enterprise & Community 6.2 (Requires hotfix, see below)
7174
* Alfresco Enterprise & Community 6.1 (Requires hotfix, see below)
72-
* Alfresco Enterprise & Community 6.0
73-
* Alfresco Enterprise & Community 5.2
74-
* Alfresco Enterprise & Community 5.1
75-
* Alfresco Enterprise & Community 5.0
7675

7776
> Integration tests are currently only executed on our private Jenkins build server.
7877

0 commit comments

Comments
 (0)