summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gradle/libs.versions.toml37
1 files changed, 16 insertions, 21 deletions
diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml
index 7ee11bd5..409d0031 100644
--- a/gradle/libs.versions.toml
+++ b/gradle/libs.versions.toml
@@ -5,29 +5,24 @@
kotlinx-coroutines = "1.6.4"
kotlinx-serialization = "1.4.1"
krossbow = "4.4.0"
-logback-classic = "1.2.10"
-## ⬆ = "1.2.11"
-## ⬆ = "1.3.0"
-## ⬆ = "1.3.1"
-## ⬆ = "1.3.2"
-## ⬆ = "1.3.3"
-## ⬆ = "1.3.4"
-## ⬆ = "1.4.0"
-## ⬆ = "1.4.1"
-## ⬆ = "1.4.2"
-## ⬆ = "1.4.3"
-## ⬆ = "1.4.4"
+logback-classic = "1.2.11"
+## ⬆ = "1.3.0" # requires SLF4J 2, which requires Spring Boot 3.0.0 (not there yet)
+## ⬆ = "1.3.1" # requires SLF4J 2, which requires Spring Boot 3.0.0 (not there yet)
+## ⬆ = "1.3.2" # requires SLF4J 2, which requires Spring Boot 3.0.0 (not there yet)
+## ⬆ = "1.3.3" # requires SLF4J 2, which requires Spring Boot 3.0.0 (not there yet)
+## ⬆ = "1.3.4" # requires SLF4J 2, which requires Spring Boot 3.0.0 (not there yet)
+## ⬆ = "1.4.0" # requires SLF4J 2, which requires Spring Boot 3.0.0 (not there yet)
+## ⬆ = "1.4.1" # requires SLF4J 2, which requires Spring Boot 3.0.0 (not there yet)
+## ⬆ = "1.4.2" # requires SLF4J 2, which requires Spring Boot 3.0.0 (not there yet)
+## ⬆ = "1.4.3" # requires SLF4J 2, which requires Spring Boot 3.0.0 (not there yet)
+## ⬆ = "1.4.4" # requires SLF4J 2, which requires Spring Boot 3.0.0 (not there yet)
loki-logback-appender = "1.3.2"
micrometer-registry-prometheus = "1.9.5"
-slf4j = "1.7.32"
-## ⬆ = "1.7.33"
-## ⬆ = "1.7.34"
-## ⬆ = "1.7.35"
-## ⬆ = "1.7.36"
-## ⬆ = "2.0.0"
-## ⬆ = "2.0.1"
-## ⬆ = "2.0.2"
-## ⬆ = "2.0.3"
+slf4j = "1.7.36"
+## ⬆ = "2.0.0" # Wait for Spring Boot 3.0.0
+## ⬆ = "2.0.1" # Wait for Spring Boot 3.0.0
+## ⬆ = "2.0.2" # Wait for Spring Boot 3.0.0
+## ⬆ = "2.0.3" # Wait for Spring Boot 3.0.0
# See https://github.com/JetBrains/kotlin-wrappers
kotlin-react = "17.0.2-pre.266-kotlin-1.6.0"
bgstack15