Skip to content

Commit 7bcc020

Browse files
committed
Merge branch 'develop'
2 parents af04a52 + 9d8e659 commit 7bcc020

File tree

14 files changed

+37
-31
lines changed

14 files changed

+37
-31
lines changed

.github/workflows/maven-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
runs-on: ${{ matrix.os }}
2121
strategy:
2222
matrix:
23-
java: [11, 17]
23+
java: [11, 17, 21]
2424
os: [ubuntu-latest]
2525
distribution: [temurin]
2626
include:

.github/workflows/maven-deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717

1818
steps:
1919
- name: Checkout code
20-
uses: actions/checkout@v3
20+
uses: actions/checkout@v4
2121

2222
- name: Configure GIT
2323
run: |

.github/workflows/release-from-tag.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
permissions:
1313
contents: write
1414
steps:
15-
- uses: actions/checkout@v3
15+
- uses: actions/checkout@v4
1616
- uses: ncipollo/release-action@v1
1717
with:
1818
body: 'Changes: https://devops.wcm.io/conga/plugins/aem/changes-report.html'

changes.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,12 @@
2323
xsi:schemaLocation="http://maven.apache.org/changes/1.0.0 https://maven.apache.org/plugins/maven-changes-plugin/xsd/changes-1.0.0.xsd">
2424
<body>
2525

26+
<release version="2.19.8" date="2023-10-18">
27+
<action type="fix" dev="trichter" issue="73">
28+
Increase SnakeYAML codepoint limit to 64MB (from default 3MB).
29+
</action>
30+
</release>
31+
2632
<release version="2.19.6" date="2023-08-31">
2733
<action type="update" dev="sseifert">
2834
Switch to latest Maven APIs to handle build output timestamp.

conga-aem-plugin/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,13 @@
2525
<parent>
2626
<groupId>io.wcm.devops.conga.plugins</groupId>
2727
<artifactId>io.wcm.devops.conga.plugins.aem.parent</artifactId>
28-
<version>2.19.6</version>
28+
<version>2.19.8</version>
2929
<relativePath>../parent/pom.xml</relativePath>
3030
</parent>
3131

3232
<groupId>io.wcm.devops.conga.plugins</groupId>
3333
<artifactId>io.wcm.devops.conga.plugins.aem</artifactId>
34-
<version>2.19.6</version>
34+
<version>2.19.8</version>
3535
<packaging>jar</packaging>
3636

3737
<name>CONGA AEM Plugin</name>

parent/pom.xml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,13 @@
2525
<parent>
2626
<groupId>io.wcm.devops</groupId>
2727
<artifactId>io.wcm.devops.parent_toplevel</artifactId>
28-
<version>1.4.0</version>
28+
<version>1.4.2</version>
2929
<relativePath />
3030
</parent>
3131

3232
<groupId>io.wcm.devops.conga.plugins</groupId>
3333
<artifactId>io.wcm.devops.conga.plugins.aem.parent</artifactId>
34-
<version>2.19.6</version>
34+
<version>2.19.8</version>
3535
<packaging>pom</packaging>
3636

3737
<name>CONGA AEM Plugin</name>
@@ -43,12 +43,12 @@
4343

4444
<issueManagement>
4545
<system>GitHub</system>
46-
<url>https://github.com/wcm-io/conga-aem-plugin/issues/</url>
46+
<url>https://github.com/wcm-io-devops/conga-aem-plugin/issues/</url>
4747
</issueManagement>
4848

4949
<properties>
5050
<maven.version>3.3.9</maven.version>
51-
<oak.version>1.54.0</oak.version>
51+
<oak.version>1.58.0</oak.version>
5252
</properties>
5353

5454
<dependencyManagement>
@@ -57,12 +57,12 @@
5757
<dependency>
5858
<groupId>io.wcm.devops.conga</groupId>
5959
<artifactId>io.wcm.devops.conga.generator</artifactId>
60-
<version>1.15.0</version>
60+
<version>1.16.4</version>
6161
</dependency>
6262
<dependency>
6363
<groupId>io.wcm.devops.conga</groupId>
6464
<artifactId>conga-maven-plugin</artifactId>
65-
<version>1.15.0</version>
65+
<version>1.16.4</version>
6666
</dependency>
6767

6868
<dependency>
@@ -74,7 +74,7 @@
7474
<dependency>
7575
<groupId>io.wcm.devops.conga.plugins</groupId>
7676
<artifactId>io.wcm.devops.conga.plugins.ansible</artifactId>
77-
<version>1.4.0</version>
77+
<version>1.4.6</version>
7878
</dependency>
7979

8080
<dependency>
@@ -108,7 +108,7 @@
108108
<dependency>
109109
<groupId>org.apache.commons</groupId>
110110
<artifactId>commons-compress</artifactId>
111-
<version>1.23.0</version>
111+
<version>1.24.0</version>
112112
</dependency>
113113
<dependency>
114114
<groupId>commons-cli</groupId>
@@ -123,7 +123,7 @@
123123
<dependency>
124124
<groupId>commons-io</groupId>
125125
<artifactId>commons-io</artifactId>
126-
<version>2.13.0</version>
126+
<version>2.14.0</version>
127127
</dependency>
128128

129129
<dependency>
@@ -162,7 +162,7 @@
162162
<dependency>
163163
<groupId>biz.netcentric.aem</groupId>
164164
<artifactId>aem-nodetypes</artifactId>
165-
<version>2022.10.0</version>
165+
<version>2023.10.0</version>
166166
</dependency>
167167
<dependency>
168168
<groupId>io.wcm.tooling.nodetypes</groupId>

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@
2323
<parent>
2424
<groupId>io.wcm.devops.conga.plugins</groupId>
2525
<artifactId>io.wcm.devops.conga.plugins.aem.parent</artifactId>
26-
<version>2.19.6</version>
26+
<version>2.19.8</version>
2727
<relativePath>parent/pom.xml</relativePath>
2828
</parent>
2929

3030
<groupId>io.wcm.devops.conga.plugins</groupId>
3131
<artifactId>io.wcm.devops.conga.plugins.aem.root</artifactId>
32-
<version>2.19.6</version>
32+
<version>2.19.8</version>
3333
<packaging>pom</packaging>
3434

3535
<name>CONGA AEM Plugin</name>

tooling/conga-aem-crypto-cli/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,14 @@
2525
<parent>
2626
<groupId>io.wcm.devops.conga.plugins</groupId>
2727
<artifactId>io.wcm.devops.conga.plugins.aem.parent</artifactId>
28-
<version>2.19.6</version>
28+
<version>2.19.8</version>
2929
<relativePath>../../parent/pom.xml</relativePath>
3030
</parent>
3131

3232
<groupId>io.wcm.devops.conga.plugins</groupId>
3333
<artifactId>conga-aem-crypto-cli</artifactId>
3434
<packaging>jar</packaging>
35-
<version>2.19.6</version>
35+
<version>2.19.8</version>
3636

3737
<name>CONGA AEM Crypto Command Line Interface</name>
3838
<description>Command line tool to generate Crypto keys for AEM.</description>
@@ -42,7 +42,7 @@
4242
<dependency>
4343
<groupId>io.wcm.devops.conga.plugins</groupId>
4444
<artifactId>io.wcm.devops.conga.plugins.aem</artifactId>
45-
<version>2.19.6</version>
45+
<version>2.19.8</version>
4646
<scope>compile</scope>
4747
<exclusions>
4848
<!-- Exclude all deps - only crypto util classes are used -->

tooling/conga-aem-maven-plugin/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,14 @@
2525
<parent>
2626
<groupId>io.wcm.devops.conga.plugins</groupId>
2727
<artifactId>io.wcm.devops.conga.plugins.aem.parent</artifactId>
28-
<version>2.19.6</version>
28+
<version>2.19.8</version>
2929
<relativePath>../../parent/pom.xml</relativePath>
3030
</parent>
3131

3232
<groupId>io.wcm.devops.conga.plugins</groupId>
3333
<artifactId>conga-aem-maven-plugin</artifactId>
3434
<packaging>maven-plugin</packaging>
35-
<version>2.19.6</version>
35+
<version>2.19.8</version>
3636

3737
<name>CONGA AEM Maven Plugin</name>
3838
<description>wcm.io DevOps CONGA - CONfiguration GenerAtor Maven Plugin for AEM</description>
@@ -62,7 +62,7 @@
6262
<dependency>
6363
<groupId>io.wcm.devops.conga.plugins</groupId>
6464
<artifactId>io.wcm.devops.conga.plugins.aem</artifactId>
65-
<version>2.19.6</version>
65+
<version>2.19.8</version>
6666
<scope>compile</scope>
6767
</dependency>
6868
<dependency>

tooling/conga-aem-maven-plugin/src/it/example/pom.xml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
<parent>
2727
<groupId>io.wcm.maven</groupId>
2828
<artifactId>io.wcm.maven.global-parent</artifactId>
29-
<version>44</version>
29+
<version>54</version>
3030
<relativePath/>
3131
</parent>
3232

@@ -46,6 +46,7 @@
4646
<artifactId>io.wcm.caconfig.editor.package</artifactId>
4747
<version>1.12.0</version>
4848
<type>zip</type>
49+
<scope>compile</scope>
4950
</dependency>
5051

5152
<!-- ACS AEM Commons -->
@@ -73,7 +74,7 @@
7374
<plugin>
7475
<groupId>io.wcm.devops.conga</groupId>
7576
<artifactId>conga-maven-plugin</artifactId>
76-
<version>1.15.0</version>
77+
<version>1.16.4</version>
7778
<extensions>true</extensions>
7879
<dependencies>
7980

0 commit comments

Comments
 (0)