Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions buildSrc/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ repositories {
}

dependencies {
implementation("biz.aQute.bnd:biz.aQute.bnd.gradle:7.2.3")
implementation("biz.aQute.bnd:biz.aQute.bnd.gradle:7.3.0")
implementation(enforcedPlatform("com.squareup.wire:wire-bom:6.4.0"))
implementation("com.google.auto.value:auto-value-annotations:1.11.1")
// When updating, update above in plugins too
Expand All @@ -48,7 +48,7 @@ dependencies {
implementation("me.champeau.jmh:jmh-gradle-plugin:0.7.3")
implementation("net.ltgt.gradle:gradle-errorprone-plugin:5.1.0")
implementation("net.ltgt.gradle:gradle-nullaway-plugin:3.0.0")
implementation("org.jetbrains.kotlin:kotlin-gradle-plugin:2.3.21")
implementation("org.jetbrains.kotlin:kotlin-gradle-plugin:2.4.0")
implementation("org.sonatype.gradle.plugins:scan-gradle-plugin:3.1.5")
implementation("ru.vyarus:gradle-animalsniffer-plugin:2.0.1")
}
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ java {

checkstyle {
configDirectory.set(file("$rootDir/buildscripts/"))
toolVersion = "13.4.2"
toolVersion = "13.5.0"
isIgnoreFailures = false
configProperties["rootDir"] = rootDir
}
Expand Down
8 changes: 4 additions & 4 deletions dependencyManagement/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ val mockitoVersion = "4.11.0"
val slf4jVersion = "2.0.18"
val opencensusVersion = "0.31.1"
val prometheusServerVersion = "1.5.1"
val armeriaVersion = "1.39.0"
val armeriaVersion = "1.39.1"
val junitVersion = "5.14.4"
val junitPlatformVersion = "1.14.4"
val okhttpVersion = "5.3.2"
Expand All @@ -27,13 +27,13 @@ val DEPENDENCY_BOMS = listOf(
// (which is EPL licensed) or armeria bom (which is Apache licensed but is getting flagged
// by FOSSA for containing EPL-licensed)

"com.fasterxml.jackson:jackson-bom:2.21.3",
"com.fasterxml.jackson:jackson-bom:2.22.0",
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Something weird is going on with this release:

🤷 better let the dust settle

"com.google.guava:guava-bom:33.6.0-jre",
"com.google.protobuf:protobuf-bom:4.35.0",
"com.squareup.okhttp3:okhttp-bom:$okhttpVersion",
"com.squareup.okio:okio-bom:3.17.0", // applies to transitive dependencies of okhttp
"io.grpc:grpc-bom:1.81.0",
"io.netty:netty-bom:4.2.14.Final",
"io.netty:netty-bom:4.2.15.Final",
"io.zipkin.brave:brave-bom:6.3.1",
"io.zipkin.reporter2:zipkin-reporter-bom:3.5.3",
"org.assertj:assertj-bom:3.27.7",
Expand Down Expand Up @@ -74,7 +74,7 @@ val DEPENDENCIES = listOf(
"io.prometheus:prometheus-metrics-exposition-formats-no-protobuf:${prometheusServerVersion}",
"javax.annotation:javax.annotation-api:1.3.2",
"com.github.stefanbirkner:system-rules:1.19.0",
"com.google.api.grpc:proto-google-common-protos:2.71.0",
"com.google.api.grpc:proto-google-common-protos:2.72.0",
"com.google.code.findbugs:jsr305:3.0.2",
"com.google.guava:guava-beta-checker:1.0",
"com.sun.net.httpserver:http:20070405",
Expand Down
2 changes: 1 addition & 1 deletion mise.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tools]

# Linters
"aqua:grafana/flint" = "0.22.4"
"aqua:grafana/flint" = "0.22.5"
lychee = "0.24.2"

[env]
Expand Down
Loading