Skip to content

Commit a13c187

Browse files
authored
misc: upgrade dependencies (#1163)
1 parent 15cde2a commit a13c187

File tree

12 files changed

+28
-29
lines changed

12 files changed

+28
-29
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"id": "abdc974c-e5e5-4523-9af0-26653b6c6bdf",
3+
"type": "misc",
4+
"description": "Upgrade to Kotlin 2.0.21"
5+
}

codegen/smithy-kotlin-codegen-testutils/build.gradle.kts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ group = "software.amazon.smithy.kotlin"
2121
version = codegenVersion
2222

2323
dependencies {
24-
implementation(kotlin("stdlib-jdk8"))
2524
implementation(libs.smithy.aws.traits)
2625
implementation(libs.smithy.protocol.traits)
2726
api(project(":codegen:smithy-kotlin-codegen"))

codegen/smithy-kotlin-codegen/build.gradle.kts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ val sdkVersion: String by project
2424
val runtimeVersion = sdkVersion
2525

2626
dependencies {
27-
implementation(kotlin("stdlib-jdk8"))
2827
api(libs.smithy.codegen.core)
2928
api(libs.smithy.waiters)
3029
implementation(libs.smithy.rules.engine)

gradle/libs.versions.toml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,35 @@
11
[versions]
2-
kotlin-version = "2.0.10"
2+
kotlin-version = "2.0.21"
33
dokka-version = "1.9.10"
44

5-
aws-kotlin-repo-tools-version = "0.4.10"
5+
aws-kotlin-repo-tools-version = "0.4.13"
66

77
# libs
88
coroutines-version = "1.9.0"
9-
atomicfu-version = "0.24.0"
9+
atomicfu-version = "0.25.0"
1010
okhttp-version = "5.0.0-alpha.14"
1111
okhttp4-version = "4.12.0"
12-
okio-version = "3.9.0"
13-
otel-version = "1.32.0"
14-
slf4j-version = "2.0.9"
12+
okio-version = "3.9.1"
13+
otel-version = "1.43.0"
14+
slf4j-version = "2.0.16"
1515
slf4j-v1x-version = "1.7.36"
16-
crt-kotlin-version = "0.8.9"
17-
micrometer-version = "1.13.2"
16+
crt-kotlin-version = "0.8.10"
17+
micrometer-version = "1.13.6"
1818

1919
# codegen
2020
smithy-version = "1.51.0"
2121
smithy-gradle-version = "0.9.0"
2222

2323
# testing
24-
junit-version = "5.10.1"
25-
kotest-version = "5.8.0"
24+
junit-version = "5.10.5"
25+
kotest-version = "5.9.1"
2626
kotlin-compile-testing-version = "1.6.0"
27-
kotlinx-benchmark-version = "0.4.9"
28-
kotlinx-serialization-version = "1.6.0"
29-
docker-java-version = "3.3.6"
27+
kotlinx-benchmark-version = "0.4.12"
28+
kotlinx-serialization-version = "1.7.3"
29+
docker-java-version = "3.4.0"
3030
ktor-version = "2.3.12"
3131
kaml-version = "0.55.0"
32-
jsoup-version = "1.16.2"
32+
jsoup-version = "1.18.1"
3333

3434
[libraries]
3535
aws-kotlin-repo-tools-build-support = { module="aws.sdk.kotlin.gradle:build-support", version.ref = "aws-kotlin-repo-tools-version" }

runtime/auth/aws-credentials/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ description = "Types for AWS credentials"
77
extra["displayName"] = "Smithy :: Kotlin :: AWS Credentials"
88
extra["moduleName"] = "aws.smithy.kotlin.runtime.auth.awscredentials"
99

10-
apply(plugin = "kotlinx-atomicfu")
10+
apply(plugin = "org.jetbrains.kotlinx.atomicfu")
1111

1212
kotlin {
1313
sourceSets {

runtime/crt-util/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* SPDX-License-Identifier: Apache-2.0
44
*/
55

6-
apply(plugin = "kotlinx-atomicfu")
6+
apply(plugin = "org.jetbrains.kotlinx.atomicfu")
77

88
description = "Utilities for working with AWS CRT Kotlin"
99
extra["displayName"] = "Smithy :: Kotlin :: CRT :: Util"

runtime/observability/telemetry-defaults/build.gradle.kts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,7 @@ description = "Default telemetry provider"
77
extra["displayName"] = "Smithy :: Kotlin :: Observability :: Telemetry Defaults"
88
extra["moduleName"] = "aws.smithy.kotlin.runtime.telemetry"
99

10-
val coroutinesVersion: String by project
11-
val slf4jVersion: String by project
12-
val atomicFuVersion: String by project
13-
apply(plugin = "kotlinx-atomicfu")
10+
apply(plugin = "org.jetbrains.kotlinx.atomicfu")
1411

1512
kotlin {
1613
sourceSets {

runtime/protocol/aws-protocol-core/build.gradle.kts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,7 @@ description = "Common AWS protocol support"
77
extra["displayName"] = "AWS :: Smithy :: Kotlin :: AWS Protocols"
88
extra["moduleName"] = "aws.smithy.kotlin.runtime.awsprotocol"
99

10-
val coroutinesVersion: String by project
11-
12-
apply(plugin = "kotlinx-atomicfu")
10+
apply(plugin = "org.jetbrains.kotlinx.atomicfu")
1311

1412
kotlin {
1513
sourceSets {

runtime/protocol/http-client-engines/http-client-engine-crt/build.gradle.kts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,13 @@
22
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
33
* SPDX-License-Identifier: Apache-2.0
44
*/
5-
apply(plugin = "kotlinx-atomicfu")
65

76
description = "HTTP client engine backed by CRT"
87
extra["displayName"] = "AWS :: SDK :: Kotlin :: HTTP"
98
extra["moduleName"] = "aws.smithy.kotlin.runtime.http.engine.crt"
109

10+
apply(plugin = "org.jetbrains.kotlinx.atomicfu")
11+
1112
kotlin {
1213
sourceSets {
1314
jvmMain {

runtime/protocol/http-client-engines/test-suite/jvm/src/aws/smithy/kotlin/runtime/http/test/util/Certificates.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ private const val DEFAULT_CERTIFICATE_PASSWORD = "certificate pass"
1515
private val DEFAULT_HOSTS = listOf("localhost", "127.0.0.1")
1616
private const val DEFAULT_KEY_STORE_PASSWORD = "key store pass"
1717

18-
internal data class SslConfig private constructor(
18+
internal data class SslConfig(
1919
val keyStore: KeyStore,
2020
val keyStoreFile: File,
2121
val keyStorePassword: String,

0 commit comments

Comments
 (0)