Skip to content

Commit 836628c

Browse files
committed
Bump deps
1 parent 962aca5 commit 836628c

File tree

3 files changed

+18
-18
lines changed

3 files changed

+18
-18
lines changed

deps.edn

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
;; DO NOT EDIT MANUALLY - generated from project.clj via deps/lein-to-deps
22
{:paths ["src" "resources" "target/classes"],
33
:deps
4-
{org.clojure/clojure {:mvn/version "1.12.1"},
4+
{org.clojure/clojure {:mvn/version "1.12.2"},
55
org.clojure/tools.logging
66
{:mvn/version "1.3.0", :exclusions [org.clojure/clojure]},
77
manifold/manifold
@@ -10,24 +10,24 @@
1010
org.clj-commons/dirigiste {:mvn/version "1.0.4"},
1111
org.clj-commons/primitive-math {:mvn/version "1.0.1"},
1212
potemkin/potemkin {:mvn/version "0.4.8"},
13-
io.netty/netty-transport {:mvn/version "4.1.126.Final"},
13+
io.netty/netty-transport {:mvn/version "4.1.127.Final"},
1414
io.netty/netty-transport-native-epoll$linux-x86_64
15-
{:mvn/version "4.1.126.Final"},
15+
{:mvn/version "4.1.127.Final"},
1616
io.netty/netty-transport-native-epoll$linux-aarch_64
17-
{:mvn/version "4.1.126.Final"},
17+
{:mvn/version "4.1.127.Final"},
1818
io.netty/netty-transport-native-kqueue$osx-x86_64
19-
{:mvn/version "4.1.126.Final"},
19+
{:mvn/version "4.1.127.Final"},
2020
io.netty.incubator/netty-incubator-transport-native-io_uring$linux-x86_64
2121
{:mvn/version "0.0.26.Final"},
2222
io.netty.incubator/netty-incubator-transport-native-io_uring$linux-aarch_64
2323
{:mvn/version "0.0.26.Final"},
24-
io.netty/netty-codec {:mvn/version "4.1.126.Final"},
25-
io.netty/netty-codec-http {:mvn/version "4.1.126.Final"},
26-
io.netty/netty-codec-http2 {:mvn/version "4.1.126.Final"},
27-
io.netty/netty-handler {:mvn/version "4.1.126.Final"},
28-
io.netty/netty-handler-proxy {:mvn/version "4.1.126.Final"},
29-
io.netty/netty-resolver {:mvn/version "4.1.126.Final"},
30-
io.netty/netty-resolver-dns {:mvn/version "4.1.126.Final"},
24+
io.netty/netty-codec {:mvn/version "4.1.127.Final"},
25+
io.netty/netty-codec-http {:mvn/version "4.1.127.Final"},
26+
io.netty/netty-codec-http2 {:mvn/version "4.1.127.Final"},
27+
io.netty/netty-handler {:mvn/version "4.1.127.Final"},
28+
io.netty/netty-handler-proxy {:mvn/version "4.1.127.Final"},
29+
io.netty/netty-resolver {:mvn/version "4.1.127.Final"},
30+
io.netty/netty-resolver-dns {:mvn/version "4.1.127.Final"},
3131
metosin/malli
3232
{:mvn/version "0.19.1", :exclusions [org.clojure/clojure]}},
3333
:aliases

deps/lein-to-deps

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ set -euo pipefail
55
cd "$(dirname -- "${BASH_SOURCE[0]}")/.."
66

77
echo ";; DO NOT EDIT MANUALLY - generated from project.clj via deps/lein-to-deps" > deps.edn
8-
bb -Sdeps '{:deps {io.github.borkdude/lein2deps {:git/tag "v0.1.0" :git/sha "68b23a9"}}}' \
8+
bb -Sdeps '{:deps {io.github.borkdude/lein2deps {:git/tag "v0.1.1" :git/sha "6e192440c979e2c07c5855f9680b8f0350f42b63"}}}' \
99
-m lein2deps.api \
1010
--eval \
1111
--print >> deps.edn

project.clj

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
;; you'll need to run the script at `deps/lein-to-deps` after changing any dependencies
2-
(def netty-version "4.1.126.Final")
2+
(def netty-version "4.1.127.Final")
33
(def brotli-version "1.18.0")
44

55

66
(defproject aleph (or (System/getenv "PROJECT_VERSION") "0.9.2")
77
:description "A framework for asynchronous communication"
88
:url "https://github.com/clj-commons/aleph"
99
:license {:name "MIT License"}
10-
:dependencies [[org.clojure/clojure "1.12.1"]
10+
:dependencies [[org.clojure/clojure "1.12.2"]
1111
[org.clojure/tools.logging "1.3.0" :exclusions [org.clojure/clojure]]
1212
[manifold "0.4.3" :exclusions [org.clojure/tools.logging]]
1313
[org.clj-commons/byte-streams "0.3.4"]
@@ -29,15 +29,15 @@
2929
[io.netty/netty-resolver-dns ~netty-version]
3030
[metosin/malli "0.19.1" :exclusions [org.clojure/clojure]]]
3131
:profiles {:dev {:dependencies [[criterium "0.4.6"]
32-
[cheshire "6.0.0"]
32+
[cheshire "6.1.0"]
3333
[org.slf4j/slf4j-simple "2.0.17"]
3434
[com.cognitect/transit-clj "1.0.333"]
3535
[spootnik/signal "0.2.5"]
3636
;; This is for dev and testing ONLY, not recommended for prod
3737
[org.bouncycastle/bcprov-jdk18on "1.81"]
3838
[org.bouncycastle/bcpkix-jdk18on "1.81" :exclusions [org.bouncycastle/bcutil-jdk18on]]
3939
;;[org.bouncycastle/bctls-jdk18on "1.75"]
40-
[io.netty/netty-tcnative-boringssl-static "2.0.72.Final"]
40+
[io.netty/netty-tcnative-boringssl-static "2.0.73.Final"]
4141
;;[com.aayushatharva.brotli4j/all ~brotli-version]
4242
[com.aayushatharva.brotli4j/brotli4j ~brotli-version]
4343
[com.aayushatharva.brotli4j/service ~brotli-version]
@@ -47,7 +47,7 @@
4747
[com.aayushatharva.brotli4j/native-osx-aarch64 ~brotli-version]
4848
[com.aayushatharva.brotli4j/native-osx-x86_64 ~brotli-version]
4949
[com.aayushatharva.brotli4j/native-windows-x86_64 ~brotli-version]
50-
[com.github.luben/zstd-jni "1.5.7-3"]]
50+
[com.github.luben/zstd-jni "1.5.7-4"]]
5151
:jvm-opts ["-Dorg.slf4j.simpleLogger.defaultLogLevel=debug"
5252
"-Dorg.slf4j.simpleLogger.showThreadName=false"
5353
"-Dorg.slf4j.simpleLogger.showThreadId=true"

0 commit comments

Comments
 (0)