You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+9-9Lines changed: 9 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -34,7 +34,7 @@ Add the following Maven dependency:
34
34
</dependency>
35
35
```
36
36
37
-
The default version of the embedded database is `PostgreSQL 10.10`, but you can change it by following the instructions described in [Changing the version of postgres binaries](#changing-the-version-of-postgres-binaries).
37
+
The default version of the embedded database is `PostgreSQL 10.11`, but you can change it by following the instructions described in [Changing the version of postgres binaries](#changing-the-version-of-postgres-binaries).
38
38
39
39
### Basic Usage
40
40
@@ -272,7 +272,7 @@ The version of the binaries can be managed by importing `embedded-postgres-binar
if (details.requested.group == 'io.zonky.test.postgres') {
293
-
details.useVersion '11.5.0'
293
+
details.useVersion '11.6.0'
294
294
}
295
295
}
296
296
}
297
297
298
298
2. If you use Gradle 5+, [Maven BOMs are supported out of the box](https://docs.gradle.org/current/userguide/managing_transitive_dependencies.html#sec:bom_import), so you can import the bom:
3. Or, you can use [Spring's dependency management plugin](https://docs.spring.io/dependency-management-plugin/docs/current-SNAPSHOT/reference/html5/#dependency-management-configuration-bom-import) that provides Maven-like dependency management to Gradle:
@@ -309,7 +309,7 @@ The version of the binaries can be managed by importing `embedded-postgres-binar
zonky.test.database.postgres.docker.tmpfs.enabled=false # Whether to mount postgres data directory as tmpfs.
402
402
zonky.test.database.postgres.docker.tmpfs.options=rw,noexec,nosuid # Mount options used to configure the tmpfs filesystem.
403
403
```
@@ -504,7 +504,7 @@ public class YandexProviderIntegrationTest {
504
504
The provider configuration can be controlled by properties in the `zonky.test.database.postgres.yandex-provider` group.
505
505
506
506
```properties
507
-
zonky.test.database.postgres.yandex-provider.postgres-version=10.10-1 # Version of EnterpriseDB PostgreSQL binaries (https://www.enterprisedb.com/download-postgresql-binaries).
507
+
zonky.test.database.postgres.yandex-provider.postgres-version=10.11-1 # Version of EnterpriseDB PostgreSQL binaries (https://www.enterprisedb.com/download-postgresql-binaries).
508
508
```
509
509
510
510
### Database Prefetching
@@ -667,8 +667,8 @@ extracted from the JDK download.
Copy file name to clipboardExpand all lines: embedded-database-spring-test/src/main/java/io/zonky/test/db/provider/impl/DockerPostgresDatabaseProvider.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -71,7 +71,7 @@ public DatabaseInstance load(DatabaseConfig config) {
Copy file name to clipboardExpand all lines: embedded-database-spring-test/src/main/java/io/zonky/test/db/provider/impl/YandexPostgresDatabaseProvider.java
0 commit comments