From f344bd0b4b79c16138d931e0a390a67f07ca2597 Mon Sep 17 00:00:00 2001 From: jmaeng72 <44305062+jmaeng72@users.noreply.github.com> Date: Fri, 7 Aug 2026 11:49:24 -0400 Subject: [PATCH 1/3] update yawk dep --- common-lib/project.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common-lib/project.clj b/common-lib/project.clj index 103c4ed7b0..ab9594f459 100644 --- a/common-lib/project.clj +++ b/common-lib/project.clj @@ -35,7 +35,7 @@ [nasa-cmr/cmr-schema-validation-lib "0.1.0-SNAPSHOT"] ;; at.yawk.lz4 is a drop in replacement for net.jpountz.lz4 and actually implements ;; the exact same class path so no code change is needed. - [at.yawk.lz4/lz4-java] + [at.yawk.lz4/lz4-java "1.11.1"] [org.clojure/clojure] [org.clojure/core.async "0.4.490"] [org.clojure/core.cache "0.7.2"] From 0848e01605b08263a46d4828abbfc4c9e8b458a0 Mon Sep 17 00:00:00 2001 From: jmaeng72 <44305062+jmaeng72@users.noreply.github.com> Date: Fri, 7 Aug 2026 12:28:29 -0400 Subject: [PATCH 2/3] update all yawk --- elastic-utils-lib/project.clj | 2 +- es-spatial-plugin/project.clj | 4 ++-- redis-utils-lib/project.clj | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/elastic-utils-lib/project.clj b/elastic-utils-lib/project.clj index 128778152f..bd55b337a1 100644 --- a/elastic-utils-lib/project.clj +++ b/elastic-utils-lib/project.clj @@ -33,7 +33,7 @@ org.jruby.jcodings/jcodings]] ;; force use of at.yawk.lz4 below [com.taoensso/carmine "3.0.1" :exclusions [com.taoensso/nippy]] [com.taoensso/nippy "3.0.0" :exclusions [org.lz4/lz4-java]] - [at.yawk.lz4/lz4-java] + [at.yawk.lz4/lz4-java "1.11.1"] ;; testcontainers needs a newer version of commons-compress, for now ;; we will force it to use the latest version diff --git a/es-spatial-plugin/project.clj b/es-spatial-plugin/project.clj index 2a59cb3f62..57ca139642 100644 --- a/es-spatial-plugin/project.clj +++ b/es-spatial-plugin/project.clj @@ -53,7 +53,7 @@ org.lz4/lz4-java org.jruby.joni/joni org.jruby.jcodings/jcodings]] - [at.yawk.lz4/lz4-java "1.10.1"] + [at.yawk.lz4/lz4-java "1.11.1"] [org.clojure/tools.reader "1.3.2"] [org.yaml/snakeyaml "1.31"]]} @@ -69,7 +69,7 @@ ;; is supposed to be a drop in replacement and ;; uses the same package name as the original. [net.jpountz.lz4/lz4] - [at.yawk.lz4/lz4-java] + [at.yawk.lz4/lz4-java "1.11.1"] [org.locationtech.jts/jts-core] [org.locationtech.jts.JTSVersion] [org.slf4j/slf4j-api] diff --git a/redis-utils-lib/project.clj b/redis-utils-lib/project.clj index 15141f8aca..0ae15fb9a7 100644 --- a/redis-utils-lib/project.clj +++ b/redis-utils-lib/project.clj @@ -18,7 +18,7 @@ ;; org.lz4 is no longer supported and at.yawk.lz4 is a drop in replacement for it. ;; Exclude these libraries to prevent conflicts. [com.taoensso/nippy "3.0.0" :exclusions [org.lz4/lz4-java]] - [at.yawk.lz4/lz4-java] + [at.yawk.lz4/lz4-java "1.11.1"] ;; testcontainers needs a newer version of commons-compress, for now ;; we will force it to use the latest version From 294d3755478108641f1152525a5cb8bc2f1ec822 Mon Sep 17 00:00:00 2001 From: jmaeng72 <44305062+jmaeng72@users.noreply.github.com> Date: Fri, 7 Aug 2026 13:32:18 -0400 Subject: [PATCH 3/3] update managed dep version --- common-lib/project.clj | 2 +- elastic-utils-lib/project.clj | 2 +- es-spatial-plugin/project.clj | 2 +- project.clj | 4 ++-- redis-utils-lib/project.clj | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/common-lib/project.clj b/common-lib/project.clj index ab9594f459..103c4ed7b0 100644 --- a/common-lib/project.clj +++ b/common-lib/project.clj @@ -35,7 +35,7 @@ [nasa-cmr/cmr-schema-validation-lib "0.1.0-SNAPSHOT"] ;; at.yawk.lz4 is a drop in replacement for net.jpountz.lz4 and actually implements ;; the exact same class path so no code change is needed. - [at.yawk.lz4/lz4-java "1.11.1"] + [at.yawk.lz4/lz4-java] [org.clojure/clojure] [org.clojure/core.async "0.4.490"] [org.clojure/core.cache "0.7.2"] diff --git a/elastic-utils-lib/project.clj b/elastic-utils-lib/project.clj index bd55b337a1..128778152f 100644 --- a/elastic-utils-lib/project.clj +++ b/elastic-utils-lib/project.clj @@ -33,7 +33,7 @@ org.jruby.jcodings/jcodings]] ;; force use of at.yawk.lz4 below [com.taoensso/carmine "3.0.1" :exclusions [com.taoensso/nippy]] [com.taoensso/nippy "3.0.0" :exclusions [org.lz4/lz4-java]] - [at.yawk.lz4/lz4-java "1.11.1"] + [at.yawk.lz4/lz4-java] ;; testcontainers needs a newer version of commons-compress, for now ;; we will force it to use the latest version diff --git a/es-spatial-plugin/project.clj b/es-spatial-plugin/project.clj index 57ca139642..965854a1d2 100644 --- a/es-spatial-plugin/project.clj +++ b/es-spatial-plugin/project.clj @@ -69,7 +69,7 @@ ;; is supposed to be a drop in replacement and ;; uses the same package name as the original. [net.jpountz.lz4/lz4] - [at.yawk.lz4/lz4-java "1.11.1"] + [at.yawk.lz4/lz4-java] [org.locationtech.jts/jts-core] [org.locationtech.jts.JTSVersion] [org.slf4j/slf4j-api] diff --git a/project.clj b/project.clj index bcba2a517c..413d87c2ff 100644 --- a/project.clj +++ b/project.clj @@ -17,14 +17,14 @@ :plugins [[lein-modules "0.3.11"] [lein-parent "0.3.9"] [lein-shell "0.5.0"]] - :managed-dependencies [[at.yawk.lz4/lz4-java "1.10.1"] + :managed-dependencies [[at.yawk.lz4/lz4-java "1.11.1"] [cheshire "5.12.0"] ;; latest is 6.1.0 [clj-http "3.11.0"] ;; latest is 3.13.1 [clj-time "0.15.1"] ;; latest is 0.15.2 [com.fasterxml.jackson.core/jackson-annotations "2.21"] [com.fasterxml.jackson.core/jackson-core "2.21.4"] [com.fasterxml.jackson.core/jackson-databind "2.21.4"] - [org.clojure/clojure "1.11.2"] ;; lattest is 1.11.4 or 1.12.2 + [org.clojure/clojure "1.11.2"] ;; latest is 1.11.4 or 1.12.2 [org.apache.commons/commons-compress "1.28.0"] ;; see testcontainers [org.apache.logging.log4j/log4j-api "2.25.4"] [org.apache.logging.log4j/log4j-core "2.25.4"] diff --git a/redis-utils-lib/project.clj b/redis-utils-lib/project.clj index 0ae15fb9a7..15141f8aca 100644 --- a/redis-utils-lib/project.clj +++ b/redis-utils-lib/project.clj @@ -18,7 +18,7 @@ ;; org.lz4 is no longer supported and at.yawk.lz4 is a drop in replacement for it. ;; Exclude these libraries to prevent conflicts. [com.taoensso/nippy "3.0.0" :exclusions [org.lz4/lz4-java]] - [at.yawk.lz4/lz4-java "1.11.1"] + [at.yawk.lz4/lz4-java] ;; testcontainers needs a newer version of commons-compress, for now ;; we will force it to use the latest version