Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ plugins {
id 'java-library'
}

version = "9.4.0"
version = "9.4.1"

repositories {
mavenCentral()
Expand Down Expand Up @@ -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'
Expand Down
3 changes: 1 addition & 2 deletions startDb.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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' \
Expand Down
Loading