Skip to content

Commit a6db611

Browse files
Update library versions in codeSnippets (#531)
* Update Gradle and Kotlinx coroutines and serialization library versions in codeSnippets * Bump path-to-regexp and express (#530) Bumps [path-to-regexp](https://github.com/pillarjs/path-to-regexp) to 0.1.10 and updates ancestor dependency [express](https://github.com/expressjs/express). These dependencies need to be updated together. Updates `path-to-regexp` from 0.1.7 to 0.1.10 - [Release notes](https://github.com/pillarjs/path-to-regexp/releases) - [Changelog](https://github.com/pillarjs/path-to-regexp/blob/master/History.md) - [Commits](pillarjs/path-to-regexp@v0.1.7...v0.1.10) Updates `express` from 4.19.2 to 4.21.0 - [Release notes](https://github.com/expressjs/express/releases) - [Changelog](https://github.com/expressjs/express/blob/4.21.0/History.md) - [Commits](expressjs/express@4.19.2...4.21.0) --- updated-dependencies: - dependency-name: path-to-regexp dependency-type: indirect - dependency-name: express dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent e9ef6ca commit a6db611

File tree

9 files changed

+349
-144
lines changed

9 files changed

+349
-144
lines changed

codeSnippets/gradle.properties

+4-5
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,16 @@ org.gradle.configureondemand = false
77
# versions
88
kotlin_version = 2.0.0
99
ktor_version = 2.3.12
10-
kotlinx_coroutines_version = 2.0.0
11-
kotlinx_serialization_version = 2.0.0
10+
kotlinx_coroutines_version = 1.9.0
11+
kotlinx_serialization_version = 1.7.2
1212
kotlin_css_version = 1.0.0-pre.721
1313
exposed_version = 0.53.0
1414
h2_version = 2.2.224
15-
postgresql_version = 42.5.1
1615
hikaricp_version = 5.1.0
1716
ehcache_version = 3.10.8
1817
logback_version = 1.5.6
1918
slf4j_version = 2.0.12
20-
gce_logback_version = 0.127.15-alpha
19+
gce_logback_version = 0.131.12-alpha
2120
log4j_version = 2.19.0
2221
kotlinx_html_version = 0.11.0
2322
proguard_version = 7.3.0
@@ -32,4 +31,4 @@ dropwizard_version = 4.2.25
3231
bootstrap_version = 5.2.3
3332
swagger_codegen_version = 1.0.47
3433
org.gradle.jvmargs = -Xmx2g -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
35-
postgres_version = 42.5.1
34+
postgres_version = 42.7.2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6.4-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10-bin.zip
44
networkTimeout=10000
55
zipStoreBase=GRADLE_USER_HOME
66
zipStorePath=wrapper/dists

codeSnippets/snippets/http2-netty/build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ repositories {
1717
maven { url = uri("https://maven.pkg.jetbrains.space/public/p/ktor/eap") }
1818
}
1919

20-
val osName = System.getProperty("os.name").toLowerCase()
20+
val osName = System.getProperty("os.name").lowercase()
2121
val tcnative_classifier = when {
2222
osName.contains("win") -> "windows-x86_64"
2323
osName.contains("linux") -> "linux-x86_64"

codeSnippets/snippets/http2-push/build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ repositories {
1717
maven { url = uri("https://maven.pkg.jetbrains.space/public/p/ktor/eap") }
1818
}
1919

20-
val osName = System.getProperty("os.name").toLowerCase()
20+
val osName = System.getProperty("os.name").lowercase()
2121
val tcnative_classifier = when {
2222
osName.contains("win") -> "windows-x86_64"
2323
osName.contains("linux") -> "linux-x86_64"

0 commit comments

Comments
 (0)