From f985466f4c06ed49efc745afd7c67a413cfa787c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Van=C4=9Bk?= Date: Sun, 1 Mar 2026 14:11:49 +0100 Subject: [PATCH] #174 upgrade to embedded postgres binaries 14.22 --- README.md | 12 ++++++------ pom.xml | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 1a01c4d..502d560 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ Add the following Maven dependency: ``` -The default version of the embedded postgres is `PostgreSQL 14.21`, but you can change it by following the instructions described in [Postgres version](#postgres-version). +The default version of the embedded postgres is `PostgreSQL 14.22`, but you can change it by following the instructions described in [Postgres version](#postgres-version). ## Basic Usage @@ -73,7 +73,7 @@ independent databases gives you. ## Postgres version -The default version of the embedded postgres is `PostgreSQL 14.21`, but it can be changed by importing `embedded-postgres-binaries-bom` in a required version into your dependency management section. +The default version of the embedded postgres is `PostgreSQL 14.22`, but it can be changed by importing `embedded-postgres-binaries-bom` in a required version into your dependency management section. ```xml @@ -81,7 +81,7 @@ The default version of the embedded postgres is `PostgreSQL 14.21`, but it can b io.zonky.test.postgres embedded-postgres-binaries-bom - 18.2.0 + 18.3.0 pom import @@ -99,7 +99,7 @@ The default version of the embedded postgres is `PostgreSQL 14.21`, but it can b configurations.all { resolutionStrategy.eachDependency { DependencyResolveDetails details -> if (details.requested.group == 'io.zonky.test.postgres') { - details.useVersion '18.2.0' + details.useVersion '18.3.0' } } } @@ -107,7 +107,7 @@ The default version of the embedded postgres is `PostgreSQL 14.21`, but it can b 2. If you use Gradle 5+, [Maven BOMs are supported out of the box](https://docs.gradle.org/5.0/userguide/managing_transitive_dependencies.html#sec:bom_import), so you can import the bom: dependencies { - testImplementation enforcedPlatform('io.zonky.test.postgres:embedded-postgres-binaries-bom:18.2.0') + testImplementation enforcedPlatform('io.zonky.test.postgres:embedded-postgres-binaries-bom:18.3.0') } 3. Or, you can use [Spring's dependency management plugin](https://docs.spring.io/dependency-management-plugin/docs/current/reference/html/#dependency-management-configuration-bom-import) that provides Maven-like dependency management to Gradle: @@ -118,7 +118,7 @@ The default version of the embedded postgres is `PostgreSQL 14.21`, but it can b dependencyManagement { imports { - mavenBom 'io.zonky.test.postgres:embedded-postgres-binaries-bom:18.2.0' + mavenBom 'io.zonky.test.postgres:embedded-postgres-binaries-bom:18.3.0' } } diff --git a/pom.xml b/pom.xml index 2a06411..309d0d5 100644 --- a/pom.xml +++ b/pom.xml @@ -30,7 +30,7 @@ UTF-8 UTF-8 - 14.21.0 + 14.22.0 1.21.0 1.28.0 2.21.0