Skip to content

Commit 22be376

Browse files
authored
Merge branch 'master' into dependabot/npm_and_yarn/src/frontend/efiling-frontend/pbkdf2-3.1.3
2 parents 6b05d73 + 2132e67 commit 22be376

File tree

13 files changed

+200
-82
lines changed

13 files changed

+200
-82
lines changed

.github/dependabot.yml

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,24 +3,18 @@ updates:
33
# Mvn dependencies
44
- package-ecosystem: "maven"
55
directory: "/src/backend"
6-
open-pull-requests-limit: 3
76
schedule:
8-
interval: "weekly"
9-
day: "monday"
7+
interval: "daily"
108
time: "05:00"
119
# npm dependencies - frontend
1210
- package-ecosystem: "npm"
1311
directory: "/src/frontend/efiling-frontend"
14-
open-pull-requests-limit: 4
1512
schedule:
16-
interval: "weekly"
17-
day: "monday"
13+
interval: "daily"
1814
time: "05:00"
1915
# npm dependencies - demo
2016
- package-ecosystem: "npm"
2117
directory: "/src/frontend/efiling-demo"
22-
open-pull-requests-limit: 4
2318
schedule:
24-
interval: "weekly"
25-
day: "monday"
19+
interval: "daily"
2620
time: "05:00"

src/backend/efiling-api/pom.xml

Lines changed: 14 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,13 @@
55
<parent>
66
<groupId>org.springframework.boot</groupId>
77
<artifactId>spring-boot-starter-parent</artifactId>
8-
<version>3.5.0</version>
8+
<version>3.5.4</version>
9+
910
<relativePath/> <!-- lookup parent from repository -->
1011
</parent>
1112
<groupId>ca.bc.gov.open.jag</groupId>
1213
<artifactId>efiling-api</artifactId>
13-
<version>2.0.9-SNAPSHOT</version>
14+
<version>2.0.10</version>
1415
<name>efiling-api</name>
1516
<description>Demo project for Spring Boot</description>
1617

@@ -65,7 +66,7 @@
6566
<dependency>
6667
<groupId>ca.bc.gov.open.jag</groupId>
6768
<artifactId>efiling-commons</artifactId>
68-
<version>2.0.9-SNAPSHOT</version>
69+
<version>2.0.10</version>
6970
</dependency>
7071

7172
<dependency>
@@ -243,12 +244,13 @@
243244
<dependency>
244245
<groupId>org.apache.cxf</groupId>
245246
<artifactId>cxf-core</artifactId>
246-
<version>4.0.6</version>
247+
<version>4.1.3</version>
247248
</dependency>
248249
<dependency>
249250
<groupId>org.springframework.security</groupId>
250251
<artifactId>spring-security-crypto</artifactId>
251-
<version>6.3.8</version>
252+
<version>6.5.3</version>
253+
252254
</dependency>
253255
</dependencies>
254256

@@ -257,7 +259,7 @@
257259
<dependency>
258260
<groupId>ca.bc.gov.open.jag</groupId>
259261
<artifactId>efiling-bom</artifactId>
260-
<version>2.0.9-SNAPSHOT</version>
262+
<version>2.0.10</version>
261263
<type>pom</type>
262264
<scope>import</scope>
263265
</dependency>
@@ -280,19 +282,19 @@
280282
<dependency>
281283
<groupId>ca.bc.gov.open.jag</groupId>
282284
<artifactId>efiling-cso-starter</artifactId>
283-
<version>2.0.9-SNAPSHOT</version>
285+
<version>2.0.10</version>
284286
</dependency>
285287

286288
<dependency>
287289
<groupId>ca.bc.gov.open.jag</groupId>
288290
<artifactId>efiling-bambora-api-client</artifactId>
289-
<version>2.0.9-SNAPSHOT</version>
291+
<version>2.0.10</version>
290292
</dependency>
291293

292294
<dependency>
293295
<groupId>ca.bc.gov.open.jag</groupId>
294296
<artifactId>efiling-ceis-api-client</artifactId>
295-
<version>2.0.9-SNAPSHOT</version>
297+
<version>2.0.10</version>
296298
</dependency>
297299

298300
<!-- https://mvnrepository.com/artifact/com.github.java-json-tools/jackson-coreutils -->
@@ -322,7 +324,8 @@
322324
<dependency>
323325
<groupId>com.splunk.logging</groupId>
324326
<artifactId>splunk-library-javalogging</artifactId>
325-
<version>1.11.4</version>
327+
<version>1.11.8</version>
328+
326329
</dependency>
327330
</dependencies>
328331

@@ -334,7 +337,7 @@
334337
<dependency>
335338
<groupId>ca.bc.gov.open.jag</groupId>
336339
<artifactId>efiling-demo-starter</artifactId>
337-
<version>2.0.9-SNAPSHOT</version>
340+
<version>2.0.10</version>
338341
</dependency>
339342
</dependencies>
340343
</profile>

src/backend/efiling-api/src/main/resources/application.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
server:
22
port: ${SERVER_PORT:8080}
3+
tomcat:
4+
max-part-count: ${MAX_FILE_COUNT:15}
5+
max-part-header-size: ${MAX_HEADER_SIZE:2048}
36
spring:
47
security:
58
oauth2:

src/backend/libs/efiling-bambora-api-client/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<modelVersion>4.0.0</modelVersion>
55
<groupId>ca.bc.gov.open.jag</groupId>
66
<artifactId>efiling-bambora-api-client</artifactId>
7-
<version>2.0.9-SNAPSHOT</version>
7+
<version>2.0.10</version>
88
<name>efiling-bambora-api-client</name>
99
<description>Client for Bambora</description>
1010

@@ -111,7 +111,7 @@
111111
<dependency>
112112
<groupId>ca.bc.gov.open.jag</groupId>
113113
<artifactId>efiling-commons</artifactId>
114-
<version>2.0.9-SNAPSHOT</version>
114+
<version>2.0.10</version>
115115
<scope>compile</scope>
116116
</dependency>
117117
</dependencies>
@@ -128,7 +128,7 @@
128128
<dependency>
129129
<groupId>ca.bc.gov.open.jag</groupId>
130130
<artifactId>efiling-bom</artifactId>
131-
<version>2.0.9-SNAPSHOT</version>
131+
<version>2.0.10</version>
132132
<type>pom</type>
133133
<scope>import</scope>
134134
</dependency>

src/backend/libs/efiling-bom/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<modelVersion>4.0.0</modelVersion>
66
<groupId>ca.bc.gov.open.jag</groupId>
77
<artifactId>efiling-bom</artifactId>
8-
<version>2.0.9-SNAPSHOT</version>
8+
<version>2.0.10</version>
99

1010
<properties>
1111
<log4j2.version>2.17.1</log4j2.version>
@@ -23,7 +23,7 @@
2323
<javax.xml.bind.version>2.3.1</javax.xml.bind.version>
2424
<joda-time.version>2.13.0</joda-time.version>
2525
<net.rakugakibox.spring.boot.version>2.7.1</net.rakugakibox.spring.boot.version>
26-
<org.apache.commons.version>3.17.0</org.apache.commons.version>
26+
<org.apache.commons.version>3.18.0</org.apache.commons.version>
2727
<org.apache.commons.collections.collections.version>4.4</org.apache.commons.collections.collections.version>
2828
<org.apache.cxf.version>4.1.0</org.apache.cxf.version>
2929
<org.apache.tika.version>1.24.1</org.apache.tika.version>
@@ -42,7 +42,7 @@
4242
<org.apache.tomcat.embed.version>[11.0.8,)</org.apache.tomcat.embed.version>
4343
<org.json.version>20250517</org.json.version>
4444
<org.springframework.security.version>6.5.0</org.springframework.security.version>
45-
<org.springframework.version>6.2.7</org.springframework.version>
45+
<org.springframework.version>6.2.10</org.springframework.version>
4646
</properties>
4747

4848
<repositories>

src/backend/libs/efiling-ceis-api-client/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<modelVersion>4.0.0</modelVersion>
55
<groupId>ca.bc.gov.open.jag</groupId>
66
<artifactId>efiling-ceis-api-client</artifactId>
7-
<version>2.0.9-SNAPSHOT</version>
7+
<version>2.0.10</version>
88
<name>efiling-ceis-api-client</name>
99
<description>Client for CEIS ORDS</description>
1010

@@ -123,7 +123,7 @@
123123
<dependency>
124124
<groupId>ca.bc.gov.open.jag</groupId>
125125
<artifactId>efiling-commons</artifactId>
126-
<version>2.0.9-SNAPSHOT</version>
126+
<version>2.0.10</version>
127127
<scope>compile</scope>
128128
</dependency>
129129
</dependencies>
@@ -140,7 +140,7 @@
140140
<dependency>
141141
<groupId>ca.bc.gov.open.jag</groupId>
142142
<artifactId>efiling-bom</artifactId>
143-
<version>2.0.9-SNAPSHOT</version>
143+
<version>2.0.10</version>
144144
<type>pom</type>
145145
<scope>import</scope>
146146
</dependency>

src/backend/libs/efiling-commons/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<modelVersion>4.0.0</modelVersion>
55
<groupId>ca.bc.gov.open.jag</groupId>
66
<artifactId>efiling-commons</artifactId>
7-
<version>2.0.9-SNAPSHOT</version>
7+
<version>2.0.10</version>
88
<name>efiling-commons</name>
99
<description>Contains common functionality to efiling</description>
1010

@@ -71,7 +71,7 @@
7171
<dependency>
7272
<groupId>ca.bc.gov.open.jag</groupId>
7373
<artifactId>efiling-bom</artifactId>
74-
<version>2.0.9-SNAPSHOT</version>
74+
<version>2.0.10</version>
7575
<type>pom</type>
7676
<scope>import</scope>
7777
</dependency>

src/backend/libs/efiling-cso-client/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<modelVersion>4.0.0</modelVersion>
66
<groupId>ca.bc.gov.open.jag</groupId>
77
<artifactId>efiling-cso-client</artifactId>
8-
<version>2.0.9-SNAPSHOT</version>
8+
<version>2.0.10</version>
99

1010
<properties>
1111
<java.version>17</java.version>
@@ -59,7 +59,7 @@
5959
<dependency>
6060
<groupId>ca.bc.gov.open.jag</groupId>
6161
<artifactId>efiling-commons</artifactId>
62-
<version>2.0.9-SNAPSHOT</version>
62+
<version>2.0.10</version>
6363
</dependency>
6464

6565
<dependency>
@@ -90,7 +90,7 @@
9090
<dependency>
9191
<groupId>ca.bc.gov.open.jag</groupId>
9292
<artifactId>efiling-bom</artifactId>
93-
<version>2.0.9-SNAPSHOT</version>
93+
<version>2.0.10</version>
9494
<type>pom</type>
9595
<scope>import</scope>
9696
</dependency>

src/backend/libs/efiling-cso-starter/pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@
77
<parent>
88
<groupId>org.springframework.boot</groupId>
99
<artifactId>spring-boot-starter-parent</artifactId>
10-
<version>3.5.0</version>
10+
<version>3.5.4</version>
1111
<relativePath/>
1212
</parent>
1313

1414
<groupId>ca.bc.gov.open.jag</groupId>
1515
<artifactId>efiling-cso-starter</artifactId>
16-
<version>2.0.9-SNAPSHOT</version>
16+
<version>2.0.10</version>
1717

1818
<properties>
1919
<java.version>17</java.version>
@@ -79,13 +79,13 @@
7979
<dependency>
8080
<groupId>ca.bc.gov.open.jag</groupId>
8181
<artifactId>efiling-commons</artifactId>
82-
<version>2.0.9-SNAPSHOT</version>
82+
<version>2.0.10</version>
8383
</dependency>
8484

8585
<dependency>
8686
<groupId>ca.bc.gov.open.jag</groupId>
8787
<artifactId>efiling-cso-client</artifactId>
88-
<version>2.0.9-SNAPSHOT</version>
88+
<version>2.0.10</version>
8989
</dependency>
9090

9191
</dependencies>
@@ -95,7 +95,7 @@
9595
<dependency>
9696
<groupId>ca.bc.gov.open.jag</groupId>
9797
<artifactId>efiling-bom</artifactId>
98-
<version>2.0.9-SNAPSHOT</version>
98+
<version>2.0.10</version>
9999
<type>pom</type>
100100
<scope>import</scope>
101101
</dependency>

src/backend/libs/efiling-demo-starter/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>ca.bc.gov.open.jag</groupId>
88
<artifactId>efiling-demo-starter</artifactId>
9-
<version>2.0.9-SNAPSHOT</version>
9+
<version>2.0.10</version>
1010

1111
<properties>
1212
<java.version>17</java.version>
@@ -61,7 +61,7 @@
6161
<dependency>
6262
<groupId>ca.bc.gov.open.jag</groupId>
6363
<artifactId>efiling-commons</artifactId>
64-
<version>2.0.9-SNAPSHOT</version>
64+
<version>2.0.10</version>
6565
</dependency>
6666

6767
<dependency>
@@ -83,7 +83,7 @@
8383
<dependency>
8484
<groupId>ca.bc.gov.open.jag</groupId>
8585
<artifactId>efiling-bom</artifactId>
86-
<version>2.0.9-SNAPSHOT</version>
86+
<version>2.0.10</version>
8787
<type>pom</type>
8888
<scope>import</scope>
8989
</dependency>

0 commit comments

Comments
 (0)