diff --git a/CHANGELOG.md b/CHANGELOG.md index 5b6f89cc..463e9401 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] +## [9.4.1] + +- Updates dependencies for testing + ## [9.4.0] - Adds support for bulk query APIs for usermetadata and TOTP diff --git a/build.gradle b/build.gradle index 7c4ea849..f1cc9f0a 100644 --- a/build.gradle +++ b/build.gradle @@ -2,7 +2,7 @@ plugins { id 'java-library' } -version = "9.4.0" +version = "9.4.1" repositories { mavenCentral() @@ -50,7 +50,7 @@ dependencies { // https://mvnrepository.com/artifact/com.google.code.gson/gson testImplementation group: 'com.google.code.gson', name: 'gson', version: '2.3.1' - testImplementation 'com.tngtech.archunit:archunit-junit4:0.22.0' + testImplementation 'com.tngtech.archunit:archunit-junit4:1.4.1' // https://mvnrepository.com/artifact/com.fasterxml.jackson.dataformat/jackson-dataformat-yaml testImplementation group: 'com.fasterxml.jackson.dataformat', name: 'jackson-dataformat-yaml', version: '2.18.2' diff --git a/startDb.sh b/startDb.sh index 41f38f11..2ee24dac 100755 --- a/startDb.sh +++ b/startDb.sh @@ -2,8 +2,7 @@ docker run --rm --name postgres \ -e 'POSTGRES_USER=root' \ -e 'POSTGRES_PASSWORD=root' \ -d -p 5432:5432 \ - -v ~/Desktop/db/pstgres:/var/lib/postgresql/18/docker \ - postgres \ + postgres:18 \ -c 'max_connections=1000' \ -c 'autovacuum_naptime=1' \ -c 'autovacuum_vacuum_threshold=10' \