Skip to content

Releases: http4k/http4k

5.25.0.0

07 Jul 12:00
Compare
Choose a tag to compare

Changelog:

  • http4k-* : Upgrade some dependency versions.
  • http4k-serverless-lambda* : [Breaking Fix] Incorrect lambda request context variable is passed - we now pass the incoming reqeust object instead of the converted http4k request. If you were using the LAMBDA_REQUEST_KEY, you can just use the request passed into the handler instead.

5.24.1.0

04 Jul 17:00
Compare
Choose a tag to compare

Changelog:

  • http4k-* : Upgrade some dependency versions.
  • http4k-serverless-lambda* : [Fix] AWS adapter throws on invalid URLs.
  • http4k-testing-webdriver : [Fix] Base path replacement logic for same-dir-path and dot-path URLs. H/T jweidler

5.24.0.0

25 Jun 22:00
Compare
Choose a tag to compare

Changelog:

5.23.0.0

09 Jun 20:43
Compare
Choose a tag to compare

Changelog:

  • http4k-* : Upgrade some dependency versions.
  • http4k-contract : [Approval test break] Addition of "nullable" field to every model property. This improves JSON output compatability with various tooling for generating types from the definitions.

5.22.0.0

05 Jun 12:51
Compare
Choose a tag to compare

Changelog:

5.21.2.0

04 Jun 22:51
Compare
Choose a tag to compare

Changelog:

  • http4k-* : Upgrade some dependency versions.
  • http4k-format-dataframe : [New module] Support for KotlinX DataFrame.

5.21.1.0

30 May 11:00
Compare
Choose a tag to compare

Changelog:

  • http4k-* : Upgrade some dependency versions.
  • http4k-multipart* : [Fix #1113] Disk-backed multipart form field data is now cleaned up when the body is closed, including the parent form directory.

5.21.0.0

23 May 16:01
Compare
Choose a tag to compare

Changelog:

  • http4k-* : Upgrade some dependency versions including Kotlin to v2
  • http4k-testing-chaos : [Breaking] Changed Trigger to be a fun interface instead of a typealias. Should be no-op or a simple fix to the type.
  • http4k-core : [Possible Break] Renamed CachingFilters.Request/Responseto CachingFilters.CacheRequest/CacheResponse. If you have imports then they may break and need to be updated.

5.20.0.0

14 May 10:47
Compare
Choose a tag to compare

Changelog:

  • http4k-* : Upgrade some dependency versions.
  • http4k-testing-chaos* : [Unlikely break]: remove Hamkrest dependency so that it does not appear randomly in your projects. If you were accidentally relying on this it will need to be re-added manually.

5.19.0.0

10 May 13:01
Compare
Choose a tag to compare

Changelog:

  • http4k-* : Upgrade some dependency versions, including Kotlin to 1.9.24
  • http4k-core : Add support for the timesource typealias () -> Instant where a Clock is used. H/T @kwydler