Skip to content

Commit

Permalink
General dependency bump (#339)
Browse files Browse the repository at this point in the history
  • Loading branch information
slinkydeveloper authored Jun 3, 2024
1 parent 8f90998 commit 78d0340
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 20 deletions.
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ import net.ltgt.gradle.errorprone.errorprone

plugins {
java
kotlin("jvm") version "1.9.22" apply false
kotlin("plugin.serialization") version "1.9.22" apply false
kotlin("jvm") version "2.0.0" apply false
kotlin("plugin.serialization") version "2.0.0" apply false

id("net.ltgt.errorprone") version "3.0.1"
id("com.github.jk1.dependency-license-report") version "2.0"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,7 @@ internal constructor(

val scope =
CoroutineScope(
(options?.coroutineContext
?: Options.DEFAULT.coroutineContext) +
(options?.coroutineContext ?: Options.DEFAULT.coroutineContext) +
dev.restate.sdk.common.syscalls.HandlerRunner.SYSCALLS_THREAD_LOCAL
.asContextElement(syscalls) +
syscalls.request().otelContext()!!.asContextElement())
Expand Down
2 changes: 1 addition & 1 deletion sdk-http-vertx/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ dependencies {
implementation(platform(coreLibs.opentelemetry.bom))
implementation(coreLibs.opentelemetry.api)
implementation(coreLibs.log4j.api)
implementation("io.reactiverse:reactiverse-contextual-logging:1.1.2")
implementation("io.reactiverse:reactiverse-contextual-logging:1.2.1")

// Testing
testImplementation(project(":sdk-api"))
Expand Down
30 changes: 15 additions & 15 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ dependencyResolutionManagement {

versionCatalogs {
create("coreLibs") {
version("protobuf", "3.24.3")
version("log4j", "2.22.0")
version("opentelemetry", "1.37.0")
version("protobuf", "4.27.0")
version("log4j", "2.23.0")
version("opentelemetry", "1.38.0")

library("protoc", "com.google.protobuf", "protoc").versionRef("protobuf")
library("protobuf-java", "com.google.protobuf", "protobuf-java").versionRef("protobuf")
Expand All @@ -57,18 +57,18 @@ dependencyResolutionManagement {
library("tink", "com.google.crypto.tink:tink:1.13.0")
}
create("vertxLibs") {
library("vertx-bom", "io.vertx:vertx-stack-depchain:4.5.1")
library("vertx-bom", "io.vertx:vertx-stack-depchain:4.5.8")
library("vertx-core", "io.vertx", "vertx-core").withoutVersion()
library("vertx-kotlin-coroutines", "io.vertx", "vertx-lang-kotlin-coroutines")
.withoutVersion()
library("vertx-junit5", "io.vertx", "vertx-junit5").withoutVersion()
}
create("lambdaLibs") {
library("core", "com.amazonaws:aws-lambda-java-core:1.2.2")
library("events", "com.amazonaws:aws-lambda-java-events:3.11.0")
library("core", "com.amazonaws:aws-lambda-java-core:1.2.3")
library("events", "com.amazonaws:aws-lambda-java-events:3.11.5")
}
create("jacksonLibs") {
version("jackson", "2.16.1")
version("jackson", "2.17.1")

library("jackson-bom", "com.fasterxml.jackson", "jackson-bom").versionRef("jackson")
library("jackson-annotations", "com.fasterxml.jackson.core", "jackson-annotations")
Expand All @@ -82,21 +82,21 @@ dependencyResolutionManagement {
}
create("kotlinLibs") {
library("kotlinx-coroutines", "org.jetbrains.kotlinx", "kotlinx-coroutines-core")
.version("1.7.3")
.version("1.9.0-RC")
library("kotlinx-serialization-core", "org.jetbrains.kotlinx", "kotlinx-serialization-core")
.version("1.6.2")
.version("1.6.3")
library("kotlinx-serialization-json", "org.jetbrains.kotlinx", "kotlinx-serialization-json")
.version("1.6.2")
.version("1.6.3")

version("ksp", "1.9.22-1.0.18")
version("ksp", "2.0.0-1.0.21")
library("symbol-processing-api", "com.google.devtools.ksp", "symbol-processing-api")
.versionRef("ksp")
plugin("ksp", "com.google.devtools.ksp").versionRef("ksp")
}
create("testingLibs") {
version("junit-jupiter", "5.9.1")
version("assertj", "3.23.1")
version("testcontainers", "1.19.4")
version("junit-jupiter", "5.10.2")
version("assertj", "3.26.0")
version("testcontainers", "1.19.8")

library("junit-jupiter", "org.junit.jupiter", "junit-jupiter").versionRef("junit-jupiter")
library("junit-api", "org.junit.jupiter", "junit-jupiter-api").versionRef("junit-jupiter")
Expand All @@ -109,7 +109,7 @@ dependencyResolutionManagement {
.versionRef("testcontainers")
}
create("pluginLibs") {
plugin("spotless", "com.diffplug.spotless").version("6.22.0")
plugin("spotless", "com.diffplug.spotless").version("6.25.0")
plugin("protobuf", "com.google.protobuf").version("0.9.4")
plugin("test-logger", "com.adarshr.test-logger").version("4.0.0")
}
Expand Down

0 comments on commit 78d0340

Please sign in to comment.