Skip to content

Commit 6663416

Browse files
committed
Update dependencies
This pulls in Netty 4.1.122 - update to 4.2.x pending.
1 parent 882b09a commit 6663416

File tree

2 files changed

+30
-30
lines changed

2 files changed

+30
-30
lines changed

deps.edn

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,35 @@
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.11.3"},
4+
{org.clojure/clojure {:mvn/version "1.12.1"},
55
org.clojure/tools.logging
66
{:mvn/version "1.3.0", :exclusions [org.clojure/clojure]},
77
manifold/manifold
88
{:mvn/version "0.4.3", :exclusions [org.clojure/tools.logging]},
99
org.clj-commons/byte-streams {:mvn/version "0.3.4"},
1010
org.clj-commons/dirigiste {:mvn/version "1.0.4"},
1111
org.clj-commons/primitive-math {:mvn/version "1.0.1"},
12-
potemkin/potemkin {:mvn/version "0.4.7"},
13-
io.netty/netty-transport {:mvn/version "4.1.118.Final"},
12+
potemkin/potemkin {:mvn/version "0.4.8"},
13+
io.netty/netty-transport {:mvn/version "4.1.122.Final"},
1414
io.netty/netty-transport-native-epoll$linux-x86_64
15-
{:mvn/version "4.1.118.Final"},
15+
{:mvn/version "4.1.122.Final"},
1616
io.netty/netty-transport-native-epoll$linux-aarch_64
17-
{:mvn/version "4.1.118.Final"},
17+
{:mvn/version "4.1.122.Final"},
1818
io.netty/netty-transport-native-kqueue$osx-x86_64
19-
{:mvn/version "4.1.118.Final"},
19+
{:mvn/version "4.1.122.Final"},
2020
io.netty.incubator/netty-incubator-transport-native-io_uring$linux-x86_64
21-
{:mvn/version "0.0.25.Final"},
21+
{:mvn/version "0.0.26.Final"},
2222
io.netty.incubator/netty-incubator-transport-native-io_uring$linux-aarch_64
23-
{:mvn/version "0.0.25.Final"},
24-
io.netty/netty-codec {:mvn/version "4.1.118.Final"},
25-
io.netty/netty-codec-http {:mvn/version "4.1.118.Final"},
26-
io.netty/netty-codec-http2 {:mvn/version "4.1.118.Final"},
27-
io.netty/netty-handler {:mvn/version "4.1.118.Final"},
28-
io.netty/netty-handler-proxy {:mvn/version "4.1.118.Final"},
29-
io.netty/netty-resolver {:mvn/version "4.1.118.Final"},
30-
io.netty/netty-resolver-dns {:mvn/version "4.1.118.Final"},
23+
{:mvn/version "0.0.26.Final"},
24+
io.netty/netty-codec {:mvn/version "4.1.122.Final"},
25+
io.netty/netty-codec-http {:mvn/version "4.1.122.Final"},
26+
io.netty/netty-codec-http2 {:mvn/version "4.1.122.Final"},
27+
io.netty/netty-handler {:mvn/version "4.1.122.Final"},
28+
io.netty/netty-handler-proxy {:mvn/version "4.1.122.Final"},
29+
io.netty/netty-resolver {:mvn/version "4.1.122.Final"},
30+
io.netty/netty-resolver-dns {:mvn/version "4.1.122.Final"},
3131
metosin/malli
32-
{:mvn/version "0.16.1", :exclusions [org.clojure/clojure]}},
32+
{:mvn/version "0.19.1", :exclusions [org.clojure/clojure]}},
3333
:aliases
3434
{:lein2deps
3535
{:deps

project.clj

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

55

66
(defproject aleph (or (System/getenv "PROJECT_VERSION") "0.8.3")
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.11.3"]
10+
:dependencies [[org.clojure/clojure "1.12.1"]
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"]
1414
[org.clj-commons/dirigiste "1.0.4"]
1515
[org.clj-commons/primitive-math "1.0.1"]
16-
[potemkin "0.4.7"]
16+
[potemkin "0.4.8"]
1717
[io.netty/netty-transport ~netty-version]
1818
[io.netty/netty-transport-native-epoll ~netty-version :classifier "linux-x86_64"]
1919
[io.netty/netty-transport-native-epoll ~netty-version :classifier "linux-aarch_64"]
2020
[io.netty/netty-transport-native-kqueue ~netty-version :classifier "osx-x86_64"]
21-
[io.netty.incubator/netty-incubator-transport-native-io_uring "0.0.25.Final" :classifier "linux-x86_64"]
22-
[io.netty.incubator/netty-incubator-transport-native-io_uring "0.0.25.Final" :classifier "linux-aarch_64"]
21+
[io.netty.incubator/netty-incubator-transport-native-io_uring "0.0.26.Final" :classifier "linux-x86_64"]
22+
[io.netty.incubator/netty-incubator-transport-native-io_uring "0.0.26.Final" :classifier "linux-aarch_64"]
2323
[io.netty/netty-codec ~netty-version]
2424
[io.netty/netty-codec-http ~netty-version]
2525
[io.netty/netty-codec-http2 ~netty-version]
2626
[io.netty/netty-handler ~netty-version]
2727
[io.netty/netty-handler-proxy ~netty-version]
2828
[io.netty/netty-resolver ~netty-version]
2929
[io.netty/netty-resolver-dns ~netty-version]
30-
[metosin/malli "0.16.1" :exclusions [org.clojure/clojure]]]
30+
[metosin/malli "0.19.1" :exclusions [org.clojure/clojure]]]
3131
:profiles {:dev {:dependencies [[criterium "0.4.6"]
32-
[cheshire "5.13.0"]
33-
[org.slf4j/slf4j-simple "2.0.13"]
32+
[cheshire "6.0.0"]
33+
[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
37-
[org.bouncycastle/bcprov-jdk18on "1.78.1"]
38-
[org.bouncycastle/bcpkix-jdk18on "1.78.1"]
37+
[org.bouncycastle/bcprov-jdk18on "1.81"]
38+
[org.bouncycastle/bcpkix-jdk18on "1.81"]
3939
;;[org.bouncycastle/bctls-jdk18on "1.75"]
40-
[io.netty/netty-tcnative-boringssl-static "2.0.65.Final"]
40+
[io.netty/netty-tcnative-boringssl-static "2.0.72.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.6-3"]]
50+
[com.github.luben/zstd-jni "1.5.7-3"]]
5151
:jvm-opts ["-Dorg.slf4j.simpleLogger.defaultLogLevel=debug"
5252
"-Dorg.slf4j.simpleLogger.showThreadName=false"
5353
"-Dorg.slf4j.simpleLogger.showThreadId=true"
@@ -66,7 +66,7 @@
6666
"-Dio.netty.allocator.type=unpooled"]}
6767
:pedantic {:pedantic? :abort}
6868
:trace {:jvm-opts ["-Dorg.slf4j.simpleLogger.defaultLogLevel=trace"]}
69-
:profile {:dependencies [[com.clojure-goes-fast/clj-async-profiler "1.2.2"]]
69+
:profile {:dependencies [[com.clojure-goes-fast/clj-async-profiler "1.6.2"]]
7070
:jvm-opts ["-Djdk.attach.allowAttachSelf"]}}
7171
:java-source-paths ["src-java"]
7272
:test-selectors {:default #(not

0 commit comments

Comments
 (0)