Skip to content

Releases: folio-org/edge-common

v4.4.1

17 Aug 12:31
Compare
Choose a tag to compare
  • EDGCOMMON-54 Vert.x 4.3.3 fixing disabled SSL in 4.3.0/4.3.1

v4.4.0

04 Aug 11:59
Compare
Choose a tag to compare
  • EDGCOMMON-51 Futurize MockOkapi for Junit 5 and .compose
  • EDGCOMMON-52 Enable "Accept-Encoding: deflate, gzip" by default
  • EDGCOMMON-53 Deprecate X-Duration, provide setDelay, fix timeout reporting

Upgrading notes:

Edge module must no longer copy HTTP headers from the incoming request to the outgoing
request. Remove deny list code like ctx.request().headers().remove(CONTENT_LENGTH). For security
use an allow list to copy only the HTTP headers that really are needed, if any. Support for this has
been added to edge-common's Handler and MockOkapi classes.

Replace

mockOkapi.start(testContext)

with

mockOkapi.start()
.onComplete(testContext.asyncAssertSuccess());

and

mockOkapi.close(testContext);

with

mockOkapi.close()
.onComplete(context.asyncAssertSuccess());

v4.3.0

02 Jun 16:56
Compare
Choose a tag to compare

v4.2.3

17 Feb 19:26
Compare
Choose a tag to compare
  • EDGCOMMON-43 Update dependencies including Vert.x 4.2.4, Log4j 2.17.1
  • EDGCOMMON-42 Use cryptographically strong random for token and salt

v4.2.2

21 Dec 20:29
Compare
Choose a tag to compare

v4.2.1

14 Dec 16:15
Compare
Choose a tag to compare

v4.2.0

13 Jul 11:10
Compare
Choose a tag to compare
  • Defines request timeout when making HTTP requests (EDGCOMMON-36)

v4.1.0

02 Jun 14:31
Compare
Choose a tag to compare

No changes to the API since last release.

v4.0.0

26 Feb 15:46
Compare
Choose a tag to compare

This releases changes the API for edge-common. There are no known changes
to the HTTP behavior or the configuration of edge-common.

The existing HTTP-based verticle has been renamed to EdgeVerticleHttp.
A new verticle without a built-in listener is offered, EdgeVerticleCore.

Since edge-common is now based on Vert.x 4.0.0, that will probably
also require updates to module code. Refer to
4.0.0 Deprecations and breaking changes

Issues pertaining to this release (some of which are related):

v3.1.0

26 Jan 18:55
Compare
Choose a tag to compare

There are no known breaking changes in this release, but modules should also
upgrade to Java 11 and Log4j2 while using this release.