Skip to content

Commit eacfb92

Browse files
IOhackeradamsaghy
authored andcommitted
FINERACT-2181: Update non-major
1 parent 22282de commit eacfb92

File tree

9 files changed

+22
-24
lines changed

9 files changed

+22
-24
lines changed

.github/workflows/build-mariadb.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-24.04
88
services:
99
mariad:
10-
image: mariadb:11.5
10+
image: mariadb:11.5.2
1111
ports:
1212
- 3306:3306
1313
env:

.github/workflows/build-postgresql.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-24.04
88
services:
99
postgresql:
10-
image: postgres:17.2
10+
image: postgres:17.4
1111
ports:
1212
- 5432:5432
1313
env:

README.md

+4-6
Original file line numberDiff line numberDiff line change
@@ -26,15 +26,15 @@ If you are interested in contributing to this project, but perhaps don't quite k
2626
REQUIREMENTS
2727
============
2828
* `Java >= 17` (Azul Zulu JVM is tested by our CI on GitHub Actions)
29-
* MariaDB `11.4`
29+
* MariaDB `11.5.2`
3030

3131
You can run the required version of the database server in a container, instead of having to install it, like this:
3232

33-
docker run --name mariadb-11.4 -p 3306:3306 -e MARIADB_ROOT_PASSWORD=mysql -d mariadb:11.4
33+
docker run --name mariadb-11.5 -p 3306:3306 -e MARIADB_ROOT_PASSWORD=mysql -d mariadb:11.5.2
3434

3535
and stop and destroy it like this:
3636

37-
docker rm -f mariadb-11.4
37+
docker rm -f mariadb-11.5
3838

3939
<br>Beware that this database container database keeps its state inside the container and not on the host filesystem. It is lost when you destroy (rm) this container. This is typically fine for development. See [Caveats: Where to Store Data on the database container documentation](https://hub.docker.com/_/mariadb) re. how to make it persistent instead of ephemeral.<br>
4040

@@ -79,11 +79,9 @@ Run the following commands:
7979
============
8080
1. Clone the repository or download and extract the archive file to your local directory.
8181
2. Run `./gradlew clean bootJar` to build a modern cloud native fully self contained JAR file which will be created at `fineract-provider/build/libs` directory.
82-
3. As we are not allowed to include a JDBC driver in the built JAR, download a JDBC driver of your choice. For example: `wget https://downloads.mariadb.com/Connectors/java/connector-java-3.3.2/mariadb-java-client-3.3.2.jar`
82+
3. As we are not allowed to include a JDBC driver in the built JAR, download a JDBC driver of your choice. For example: `wget https://dlm.mariadb.com/4174416/Connectors/java/connector-java-3.5.2/mariadb-java-client-3.5.2.jar`
8383
4. Start the jar and pass the directory where you have downloaded the JDBC driver as loader.path, for example: `java -Dloader.path=. -jar fineract-provider/build/libs/fineract-provider.jar` (does not require external Tomcat)
8484

85-
NOTE: we cannot upgrade to version 3.0.x of the MariaDB driver just yet; have to wait until 3.0.4 is out for a bug fix.
86-
8785
The tenants database connection details are configured [via environment variables (as with Docker container)](#instructions-to-run-using-docker-and-docker-compose), e.g. like this:
8886

8987
export FINERACT_HIKARI_PASSWORD=verysecret

buildSrc/src/main/groovy/org.apache.fineract.dependencies.gradle

+5-5
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ dependencyManagement {
4444
// We do not use :+ to get the latest available version available on Maven Central, as that could suddenly break things.
4545
// We use the Renovate Bot to automatically propose Pull Requests (PRs) when upgrades for all of these versions are available.
4646

47-
dependency 'ch.qos.logback:logback-core:1.5.12'
48-
dependency 'ch.qos.logback:logback-classic:1.5.12'
47+
dependency 'ch.qos.logback:logback-core:1.5.17'
48+
dependency 'ch.qos.logback:logback-classic:1.5.17'
4949
dependency 'ch.qos.logback.contrib:logback-json-classic:0.1.5'
5050
dependency 'ch.qos.logback.contrib:logback-jackson:0.1.5'
5151
dependency 'org.codehaus.janino:janino:3.1.12'
@@ -169,7 +169,7 @@ dependencyManagement {
169169
exclude 'io.swagger.core.v3:swagger-core'
170170
}
171171

172-
dependency 'com.google.cloud.sql:mysql-socket-factory-connector-j-8:1.21.0'
172+
dependency 'com.google.cloud.sql:mysql-socket-factory-connector-j-8:1.23.1'
173173

174174
dependency ('org.apache.activemq:activemq-client:6.1.3') {
175175
exclude 'javax.annotation:javax.annotation-api'
@@ -227,12 +227,12 @@ dependencyManagement {
227227

228228
dependency "org.apache.avro:avro:1.12.0"
229229

230-
dependency ('org.mariadb.jdbc:mariadb-java-client:3.5.0') {
230+
dependency ('org.mariadb.jdbc:mariadb-java-client:3.5.2') {
231231
exclude 'org.slf4j:jcl-over-slf4j'
232232
exclude 'org.slf4j:slf4j-api'
233233
}
234234

235-
dependency 'org.postgresql:postgresql:42.7.4'
235+
dependency 'org.postgresql:postgresql:42.7.5'
236236

237237
dependency 'org.assertj:assertj-core:3.26.3'
238238

fineract-e2e-tests-core/build.gradle

+4-4
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ dependencies {
7676
testImplementation 'io.cucumber:cucumber-junit:7.20.1'
7777
testImplementation 'io.cucumber:cucumber-spring:7.20.1'
7878

79-
testImplementation 'io.qameta.allure:allure-cucumber7-jvm:2.29.0'
79+
testImplementation 'io.qameta.allure:allure-cucumber7-jvm:2.29.1'
8080

8181
testImplementation 'org.assertj:assertj-core:3.26.3'
8282
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.11.3'
@@ -85,10 +85,10 @@ dependencies {
8585
testCompileOnly 'org.projectlombok:lombok:1.18.36'
8686
testAnnotationProcessor 'org.projectlombok:lombok:1.18.36'
8787

88-
testImplementation "ch.qos.logback:logback-core:1.5.12"
89-
testImplementation "ch.qos.logback:logback-classic:1.5.12"
88+
testImplementation "ch.qos.logback:logback-core:1.5.17"
89+
testImplementation "ch.qos.logback:logback-classic:1.5.17"
9090

91-
testImplementation 'org.apache.activemq:activemq-client:6.1.4'
91+
testImplementation 'org.apache.activemq:activemq-client:6.1.6'
9292
testImplementation "org.apache.avro:avro:1.12.0"
9393
testImplementation "org.awaitility:awaitility:4.2.2"
9494
testImplementation 'io.github.classgraph:classgraph:4.8.179'

fineract-e2e-tests-runner/build.gradle

+4-4
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ dependencies {
4848
testImplementation 'io.cucumber:cucumber-junit:7.20.1'
4949
testImplementation 'io.cucumber:cucumber-spring:7.20.1'
5050

51-
testImplementation 'io.qameta.allure:allure-cucumber7-jvm:2.29.0'
51+
testImplementation 'io.qameta.allure:allure-cucumber7-jvm:2.29.1'
5252

5353
testImplementation 'org.assertj:assertj-core:3.26.3'
5454
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.11.3'
@@ -57,10 +57,10 @@ dependencies {
5757
testCompileOnly 'org.projectlombok:lombok:1.18.36'
5858
testAnnotationProcessor 'org.projectlombok:lombok:1.18.36'
5959

60-
testImplementation "ch.qos.logback:logback-core:1.5.12"
61-
testImplementation "ch.qos.logback:logback-classic:1.5.12"
60+
testImplementation "ch.qos.logback:logback-core:1.5.17"
61+
testImplementation "ch.qos.logback:logback-classic:1.5.17"
6262

63-
testImplementation 'org.apache.activemq:activemq-client:6.1.4'
63+
testImplementation 'org.apache.activemq:activemq-client:6.1.6'
6464
testImplementation "org.apache.avro:avro:1.12.0"
6565
testImplementation "org.awaitility:awaitility:4.2.2"
6666
testImplementation 'io.github.classgraph:classgraph:4.8.179'

integration-tests/dependencies.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ dependencies {
2020
// testCompile dependencies are ONLY used in src/test, not src/main.
2121
// Do NOT repeat dependencies which are ALREADY in implementation or runtimeOnly!
2222
//
23-
tomcat 'org.apache.tomcat:tomcat:10.1.33@zip'
23+
tomcat 'org.apache.tomcat:tomcat:10.1.39@zip'
2424
testImplementation( files("$rootDir/fineract-provider/build/classes/java/main/"),
2525
project(path: ':fineract-core', configuration: 'runtimeElements'),
2626
project(path: ':fineract-accounting', configuration: 'runtimeElements'),

oauth2-tests/dependencies.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ dependencies {
2020
// testCompile dependencies are ONLY used in src/test, not src/main.
2121
// Do NOT repeat dependencies which are ALREADY in implementation or runtimeOnly!
2222
//
23-
tomcat 'org.apache.tomcat:tomcat:10.1.33@zip'
23+
tomcat 'org.apache.tomcat:tomcat:10.1.39@zip'
2424
testImplementation( files("$rootDir/fineract-provider/build/classes/java/main/"),
2525
project(path: ':fineract-provider', configuration: 'runtimeElements'),
2626
'org.junit.jupiter:junit-jupiter-api',

twofactor-tests/dependencies.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ dependencies {
2020
// testCompile dependencies are ONLY used in src/test, not src/main.
2121
// Do NOT repeat dependencies which are ALREADY in implementation or runtimeOnly!
2222
//
23-
tomcat 'org.apache.tomcat:tomcat:10.1.33@zip'
23+
tomcat 'org.apache.tomcat:tomcat:10.1.39@zip'
2424
testImplementation( files("$rootDir/fineract-provider/build/classes/java/main/"),
2525
project(path: ':fineract-provider', configuration: 'runtimeElements'),
2626
'org.junit.jupiter:junit-jupiter-api',

0 commit comments

Comments
 (0)