All Versions
583
Latest Version
Avg Release Cycle
5 days
Latest Release
-

Changelog History
Page 4

  • v4.27.3.0 Changes

    • http4k-contract : OpenApi3 Operation Ids now replace '-' with '_', as '-' interfere with generation of OpenAPI clients.
  • v4.27.2.0 Changes

    • http4k-* : Upgrade some dependency versions.
    • http4k-graphql : Add GraphQL explorer for http4k-graphql. H/T @arnabkd
    • http4k-realtime-core : Add helper for test Websocket. H/T @oharaandrew314
    • http4k-resilience4j* : Fix #745: ResilienceFilters.CircuitBreak counts an error twice: once as successful, once as error.
  • v4.27.1.1 Changes

    • http4k-* : Upgrade some dependency versions.
    • http4k-resilience4j* : Fix #745: ResilienceFilters.CircuitBreak counts an error twice: once as successful, once as error.
  • v4.27.1.0 Changes

    • http4k-* : Upgrade some dependency versions.
    • http4k-core : Added support for Web Linking header standard
    • http4k-multipart: Fix multipart upload failure if charset is included in content type. H/T @wickwirew
    • http4k-server-jetty: Remove usage of deprecated status description API. H/T @@makowalski + @mandyvuong
  • v4.27.0.0 Changes

    • http4k-* : Upgrade some dependency versions, including Kotlin to 1.7.0
  • v4.26.0.0 Changes

    • http4k-* : Upgrade some dependency versions.
    • http4k-core : [Unlikely break] Remove dependency on kotlin stdlib JDK 8 as we don't need it to compile. If this causes a problem, simply re-add api(Kotlin.stdlib.jdk8) to your project dependency list.
    • http4k-* : Fix #744 - Provided dependencies included as runtime in http4k versions > 4.19.1.0.
  • v4.25.16.2 Changes

    • http4k-core : Fix query parameter parsing when value contained =. H/T @overfullstack
    • ๐Ÿ”’ http4k-security-digest : Fix digest challenge parsing when nonce contained =. H/T @oharaandrew314
  • v4.25.16.1 Changes

    • http4k-contract : [Revert fix] - File field is described as "string" instead of "file" in OA3 specification.
  • v4.25.16.0 Changes

    • http4k-* : Upgrade some dependency versions.
    • http4k-core : Deprecate eTag filter in favour of ETagSupport.
    • http4k-contract : [Fix] - File field is described as "string" instead of "file" in OA3 specification.
  • v4.25.15.0 Changes

    • http4k-* : Upgrade some dependency versions.
    • http4k-core : Fix #738 - Calculating eTag ate body.
    • http4k-core : Caching filters now replace headers instead of adding them.
    • http4k-server-jetty : Change constructor to use supported shutdown mode. H/T @jshiell