Skip to content
This repository has been archived by the owner on Nov 15, 2024. It is now read-only.

Releases: http4k/http4k-connect

2.14.0.0

30 Jan 12:40
Compare
Choose a tag to compare

Changelog:

  • http4k-connect-* : [Breaking] Changed Result type on Action to be generic to support other programming models. This will only affect users who are implementing their own adapters. To fix, change:
interface MyAdapter<R> : Action<R>
// to 
interface MyAdapter<R> : Action<Result<R, RemoteFailure>>

2.13.0.0

20 Jan 19:57
Compare
Choose a tag to compare

Changelog:

  • http4k-connect-* : Rejig of dependencies to be consistent.

2.12.0.0

20 Jan 19:00
Compare
Choose a tag to compare

Changelog:

  • http4k-connect-storage-core : New module, containing storage abstractions which can be used without the fakes.

2.11.0.0

18 Jan 22:48
Compare
Choose a tag to compare

Changelog:

  • http4k-connect-amazon-sns : New module.
  • *http4k-connect-amazon-sns-fake : New module.
  • http4k-connect- : Make all action classes Data classes so they are test friendly
  • http4k-connect-amazon-sqs : [Breaking] Tags is now a List<Tag> instead of a Map<String, String>.

2.10.0.0

16 Jan 16:27
Compare
Choose a tag to compare

Changelog:

  • http4k-connect-amazon- : Add convenience functions to create clients from the system environment.
  • http4k-connect-amazon- : Removed unused Payload type for various clients.
  • http4k-connect-* : Upgrade values4k and http4k

2.9.1.0

14 Jan 19:58
Compare
Choose a tag to compare

Changelog:

  • http4k-connect-amazon- : Expose Moshi to client API users for JSON-based systems

2.9.0.0

14 Jan 17:33
Compare
Choose a tag to compare

Changelog:

  • http4k-connect-amazon-sqs : Fixed SQS MessageAttributes as API is not as advertised...
  • http4k-connect-amazon-fake : Extracting out endpoints for easier extension.

2.8.0.0

09 Jan 15:49
Compare
Choose a tag to compare

Changelog:

  • http4k-connect-* : Upgrade to http4k 4.X.X.X.

2.7.1.0

08 Jan 21:24
Compare
Choose a tag to compare

Changelog:

  • http4k-connect-amazon-systemsmanager : Refined model.
  • http4k-connect-amazon-* : Fixed handling of ARNs.

2.7.0.0

08 Jan 20:17
Compare
Choose a tag to compare

Changelog:

  • http4k-connect-amazon-* : Refined ARN model.
  • http4k-connect-amazon-s3 : Fix Delete Bucket action.