Skip to content

Commit

Permalink
Update library versions in codeSnippets (#531)
Browse files Browse the repository at this point in the history
* 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>
  • Loading branch information
vnikolova and dependabot[bot] authored Sep 19, 2024
1 parent e9ef6ca commit a6db611
Show file tree
Hide file tree
Showing 9 changed files with 349 additions and 144 deletions.
9 changes: 4 additions & 5 deletions codeSnippets/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,16 @@ org.gradle.configureondemand = false
# versions
kotlin_version = 2.0.0
ktor_version = 2.3.12
kotlinx_coroutines_version = 2.0.0
kotlinx_serialization_version = 2.0.0
kotlinx_coroutines_version = 1.9.0
kotlinx_serialization_version = 1.7.2
kotlin_css_version = 1.0.0-pre.721
exposed_version = 0.53.0
h2_version = 2.2.224
postgresql_version = 42.5.1
hikaricp_version = 5.1.0
ehcache_version = 3.10.8
logback_version = 1.5.6
slf4j_version = 2.0.12
gce_logback_version = 0.127.15-alpha
gce_logback_version = 0.131.12-alpha
log4j_version = 2.19.0
kotlinx_html_version = 0.11.0
proguard_version = 7.3.0
Expand All @@ -32,4 +31,4 @@ dropwizard_version = 4.2.25
bootstrap_version = 5.2.3
swagger_codegen_version = 1.0.47
org.gradle.jvmargs = -Xmx2g -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
postgres_version = 42.5.1
postgres_version = 42.7.2
2 changes: 1 addition & 1 deletion codeSnippets/gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6.4-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10-bin.zip
networkTimeout=10000
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
2 changes: 1 addition & 1 deletion codeSnippets/snippets/http2-netty/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ repositories {
maven { url = uri("https://maven.pkg.jetbrains.space/public/p/ktor/eap") }
}

val osName = System.getProperty("os.name").toLowerCase()
val osName = System.getProperty("os.name").lowercase()
val tcnative_classifier = when {
osName.contains("win") -> "windows-x86_64"
osName.contains("linux") -> "linux-x86_64"
Expand Down
2 changes: 1 addition & 1 deletion codeSnippets/snippets/http2-push/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ repositories {
maven { url = uri("https://maven.pkg.jetbrains.space/public/p/ktor/eap") }
}

val osName = System.getProperty("os.name").toLowerCase()
val osName = System.getProperty("os.name").lowercase()
val tcnative_classifier = when {
osName.contains("win") -> "windows-x86_64"
osName.contains("linux") -> "linux-x86_64"
Expand Down
Loading

0 comments on commit a6db611

Please sign in to comment.