Skip to content

Commit 1bce0e0

Browse files
aliases: update library versions using make dependencies-update
1 parent f9cb7db commit 1bce0e0

2 files changed

Lines changed: 56 additions & 45 deletions

File tree

CHANGELOG.org

Lines changed: 21 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,29 @@
66
- dev: update github actions to latest versions
77

88
** Updated
9-
- alias: update name and version for cljfmt tool
9+
- alias: update library name and version for cljfmt tool
1010
- aliases: update library versions using `make dependencies-update`
1111

12-
| :name | :current | :latest |
13-
|-----------------------------------------|------------|------------|
14-
| com.github.flow-storm/clojure | 1.12.3-1 | 1.12.3-4 |
15-
| com.github.flow-storm/flow-storm-dbg | 4.5.8 | 4.5.9 |
16-
| dev.weavejester/cljfmt | 0.15.2 | 0.15.5 |
17-
| djblue/portal | 0.61.0 | 0.62.0 |
18-
| io.github.nextjournal/clerk | 0.18.1150 | 0.18.1158 |
19-
| io.github.practicalli/project-templates | 2025-09-04 | 2025-11-09 |
20-
| nrepl/nrepl | 1.5.0 | 1.5.1 |
12+
| :name | :current | :latest |
13+
|----------------------------------- |------------------------------------------|------------------------------------------|
14+
| clojurians-zulip/feeds | 39c07aefe1903685d9d43492cda4ad2eb34cf51c | a7d1642b38732f79944862e14ff4786b9df9a25d |
15+
| com.brunobonacci/mulog | 0.9.0 | 0.10.0 |
16+
| com.github.flow-storm/clojure | 1.12.3-1 | 1.12.4 |
17+
| com.github.flow-storm/flow-storm-dbg | 4.5.8 | 4.5.9 |
18+
| com.github.seancorfield/next.jdbc | 1.3.1070 | 1.3.1093 |
19+
| dev.weavejester/cljfmt | 0.15.2 | 0.15.5 |
20+
| djblue/portal | 0.61.0 | 0.62.2 |
21+
| io.github.nextjournal/clerk | 0.18.1150 | 0.18.1158 |
22+
| io.github.practicalli/project-templates | 2025-09-04 | 2026-02-05 |
23+
| io.github.seancorfield/deps-new | v0.10.1 | v0.10.3 |
24+
| nrepl/nrepl | 1.5.0 | 1.5.2 |
25+
| org.clojure/spec-alpha2 | eb94e46853d90153ba6dc72a4093719f38a90a4a | efbeb200b9594e265907c1d66ad4ffd9cd8c91cf |
26+
| org.clojure/test.check | 1.1.2 | 1.1.3 |
27+
| org.clojure/tools.deps.graph | 1.1.90 | 1.2.98 |
28+
| org.clojure/tools.namespace | 1.5.0 | 1.5.1 |
29+
| org.clojure/tools.trace | 0.8.0 | 0.9.0 |
30+
31+
2132

2233
- dev: updated GitHub action versions in all workflows
2334

deps.edn

Lines changed: 35 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -63,23 +63,23 @@
6363
;; Use with editor command to start a REPL (Jack-in) to include REPL Reloaded tools
6464
:dev/reloaded
6565
{:extra-paths ["dev" "test"]
66-
:extra-deps {djblue/portal {:mvn/version "0.62.0"} ; portal data inspector
66+
:extra-deps {djblue/portal {:mvn/version "0.62.2"} ; portal data inspector
6767
clj-commons/clj-yaml {:mvn/version "1.0.29"} ; portal yaml support (optional)
68-
org.clojure/tools.namespace {:mvn/version "1.5.0"}
69-
org.clojure/tools.trace {:mvn/version "0.8.0"}
68+
org.clojure/tools.namespace {:mvn/version "1.5.1"}
69+
org.clojure/tools.trace {:mvn/version "0.9.0"}
7070
org.slf4j/slf4j-nop {:mvn/version "2.0.17"}
71-
com.brunobonacci/mulog {:mvn/version "0.9.0"}
71+
com.brunobonacci/mulog {:mvn/version "0.10.0"}
7272
lambdaisland/kaocha {:mvn/version "1.91.1392"}
73-
org.clojure/test.check {:mvn/version "1.1.2"}
73+
org.clojure/test.check {:mvn/version "1.1.3"}
7474
criterium/criterium {:mvn/version "0.4.6"}}}
7575

7676
;; ClojureScript tools during REPl startup
7777
:dev/reloaded-cljs
7878
{:extra-paths ["dev" "test"]
79-
:extra-deps {djblue/portal {:mvn/version "0.62.0"} ; portal data inspector
79+
:extra-deps {djblue/portal {:mvn/version "0.62.2"} ; portal data inspector
8080
org.clojure/clojurescript {:mvn/version "1.10.844"}
8181
lambdaisland/kaocha-cljs {:mvn/version "1.8.163"}
82-
org.clojure/test.check {:mvn/version "1.1.2"}}}
82+
org.clojure/test.check {:mvn/version "1.1.3"}}}
8383

8484
;; DEPRECATED
8585
;; - only useful for Clojure 1.11.x, not required for Clojure 1.12 onward
@@ -109,25 +109,25 @@
109109

110110
;; Basic REPL UI with nREPL server for Clojure Editor support
111111
:repl/basic
112-
{:extra-deps {nrepl/nrepl {:mvn/version "1.5.1"}
112+
{:extra-deps {nrepl/nrepl {:mvn/version "1.5.2"}
113113
cider/cider-nrepl {:mvn/version "0.58.0"}}
114114
:main-opts ["--main" "nrepl.cmdline"
115115
"--middleware" "[cider.nrepl/cider-middleware]"
116116
"--interactive"]}
117117

118118
;; Headless REPL with nREPL server for Clojure Editor support
119119
:repl/headless
120-
{:extra-deps {nrepl/nrepl {:mvn/version "1.5.1"}
120+
{:extra-deps {nrepl/nrepl {:mvn/version "1.5.2"}
121121
cider/cider-nrepl {:mvn/version "0.58.0"}}
122122
:main-opts ["--main" "nrepl.cmdline"
123123
"--middleware" "[cider.nrepl/cider-middleware]"]}
124124

125125
;; Basic REPL UI, nREPL server and Portal data inspector
126126
:repl/inspect
127127
{:extra-deps
128-
{nrepl/nrepl {:mvn/version "1.5.1"}
128+
{nrepl/nrepl {:mvn/version "1.5.2"}
129129
cider/cider-nrepl {:mvn/version "0.58.0"}
130-
djblue/portal {:mvn/version "0.62.0"}}
130+
djblue/portal {:mvn/version "0.62.2"}}
131131
:main-opts ["--main" "nrepl.cmdline"
132132
"--middleware"
133133
"[cider.nrepl/cider-middleware,portal.nrepl/wrap-portal]"]}
@@ -138,7 +138,7 @@
138138
;; clojure -M:repl/clerk
139139
:repl/clerk
140140
{:extra-deps {io.github.nextjournal/clerk {:mvn/version "0.18.1158"}
141-
nrepl/nrepl {:mvn/version "1.5.1"}
141+
nrepl/nrepl {:mvn/version "1.5.2"}
142142
cider/cider-nrepl {:mvn/version "0.58.0"}
143143
refactor-nrepl/refactor-nrepl {:mvn/version "3.11.0"}}
144144
:main-opts ["--eval" "(require '[nextjournal.clerk])(nextjournal.clerk/show! 'nextjournal.clerk.tap)(nextjournal.clerk/serve! {:browse? true})"
@@ -157,7 +157,7 @@
157157

158158
;; clojure -M:repl/rebel
159159
:repl/rebel
160-
{:extra-deps {nrepl/nrepl {:mvn/version "1.5.1"}
160+
{:extra-deps {nrepl/nrepl {:mvn/version "1.5.2"}
161161
cider/cider-nrepl {:mvn/version "0.58.0"}
162162
com.bhauman/rebel-readline {:mvn/version "0.1.5"}}
163163
:main-opts ["--eval" "(apply require clojure.main/repl-requires)"
@@ -173,17 +173,17 @@
173173
;; clojure -M:repl/reloaded
174174
:repl/reloaded
175175
{:extra-paths ["dev" "test"]
176-
:extra-deps {nrepl/nrepl {:mvn/version "1.5.1"}
176+
:extra-deps {nrepl/nrepl {:mvn/version "1.5.2"}
177177
cider/cider-nrepl {:mvn/version "0.58.0"}
178178
com.bhauman/rebel-readline {:mvn/version "0.1.5"}
179-
djblue/portal {:mvn/version "0.62.0"} ; portal data inspector
179+
djblue/portal {:mvn/version "0.62.2"} ; portal data inspector
180180
clj-commons/clj-yaml {:mvn/version "1.0.29"} ; portal yaml support (optional)
181-
org.clojure/tools.namespace {:mvn/version "1.5.0"}
182-
org.clojure/tools.trace {:mvn/version "0.8.0"}
181+
org.clojure/tools.namespace {:mvn/version "1.5.1"}
182+
org.clojure/tools.trace {:mvn/version "0.9.0"}
183183
org.slf4j/slf4j-nop {:mvn/version "2.0.17"}
184-
com.brunobonacci/mulog {:mvn/version "0.9.0"}
184+
com.brunobonacci/mulog {:mvn/version "0.10.0"}
185185
lambdaisland/kaocha {:mvn/version "1.91.1392"}
186-
org.clojure/test.check {:mvn/version "1.1.2"}
186+
org.clojure/test.check {:mvn/version "1.1.3"}
187187
ring/ring-mock {:mvn/version "0.6.2"}
188188
criterium/criterium {:mvn/version "0.4.6"}}
189189
:main-opts ["--eval" "(apply require clojure.main/repl-requires)"
@@ -204,7 +204,7 @@
204204
;; clojure -M:repl/remote --host hostname --port 12345
205205
;; replace --host and --port values with that of remote nREPL server
206206
:repl/remote
207-
{:extra-deps {nrepl/nrepl {:mvn/version "1.5.1"}}
207+
{:extra-deps {nrepl/nrepl {:mvn/version "1.5.2"}}
208208
:main-opts ["--main" "nrepl.cmdline" "--connect"]}
209209

210210
;; ---------------------------------------------------
@@ -227,17 +227,17 @@
227227
;; clojure -T:project/create :template template/name :name project/name
228228
:project/create
229229
{:replace-deps {io.github.seancorfield/deps-new
230-
{:git/tag "v0.10.1" :git/sha "a90029c"}
230+
{:git/tag "v0.10.3" :git/sha "2c012c4"}
231231
io.github.practicalli/project-templates
232-
{:git/tag "2025-11-09" :git/sha "7197a95"}}
232+
{:git/tag "2026-02-05" :git/sha "d414973"}}
233233
:exec-fn org.corfield.new/create
234234
:exec-args {:template practicalli/minimal
235235
:name practicalli/playground}}
236236

237237
;; Local testing of Practicalli Project Templates
238238
:project/create-local
239239
{:replace-deps {io.github.seancorfield/deps-new
240-
{:git/tag "v0.10.1" :git/sha "a90029c"}
240+
{:git/tag "v0.10.3" :git/sha "2c012c4"}
241241
practicalli/project-templates
242242
{:local/root "/home/practicalli/projects/practicalli/project-templates/"}}
243243
:exec-fn org.corfield.new/create
@@ -246,7 +246,7 @@
246246

247247
:project/templates
248248
{:extra-deps {io.github.practicalli/project-templates
249-
{:git/tag "2025-11-09" :git/sha "7197a95"}}}
249+
{:git/tag "2026-02-05" :git/sha "d414973"}}}
250250
;; ---------------------------------------------------
251251

252252
;; ---------------------------------------------------
@@ -493,13 +493,13 @@
493493
;; Databases and drivers uses only during development
494494

495495
:lib/next.jdbc
496-
{:extra-deps {com.github.seancorfield/next.jdbc {:mvn/version "1.3.1070"}}}
496+
{:extra-deps {com.github.seancorfield/next.jdbc {:mvn/version "1.3.1093"}}}
497497

498498
;; H2 embedded database
499499
:database/h2
500500
{:extra-deps
501501
{com.h2database/h2 {:mvn/version "2.4.240"}
502-
com.github.seancorfield/next.jdbc {:mvn/version "1.3.1070"}}}
502+
com.github.seancorfield/next.jdbc {:mvn/version "1.3.1093"}}}
503503
;; ---------------------------------------------------
504504

505505
;; ---------------------------------------------------
@@ -520,15 +520,15 @@
520520
;; https://github.com/djblue/portal
521521

522522
:inspect/portal-cli
523-
{:extra-deps {djblue/portal {:mvn/version "0.62.0"}}}
523+
{:extra-deps {djblue/portal {:mvn/version "0.62.2"}}}
524524

525525
:inspect/portal-web
526-
{:extra-deps {djblue/portal {:mvn/version "0.62.0"}
526+
{:extra-deps {djblue/portal {:mvn/version "0.62.2"}
527527
org.clojure/clojurescript {:mvn/version "1.11.60"}}
528528
:main-opts ["--main" "cljs.main"]}
529529

530530
:inspect/portal-node
531-
{:extra-deps {djblue/portal {:mvn/version "0.62.0"}
531+
{:extra-deps {djblue/portal {:mvn/version "0.62.2"}
532532
org.clojure/clojurescript {:mvn/version "1.11.60"}}
533533
:main-opts ["--main" "cljs.main" "-re" "node"]}
534534

@@ -551,7 +551,7 @@
551551
;; https://flow-storm.github.io/flow-storm-debugger/user_guide.html#_clojurestorm
552552
:lib/clojurestorm
553553
{:classpath-overrides {org.clojure/clojure nil}
554-
:extra-deps {com.github.flow-storm/clojure {:mvn/version "1.12.3-4"}
554+
:extra-deps {com.github.flow-storm/clojure {:mvn/version "1.12.4"}
555555
com.github.flow-storm/flow-storm-dbg {:mvn/version "4.5.9"}}
556556
;; Optionally add jvm-opt to manage instrumentation:
557557
;; -Dclojure.storm.instrumentOnlyPrefixes=YOUR_INSTRUMENTATION_STRING"
@@ -566,7 +566,7 @@
566566
;; Clojure spec test.check (clojure spec included in Clojure 1.9 onwards)
567567
:lib/spec-test
568568
{:extra-deps
569-
{org.clojure/test.check {:mvn/version "1.1.2"}}}
569+
{org.clojure/test.check {:mvn/version "1.1.3"}}}
570570

571571
;; Clojure spec 2 - under active development
572572
;; https://github.com/clojure/spec-alpha2
@@ -575,7 +575,7 @@
575575
:lib/spec2
576576
{:extra-deps {org.clojure/spec-alpha2
577577
{:git/url "https://github.com/clojure/spec-alpha2"
578-
:sha "eb94e46853d90153ba6dc72a4093719f38a90a4a"}}}
578+
:sha "efbeb200b9594e265907c1d66ad4ffd9cd8c91cf"}}}
579579
;; ---------------------------------------------------
580580

581581
;; ---------------------------------------------------
@@ -584,7 +584,7 @@
584584
;; Include the test directory on the class path
585585
:test/env
586586
{:extra-paths ["test"]
587-
:extra-deps {org.clojure/test.check {:mvn/version "1.1.2"}}}
587+
:extra-deps {org.clojure/test.check {:mvn/version "1.1.3"}}}
588588

589589
:lib/ring-mock
590590
{:extra-deps {ring/ring-mock {:mvn/version "0.6.2"}}}
@@ -723,7 +723,7 @@
723723
;; clojure -T:graph/deps
724724
:graph/deps
725725
{:replace-paths []
726-
:replace-deps {org.clojure/tools.deps.graph {:mvn/version "1.1.90"}}
726+
:replace-deps {org.clojure/tools.deps.graph {:mvn/version "1.2.98"}}
727727
:ns-default clojure.tools.deps.graph
728728
:exec-fn graph
729729
:exec-args {:output "project-dependencies-graph.png"
@@ -759,7 +759,7 @@
759759
{:replace-paths []
760760
:replace-deps {clojurians-zulip/feeds
761761
{:git/url "https://gitlab.com/clojurians-zulip/feeds.git"
762-
:sha "39c07aefe1903685d9d43492cda4ad2eb34cf51c"}}
762+
:sha "a7d1642b38732f79944862e14ff4786b9df9a25d"}}
763763
:main-opts ["--main" "inclined.main"
764764
"--ns" "clojurians-zulip.events" "--"]}
765765
;; ---------------------------------------------------

0 commit comments

Comments
 (0)