| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| 6.57.0.0 source code.tar.gz | 2026-08-04 | 16.3 MB | |
| 6.57.0.0 source code.zip | 2026-08-04 | 19.9 MB | |
| README.md | 2026-08-04 | 1.8 kB | |
| Totals: 3 Items | 36.2 MB | 0 | |
Changelog:
- http4k-*: Upgrade versions
- http4k-server-undertow*: [Unlikely break] SSE now falls back to HTTP handler if the request is not handled.
- http4k-connect-amazon-dynamodb: [Unlikely Break]
DynamoDbContract.table(testFixtures) is now an abstract property supplied by the implementing test, instead of aget()which recomputedTableName.sample(suffix = uuid(0))on every access: against an implementation whoseuuid()is random (RealAwsContract),create()made one table and the test bodies then addressed a different, non-existent one.LocalDynamoTesthad already had to override it to work around this; implementations that relied on the default now supply a fixed name. - http4k-connect-amazon-iotdataplane: [New module!] AWS IoT Core Data Plane client supporting Publish, GetThingShadow, UpdateThingShadow, DeleteThingShadow, ListNamedShadowsForThing, GetRetainedMessage, ListRetainedMessages and DeleteConnection.
- http4k-connect-amazon-iotdataplane-fake: [New module!] AWS IoT Core Data Plane fake which records published messages for test assertions, stores Thing Shadows, and serves the retained messages that its retained publishes create.
- http4k-api-jsonschema*: Ability to chain schema model namer. H/T @potfur
- http4k-connect-amazon-dynamodb: Added
DescribeTimeToLiveandUpdateTimeToLiveactions (withTimeToLiveStatus/TimeToLiveDescription/TimeToLiveSpecificationmodels), so callers can read and set a table's TTL configuration. The fake supports both. - http4k-connect-amazon-cognito: Support for the
USER_AUTHchoice-based sign-in flow:AuthFlowgainsUSER_AUTH,ExplicitAuthFlowgainsALLOW_USER_AUTH, andAuthInitiatedgains theAvailableChallengeslist Cognito returns when the user can choose a sign-in method.