Skip to content

Releases: folio-org/folio-vertx-lib

v3.3.0

29 Oct 21:45
Compare
Choose a tag to compare

Release for Ramsons.

  • VERTXLIB-56 Upgrade dependencies for Ramsons: Vert.x 4.5.10, Postgres 16, etc.
  • VERTXLIB-57 Support DB_RECONNECTATTEMPTS, DB_RECONNECTINTERVAL env vars

v3.2.0

24 Feb 13:39
Compare
Choose a tag to compare

Release for Quesnelia with dependency upgrades:

  • VERTXLIB-52 Implement TESTCONTAINERS_POSTGRES_IMAGE
  • VERTXLIB-54 Upgrade dependencies for Quesnelia: Vert.x 4.5.3, log4j 2.23.0, commons-compress 1.26.0, etc.

v3.1.3

16 Nov 09:44
Compare
Choose a tag to compare

Bug fix:

v3.1.2

13 Oct 18:21
Compare
Choose a tag to compare

Bug fix:

  • VERTXLIB-49 Disable dependency reduced pom, disable mod-example javadoc

v3.1.1

09 Oct 09:13
Compare
Choose a tag to compare

Release for Poppy with dependency upgrades:

v3.1.0

26 Apr 12:56
Compare
Choose a tag to compare

VERTXLIB-43 Add timestamp field class for date-only and date-time fields w/o offset.
VERTXLIB-37 Structured logging using FolioLoggingContext

v3.0.0

27 Jan 14:08
Compare
Choose a tag to compare

Changes to the PgCql API. Introduce PgCqlDefinition interface with
functionality previously part of PgCqlQuery.
Example of old and new code:

// Version 2
PgCqlQuery pgCqlQuery = PgCqlQuery.query();
pgCqlQuery.addField(new PgCqlField("cql.allRecords", PgCqlField.Type.ALWAYS_MATCHES));
pgCqlQuery.addField(new PgCqlField("id", PgCqlField.Type.UUID));
pgCqlQuery.addField(new PgCqlField("key", PgCqlField.Type.TEXT));
pgCqlQuery.addField(new PgCqlField("title", PgCqlField.Type.FULLTEXT));
pgCqlQuery.parse(query);
// Version 3
PgCqlDefinition pgCqlDefinition = PgCqlDefinition.create();
pgCqlDefinition.addField("cql.allRecords", new PgCqlFieldAlwaysMatches());
pgCqlDefinition.addField("id", new PgCqlFieldUuid());
pgCqlDefinition.addField("key", new PgCqlFieldText().withExact());
pgCqlDefinition.addField("title", new PgCqlFieldText().withFullText());
PgCqlQuery pgCqlQuery = pgCqlDefinition.parse(query);

v2.0.1

16 Aug 16:19
Compare
Choose a tag to compare

v2.0.0

15 Jun 10:43
Compare
Choose a tag to compare
  • VERTXLIB-22 Remove schema substitution in
    TenantPgPool.{query, preparedQuery,execute}. In version 1 '{schema}' in queries was substitued with schema (for Tenant).
  • VERTXLIB-21 Upgrade to Vert.x 4.3.1, okapi 4.14.1

v1.1.0

06 May 14:46
Compare
Choose a tag to compare

New features:

  • VERTXLIB-18 Enable SCRAM-SHA-256 PostgreSQL passwords

Fixes:

  • VERTXLIB-17 Upgrade Vert.x to 4.2.7, Log4j 2.17.2 Okapi 4.13.2