summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoffrey Bion <joffrey.bion@gmail.com>2022-11-06 03:22:09 +0100
committerJoffrey Bion <joffrey.bion@gmail.com>2022-11-06 15:59:02 +0100
commitfefd3deb224ad9b1114f95173434fb44cede50c9 (patch)
tree99b689181ba29fe438d2e403c09100730c2f5038
parentUpgrade loki logback appender to 1.3.2 (diff)
downloadseven-wonders-fefd3deb224ad9b1114f95173434fb44cede50c9.tar.gz
seven-wonders-fefd3deb224ad9b1114f95173434fb44cede50c9.tar.bz2
seven-wonders-fefd3deb224ad9b1114f95173434fb44cede50c9.zip
Upgrade Logback to 1.2.11 and slf4j to 1.7.36
-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