Skip to content

Commit 8cc2580

Browse files
committed
Merge branch '2025.3'
2 parents 1392638 + 3f665c9 commit 8cc2580

File tree

21 files changed

+293
-320
lines changed

21 files changed

+293
-320
lines changed

.github/dependabot.yml

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,20 @@ updates:
4545
patterns:
4646
- "*"
4747
- package-ecosystem: "npm" # See documentation for possible values
48-
directory: "/turing-js-sdk" # Location of package manifests
48+
directory: "/turing-js-sdk/js-sdk-lib" # Location of package manifests
49+
schedule:
50+
interval: "weekly"
51+
target-branch: "2025.3"
52+
open-pull-requests-limit: 15
53+
ignore:
54+
- dependency-name: "typescript"
55+
groups:
56+
react:
57+
applies-to: version-updates
58+
patterns:
59+
- "*"
60+
- package-ecosystem: "npm" # See documentation for possible values
61+
directory: "/turing-js-sdk/js-sdk-sample" # Location of package manifests
4962
schedule:
5063
interval: "weekly"
5164
target-branch: "2025.3"

.github/workflows/deploy.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,7 @@ jobs:
8484
uses: MathieuSoysal/[email protected]
8585
with:
8686
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
87+
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
8788
javadoc-branch: javadoc
8889
java-version: 21
8990
target-folder: docs/latest/javadoc
@@ -96,4 +97,5 @@ jobs:
9697
npm publish
9798
env:
9899
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
100+
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
99101

turing-aem/aem-plugin-sample/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
</plugin>
4848
<plugin>
4949
<artifactId>maven-surefire-plugin</artifactId>
50-
<version>3.5.3</version>
50+
<version>3.5.4</version>
5151
</plugin>
5252
<plugin>
5353
<artifactId>maven-jar-plugin</artifactId>

turing-aem/aem-plugin/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@
114114
<plugin>
115115
<groupId>org.apache.maven.plugins</groupId>
116116
<artifactId>maven-shade-plugin</artifactId>
117-
<version>3.6.0</version>
117+
<version>3.6.1</version>
118118
<executions>
119119
<execution>
120120
<goals>

turing-app/pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@
172172
<dependency>
173173
<groupId>org.mariadb.jdbc</groupId>
174174
<artifactId>mariadb-java-client</artifactId>
175-
<version>3.5.5</version>
175+
<version>3.5.6</version>
176176
</dependency>
177177
<dependency>
178178
<groupId>org.postgresql</groupId>
@@ -349,7 +349,7 @@
349349
<dependency>
350350
<groupId>com.google.code.gson</groupId>
351351
<artifactId>gson</artifactId>
352-
<version>2.13.1</version>
352+
<version>2.13.2</version>
353353
</dependency>
354354
</dependencies>
355355
<dependencyManagement>
@@ -452,12 +452,12 @@
452452
<plugin>
453453
<groupId>org.apache.maven.plugins</groupId>
454454
<artifactId>maven-surefire-plugin</artifactId>
455-
<version>3.5.3</version>
455+
<version>3.5.4</version>
456456
</plugin>
457457
<plugin>
458458
<groupId>org.apache.maven.plugins</groupId>
459459
<artifactId>maven-failsafe-plugin</artifactId>
460-
<version>3.5.3</version>
460+
<version>3.5.4</version>
461461
<executions>
462462
<execution>
463463
<goals>
@@ -493,7 +493,7 @@
493493
<plugin>
494494
<groupId>org.apache.maven.plugins</groupId>
495495
<artifactId>maven-surefire-report-plugin</artifactId>
496-
<version>3.5.3</version>
496+
<version>3.5.4</version>
497497
</plugin>
498498
</plugins>
499499
</reporting>

turing-commons/pom.xml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -87,38 +87,38 @@
8787
<dependency>
8888
<groupId>org.mongodb</groupId>
8989
<artifactId>bson</artifactId>
90-
<version>5.5.1</version>
90+
<version>5.6.0</version>
9191
<scope>compile</scope>
9292
</dependency>
9393
<dependency>
9494
<groupId>org.mongodb</groupId>
9595
<artifactId>mongodb-driver-sync</artifactId>
96-
<version>5.5.1</version>
96+
<version>5.6.0</version>
9797
<scope>compile</scope>
9898
</dependency>
9999
<!-- Test Dependencies -->
100100
<dependency>
101101
<groupId>org.junit.jupiter</groupId>
102102
<artifactId>junit-jupiter</artifactId>
103-
<version>5.11.4</version>
103+
<version>5.13.4</version>
104104
<scope>test</scope>
105105
</dependency>
106106
<dependency>
107107
<groupId>org.mockito</groupId>
108108
<artifactId>mockito-core</artifactId>
109-
<version>5.15.2</version>
109+
<version>5.19.0</version>
110110
<scope>test</scope>
111111
</dependency>
112112
<dependency>
113113
<groupId>org.mockito</groupId>
114114
<artifactId>mockito-junit-jupiter</artifactId>
115-
<version>5.15.2</version>
115+
<version>5.19.0</version>
116116
<scope>test</scope>
117117
</dependency>
118118
<dependency>
119119
<groupId>org.assertj</groupId>
120120
<artifactId>assertj-core</artifactId>
121-
<version>3.26.3</version>
121+
<version>3.27.4</version>
122122
<scope>test</scope>
123123
</dependency>
124124
</dependencies>
@@ -146,7 +146,7 @@
146146
</plugin>
147147
<plugin>
148148
<artifactId>maven-surefire-plugin</artifactId>
149-
<version>3.5.3</version>
149+
<version>3.5.4</version>
150150
</plugin>
151151
<plugin>
152152
<artifactId>maven-jar-plugin</artifactId>

turing-connector/connector-commons/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
</plugin>
5656
<plugin>
5757
<artifactId>maven-surefire-plugin</artifactId>
58-
<version>3.5.3</version>
58+
<version>3.5.4</version>
5959
</plugin>
6060
<plugin>
6161
<artifactId>maven-jar-plugin</artifactId>

turing-db/db-app/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
<dependency>
4949
<groupId>org.mariadb.jdbc</groupId>
5050
<artifactId>mariadb-java-client</artifactId>
51-
<version>3.5.5</version>
51+
<version>3.5.6</version>
5252
<exclusions>
5353
<exclusion>
5454
<groupId>org.slf4j</groupId>
@@ -109,7 +109,7 @@
109109
<plugin>
110110
<groupId>org.apache.maven.plugins</groupId>
111111
<artifactId>maven-shade-plugin</artifactId>
112-
<version>3.6.0</version>
112+
<version>3.6.1</version>
113113
<executions>
114114
<execution>
115115
<goals>

turing-db/db-commons/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
</plugin>
4848
<plugin>
4949
<artifactId>maven-surefire-plugin</artifactId>
50-
<version>3.5.3</version>
50+
<version>3.5.4</version>
5151
</plugin>
5252
<plugin>
5353
<artifactId>maven-jar-plugin</artifactId>

turing-db/db-sample/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
</plugin>
4545
<plugin>
4646
<artifactId>maven-surefire-plugin</artifactId>
47-
<version>3.5.3</version>
47+
<version>3.5.4</version>
4848
</plugin>
4949
<plugin>
5050
<artifactId>maven-jar-plugin</artifactId>

0 commit comments

Comments
 (0)