Skip to content

Commit

Permalink
upgrade dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
daviddenton committed Jul 24, 2023
1 parent bb7a4a6 commit f07cf34
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 13 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,13 @@ This list is not intended to be all-encompassing - it will document major and br
changes with their rationale when appropriate. Given version `A.B.C.D`, breaking changes are to be expected in version number increments where changes in the `A` or `B` sections:

### v5.1.4.0 (uncut)
- **http4k-connect-*** - Upgrade dependencies.
- **http4k-connect-amazon-sqs** - Add `DeleteMessageBatch` action. H/T @oharaandrew314
- **http4k-connect-amazon-containercredentials** - Add container credentials chain @oharaandrew314
- **http4k-connect-amazon-cognito** - Moshi config was incorrect for successful user password auth response H/T @time4tea

### v5.1.3.0
- **http4k-connect-*** - Upgrade dependencies, including Kotlin to 1.9.0.
- **http4k-connect-amazon-dynamodb** - Add scanPage and queryPage operations to DynamoDb table mapper. Pagination can now be controlled by the caller. H/T @oharaandrew314
- **http4k-connect-amazon-dynamodb-fake** - putItem now supports a `ConditionExpression`.
- **http4k-connect-amazon-dynamodb-fake** - [Fix] query and scan will now return the correct LastEvaluatedKey based on the current index. H/T @oharaandrew314
Expand Down
2 changes: 1 addition & 1 deletion core/fake/src/test/kotlin/org/http4k/connect/utils.kt
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ fun <T, E> Result<T, E>.successValue(): T = when (this) {

fun assumeDockerDaemonRunning() {
assumeTrue(
getRuntime().exec("docker ps").errorStream.bufferedReader().readText().isEmpty(),
getRuntime().exec(arrayOf("docker", "ps")).errorStream.bufferedReader().readText().isEmpty(),
"Docker is not running"
)
}
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ import org.http4k.connect.kafka.rest.model.PartitionId
/**
* Always selects no partition as a strategy
*/
fun <K : Any?, V : Any?> NoOpPartitioner(partitions: List<PartitionId>) = Partitioner { _: K, _: V ->
fun <K : Any?, V : Any?> NoOpPartitioner(@Suppress("UNUSED_PARAMETER") partitions: List<PartitionId>) = Partitioner { _: K, _: V ->
null
}
22 changes: 11 additions & 11 deletions versions.properties
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@

plugin.com.github.kt3k.coveralls=2.12.2

plugin.com.google.devtools.ksp=1.9.0-1.0.11
plugin.com.google.devtools.ksp=1.9.0-1.0.12

plugin.de.fayard.buildSrcLibs=0.51.0

plugin.com.github.davidmc24.gradle.plugin.avro=1.7.1
plugin.com.github.davidmc24.gradle.plugin.avro=1.8.0

version.com.google.devtools.ksp..symbol-processing-api=1.9.0-1.0.11
version.com.google.devtools.ksp..symbol-processing-api=1.9.0-1.0.12

version.com.amazonaws..aws-lambda-java-events=3.11.2

Expand All @@ -31,17 +31,17 @@ version.dev.forkhandles..forkhandles-bom=2.6.0.0

version.dev.forkhandles..result4k=2.6.0.0

version.http4k=5.2.1.0
version.http4k=5.4.0.0

version.io.lettuce..lettuce-core=6.2.4.RELEASE
version.io.lettuce..lettuce-core=6.2.5.RELEASE

version.jetbrains.exposed=0.41.1

version.org.apache.avro..avro=1.11.2

version.junit=5.9.3
version.junit=5.10.0

version.junit.jupiter=5.9.3
version.junit.jupiter=5.10.0

version.kotlin=1.9.0

Expand All @@ -57,12 +57,12 @@ version.mockk=1.13.5

version.org.testcontainers..testcontainers-bom=1.18.3

version.org.webjars..swagger-ui=5.1.0
version.org.webjars..swagger-ui=5.1.3

version.se.ansman.kotshi..api=2.11.4
version.se.ansman.kotshi..api=2.13.0

version.se.ansman.kotshi..compiler=2.11.4
version.se.ansman.kotshi..compiler=2.13.0

version.software.amazon.awssdk..bom=2.20.100
version.software.amazon.awssdk..bom=2.20.109

version.com.nimbusds..nimbus-jose-jwt=9.31

0 comments on commit f07cf34

Please sign in to comment.