From 3de91cfdf3b82450a8f4ecb1b359a12e54abcb7d Mon Sep 17 00:00:00 2001 From: Patrik Sundberg Date: Fri, 27 Feb 2026 02:00:38 +0000 Subject: [PATCH 1/2] chore: ignore lsp cache. --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index f416451..fe5eb23 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ /.clj-kondo/.cache/ /.nrepl-port .envrc +/.lsp/ From 847428381b78ae7508e5942d0eafb88833ec26a7 Mon Sep 17 00:00:00 2001 From: Patrik Sundberg Date: Fri, 27 Feb 2026 02:00:38 +0000 Subject: [PATCH 2/2] chore: bump dependencies to current versions. --- deps.edn | 39 +++++++++++++++++++-------------------- 1 file changed, 19 insertions(+), 20 deletions(-) diff --git a/deps.edn b/deps.edn index 2fdf033..74ccbcd 100644 --- a/deps.edn +++ b/deps.edn @@ -1,50 +1,49 @@ {:paths ["src" "resources"] :deps - {org.clojure/clojure {:mvn/version "1.12.0"} + {org.clojure/clojure {:mvn/version "1.12.4"} ;; Web server - ring/ring-core {:mvn/version "1.12.1"} - ring/ring-jetty-adapter {:mvn/version "1.12.1"} + ring/ring-core {:mvn/version "1.15.3"} ;; Routing - metosin/reitit-ring {:mvn/version "0.7.0"} - metosin/reitit-malli {:mvn/version "0.7.0"} + metosin/reitit-ring {:mvn/version "0.10.0"} + metosin/reitit-malli {:mvn/version "0.10.0"} ;; HTML generation dev.onionpancakes/chassis {:mvn/version "1.0.365"} ;; Compression - com.aayushatharva.brotli4j/brotli4j {:mvn/version "1.18.0"} - io.netty/netty-buffer {:mvn/version "4.1.119.Final"} + com.aayushatharva.brotli4j/brotli4j {:mvn/version "1.20.0"} + io.netty/netty-buffer {:mvn/version "4.2.10.Final"} ;; Server-sent events support - http-kit/http-kit {:mvn/version "2.8.0"} + http-kit/http-kit {:mvn/version "2.9.0-beta3"} ;; Utilities - ring/ring-defaults {:mvn/version "0.5.0"} + ring/ring-defaults {:mvn/version "0.7.0"} ;; JSON cheshire/cheshire {:mvn/version "6.1.0"} ;; Logging - com.taoensso/telemere {:mvn/version "1.1.0"}} + com.taoensso/telemere {:mvn/version "1.2.1"}} :aliases {:test {:extra-paths ["test"] - :extra-deps {org.clojure/test.check {:mvn/version "1.1.1"} + :extra-deps {org.clojure/test.check {:mvn/version "1.1.3"} lambdaisland/kaocha {:mvn/version "1.91.1392"} - io.github.pfeodrippe/wally {:mvn/version "0.0.4"} - com.aayushatharva.brotli4j/native-osx-aarch64 {:mvn/version "1.18.0"} - com.aayushatharva.brotli4j/native-osx-x86_64 {:mvn/version "1.18.0"} - com.aayushatharva.brotli4j/native-linux-x86_64 {:mvn/version "1.18.0"} - com.aayushatharva.brotli4j/native-linux-aarch64 {:mvn/version "1.18.0"}} + io.github.pfeodrippe/wally {:mvn/version "0.0.5"} + com.aayushatharva.brotli4j/native-osx-aarch64 {:mvn/version "1.20.0"} + com.aayushatharva.brotli4j/native-osx-x86_64 {:mvn/version "1.20.0"} + com.aayushatharva.brotli4j/native-linux-x86_64 {:mvn/version "1.20.0"} + com.aayushatharva.brotli4j/native-linux-aarch64 {:mvn/version "1.20.0"}} :main-opts ["-m" "kaocha.runner"] :exec-fn kaocha.runner/exec-fn :exec-args {:randomize? false :fail-fast? true}} - :dev {:extra-deps {com.aayushatharva.brotli4j/native-osx-aarch64 {:mvn/version "1.18.0"} - com.aayushatharva.brotli4j/native-osx-x86_64 {:mvn/version "1.18.0"} - com.aayushatharva.brotli4j/native-linux-x86_64 {:mvn/version "1.18.0"} - com.aayushatharva.brotli4j/native-linux-aarch64 {:mvn/version "1.18.0"}}}}} + :dev {:extra-deps {com.aayushatharva.brotli4j/native-osx-aarch64 {:mvn/version "1.20.0"} + com.aayushatharva.brotli4j/native-osx-x86_64 {:mvn/version "1.20.0"} + com.aayushatharva.brotli4j/native-linux-x86_64 {:mvn/version "1.20.0"} + com.aayushatharva.brotli4j/native-linux-aarch64 {:mvn/version "1.20.0"}}}}}