Skip to content

Commit 855ad35

Browse files
update: library versions using make outdated
1 parent e9a44af commit 855ad35

File tree

2 files changed

+64
-36
lines changed

2 files changed

+64
-36
lines changed

CHANGELOG.org

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,34 @@
22

33
* Unreleased
44

5+
6+
** Updated
7+
- Update library versions using `make outdated`
8+
| :name | :current | :latest |
9+
+--------------------------------------+------------------------------------------+------------------------------------------|
10+
| cider/cider-nrepl | 0.47.1 | 0.49.1 |
11+
| clojurians-zulip/feeds | 4bf8109afc5cd5ab2f409151d4dd583644028b4a | d7e9deaec0b492998e20dee7735e0ad31d83e246 |
12+
| com.github.flow-storm/flow-storm-dbg | 3.15.5 | 3.16.0 |
13+
| com.github.seancorfield/next.jdbc | 1.3.925 | 1.3.939 |
14+
| djblue/portal | 0.55.1 | 0.56.0 |
15+
| io.github.nextjournal/clerk | 0.15.957 | 0.16.1016 |
16+
| io.github.seancorfield/deps-new | v0.7.0 | v0.7.1 |
17+
| lambdaisland/kaocha | 1.89.1380 | 1.91.1392 |
18+
| nrepl/nrepl | 1.1.1 | 1.2.0 |
19+
20+
Available changes:
21+
- https://github.com/clj-kondo/clj-kondo/blob/v2024.05.24/CHANGELOG.md
22+
- https://github.com/greglook/cljstyle/blob/0.16.626/CHANGELOG.md
23+
- https://github.com/clojure-emacs/cider-nrepl/blob/v0.49.1/CHANGELOG.md
24+
- https://github.com/seancorfield/next-jdbc/blob/v1.3.939/CHANGELOG.md
25+
- https://github.com/djblue/portal/blob/0.56.0/CHANGELOG.md
26+
- https://github.com/nextjournal/clerk/blob/v0.16.1016/CHANGELOG.md
27+
- https://github.com/seancorfield/deps-new/blob/v0.7.1/CHANGELOG.md
28+
- https://github.com/lambdaisland/kaocha/blob/v1.91.1392/CHANGELOG.md
29+
- https://github.com/nrepl/nrepl/blob/v1.2.0/CHANGELOG.md
30+
31+
32+
533
2024-05-07
634
** Added
735
- dev: add `deps-deprecated.edn` to cljstyle `:ignore` rule

deps.edn

Lines changed: 36 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -63,20 +63,20 @@
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.55.1"} ; portal data inspector
66+
:extra-deps {djblue/portal {:mvn/version "0.56.0"} ; portal data inspector
6767
clj-commons/clj-yaml {:mvn/version "1.0.27"} ; portal yaml support (optional)
6868
org.clojure/tools.namespace {:mvn/version "1.5.0"}
6969
org.clojure/tools.trace {:mvn/version "0.8.0"}
7070
org.slf4j/slf4j-nop {:mvn/version "2.0.13"}
7171
com.brunobonacci/mulog {:mvn/version "0.9.0"}
72-
lambdaisland/kaocha {:mvn/version "1.89.1380"}
72+
lambdaisland/kaocha {:mvn/version "1.91.1392"}
7373
org.clojure/test.check {:mvn/version "1.1.1"}
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.55.1"} ; portal data inspector
79+
:extra-deps {djblue/portal {:mvn/version "0.56.0"} ; portal data inspector
8080
org.clojure/clojurescript {:mvn/version "1.10.844"}
8181
lambdaisland/kaocha-cljs {:mvn/version "1.5.154"}
8282
org.clojure/test.check {:mvn/version "1.1.1"}}}
@@ -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.1.1"}
113-
cider/cider-nrepl {:mvn/version "0.47.1"}}
112+
{:extra-deps {nrepl/nrepl {:mvn/version "1.2.0"}
113+
cider/cider-nrepl {:mvn/version "0.49.1"}}
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.1.1"}
121-
cider/cider-nrepl {:mvn/version "0.47.1"}}
120+
{:extra-deps {nrepl/nrepl {:mvn/version "1.2.0"}
121+
cider/cider-nrepl {:mvn/version "0.49.1"}}
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.1.1"}
129-
cider/cider-nrepl {:mvn/version "0.47.1"}
130-
djblue/portal {:mvn/version "0.55.1"}}
128+
{nrepl/nrepl {:mvn/version "1.2.0"}
129+
cider/cider-nrepl {:mvn/version "0.49.1"}
130+
djblue/portal {:mvn/version "0.56.0"}}
131131
:main-opts ["--main" "nrepl.cmdline"
132132
"--middleware"
133133
"[cider.nrepl/cider-middleware,portal.nrepl/wrap-portal]"]}
@@ -137,9 +137,9 @@
137137
;; Alpha stage alias design - may change
138138
;; clojure -M:repl/clerk
139139
:repl/clerk
140-
{:extra-deps {io.github.nextjournal/clerk {:mvn/version "0.15.957"}
141-
nrepl/nrepl {:mvn/version "1.1.1"}
142-
cider/cider-nrepl {:mvn/version "0.47.1"}
140+
{:extra-deps {io.github.nextjournal/clerk {:mvn/version "0.16.1016"}
141+
nrepl/nrepl {:mvn/version "1.2.0"}
142+
cider/cider-nrepl {:mvn/version "0.49.1"}
143143
refactor-nrepl/refactor-nrepl {:mvn/version "3.10.0"}}
144144
:main-opts ["--eval" "(require '[nextjournal.clerk])(nextjournal.clerk/show! 'nextjournal.clerk.tap)(nextjournal.clerk/serve! {:browse? true})"
145145
"-m" "nrepl.cmdline"
@@ -157,8 +157,8 @@
157157

158158
;; clojure -M:repl/rebel
159159
:repl/rebel
160-
{:extra-deps {nrepl/nrepl {:mvn/version "1.1.1"}
161-
cider/cider-nrepl {:mvn/version "0.47.1"}
160+
{:extra-deps {nrepl/nrepl {:mvn/version "1.2.0"}
161+
cider/cider-nrepl {:mvn/version "0.49.1"}
162162
com.bhauman/rebel-readline {:mvn/version "0.1.4"}}
163163
:main-opts ["--eval" "(apply require clojure.main/repl-requires)"
164164
"--main" "nrepl.cmdline"
@@ -173,16 +173,16 @@
173173
;; clojure -M:repl/reloaded
174174
:repl/reloaded
175175
{:extra-paths ["dev" "test"]
176-
:extra-deps {nrepl/nrepl {:mvn/version "1.1.1"}
177-
cider/cider-nrepl {:mvn/version "0.47.1"}
176+
:extra-deps {nrepl/nrepl {:mvn/version "1.2.0"}
177+
cider/cider-nrepl {:mvn/version "0.49.1"}
178178
com.bhauman/rebel-readline {:mvn/version "0.1.4"}
179-
djblue/portal {:mvn/version "0.55.1"} ; portal data inspector
179+
djblue/portal {:mvn/version "0.56.0"} ; portal data inspector
180180
clj-commons/clj-yaml {:mvn/version "1.0.27"} ; portal yaml support (optional)
181181
org.clojure/tools.namespace {:mvn/version "1.5.0"}
182182
org.clojure/tools.trace {:mvn/version "0.8.0"}
183183
org.slf4j/slf4j-nop {:mvn/version "2.0.13"}
184184
com.brunobonacci/mulog {:mvn/version "0.9.0"}
185-
lambdaisland/kaocha {:mvn/version "1.89.1380"}
185+
lambdaisland/kaocha {:mvn/version "1.91.1392"}
186186
org.clojure/test.check {:mvn/version "1.1.1"}
187187
ring/ring-mock {:mvn/version "0.4.0"}
188188
criterium/criterium {:mvn/version "0.4.6"}}
@@ -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.1.1"}}
207+
{:extra-deps {nrepl/nrepl {:mvn/version "1.2.0"}}
208208
:main-opts ["--main" "nrepl.cmdline" "--connect"]}
209209

210210
;; ---------------------------------------------------
@@ -227,7 +227,7 @@
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.7.0" :git/sha "58f2c19"}
230+
{:git/tag "v0.7.1" :git/sha "c1e42aa"}
231231
io.github.practicalli/project-templates
232232
{:git/tag "2024-04-20" :git/sha "7b3832b"}}
233233
:exec-fn org.corfield.new/create
@@ -237,7 +237,7 @@
237237
;; Local testing of Practicalli Project Templates
238238
:project/create-local
239239
{:replace-deps {io.github.seancorfield/deps-new
240-
{:git/tag "v0.7.0" :git/sha "58f2c19"}
240+
{:git/tag "v0.7.1" :git/sha "c1e42aa"}
241241
practicalli/project-templates
242242
{:local/root "/home/practicalli/projects/practicalli/project-templates/"}}
243243
:exec-fn org.corfield.new/create
@@ -453,13 +453,13 @@
453453
;; Databases and drivers uses only during development
454454

455455
:lib/next.jdbc
456-
{:extra-deps {com.github.seancorfield/next.jdbc {:mvn/version "1.3.925"}}}
456+
{:extra-deps {com.github.seancorfield/next.jdbc {:mvn/version "1.3.939"}}}
457457

458458
;; H2 embedded database
459459
:database/h2
460460
{:extra-deps
461461
{com.h2database/h2 {:mvn/version "2.2.224"}
462-
com.github.seancorfield/next.jdbc {:mvn/version "1.3.925"}}}
462+
com.github.seancorfield/next.jdbc {:mvn/version "1.3.939"}}}
463463
;; ---------------------------------------------------
464464

465465
;; ---------------------------------------------------
@@ -469,7 +469,7 @@
469469
;; https://github.com/nextjournal/clerk
470470
;; Alias can be used as an optional library for projects or REPL workflow
471471
:lib/clerk
472-
{:extra-deps {io.github.nextjournal/clerk {:mvn/version "0.15.957"}}}
472+
{:extra-deps {io.github.nextjournal/clerk {:mvn/version "0.16.1016"}}}
473473
;; ---------------------------------------------------
474474

475475
;; ---------------------------------------------------
@@ -480,15 +480,15 @@
480480
;; https://github.com/djblue/portal
481481

482482
:inspect/portal-cli
483-
{:extra-deps {djblue/portal {:mvn/version "0.55.1"}}}
483+
{:extra-deps {djblue/portal {:mvn/version "0.56.0"}}}
484484

485485
:inspect/portal-web
486-
{:extra-deps {djblue/portal {:mvn/version "0.55.1"}
486+
{:extra-deps {djblue/portal {:mvn/version "0.56.0"}
487487
org.clojure/clojurescript {:mvn/version "1.11.60"}}
488488
:main-opts ["--main" "cljs.main"]}
489489

490490
:inspect/portal-node
491-
{:extra-deps {djblue/portal {:mvn/version "0.55.1"}
491+
{:extra-deps {djblue/portal {:mvn/version "0.56.0"}
492492
org.clojure/clojurescript {:mvn/version "1.11.60"}}
493493
:main-opts ["--main" "cljs.main" "-re" "node"]}
494494

@@ -504,15 +504,15 @@
504504
;; Flowstorm, a tracing debugger
505505
;; https://github.com/jpmonettas/flow-storm-debugger
506506
:lib/flowstorm
507-
{:extra-deps {com.github.flow-storm/flow-storm-dbg {:mvn/version "3.15.5"}}}
507+
{:extra-deps {com.github.flow-storm/flow-storm-dbg {:mvn/version "3.16.0"}}}
508508

509509
;; This is the simplest way to use FlowStorm.
510510
;; It replaces the Clojure compiler with a patched one that instruments everything.
511511
;; https://flow-storm.github.io/flow-storm-debugger/user_guide.html#_clojurestorm
512512
:lib/clojurestorm
513513
{:classpath-overrides {org.clojure/clojure nil}
514514
:extra-deps {com.github.flow-storm/clojure {:mvn/version "1.11.3-1"}
515-
com.github.flow-storm/flow-storm-dbg {:mvn/version "3.15.5"}}
515+
com.github.flow-storm/flow-storm-dbg {:mvn/version "3.16.0"}}
516516
;; You can optionally add another jvm-opt to restrict the instrumentation:
517517
;; -Dclojure.storm.instrumentOnlyPrefixes=YOUR_INSTRUMENTATION_STRING"
518518
:jvm-opts ["-Dclojure.storm.instrumentEnable=true"]}
@@ -572,15 +572,15 @@
572572
;; - `:fail-fast? false` argument to run all tests
573573
:test/run
574574
{:extra-paths ["test"]
575-
:extra-deps {lambdaisland/kaocha {:mvn/version "1.89.1380"}}
575+
:extra-deps {lambdaisland/kaocha {:mvn/version "1.91.1392"}}
576576
:main-opts ["--main" "kaocha.runner"]
577577
:exec-fn kaocha.runner/exec-fn
578578
:exec-args {:randomize? false
579579
:fail-fast? true}}
580580

581581
:test/run-all
582582
{:extra-paths ["test"]
583-
:extra-deps {lambdaisland/kaocha {:mvn/version "1.89.1380"}}
583+
:extra-deps {lambdaisland/kaocha {:mvn/version "1.91.1392"}}
584584
:main-opts ["--main" "kaocha.runner"]
585585
:exec-fn kaocha.runner/exec-fn
586586
:exec-args {:randomize? false
@@ -591,7 +591,7 @@
591591
;; - `:fail-fast? false` argument to run all tests
592592
:test/watch
593593
{:extra-paths ["test"]
594-
:extra-deps {lambdaisland/kaocha {:mvn/version "1.89.1380"}}
594+
:extra-deps {lambdaisland/kaocha {:mvn/version "1.91.1392"}}
595595
:main-opts ["--main" "kaocha.runner" "--watch" "--fail-fast" "--skip-meta" ":slow"]
596596
:exec-fn kaocha.runner/exec-fn
597597
:exec-args {:watch? true
@@ -600,14 +600,14 @@
600600

601601
:test/cljs
602602
{:extra-paths ["test"]
603-
:extra-deps {lambdaisland/kaocha {:mvn/version "1.89.1380"}
603+
:extra-deps {lambdaisland/kaocha {:mvn/version "1.91.1392"}
604604
lambdaisland/kaocha-cljs {:mvn/version "1.5.154"}}
605605
:main-opts ["--main" "kaocha.runner" "unit-cljs"]}
606606

607607
;; https://github.com/lambdaisland/kaocha-cucumbe
608608
;; - used for kaocha-runner.el to run Kaocha test runner in Emacs Cider
609609
:lib/kaocha
610-
{:extra-deps {lambdaisland/kaocha {:mvn/version "1.89.1380"}}}
610+
{:extra-deps {lambdaisland/kaocha {:mvn/version "1.91.1392"}}}
611611
;; ---------------------------------------------------
612612

613613
;; ---------------------------------------------------
@@ -719,7 +719,7 @@
719719
{:replace-paths []
720720
:replace-deps {clojurians-zulip/feeds
721721
{:git/url "https://gitlab.com/clojurians-zulip/feeds.git"
722-
:sha "4bf8109afc5cd5ab2f409151d4dd583644028b4a"}}
722+
:sha "d7e9deaec0b492998e20dee7735e0ad31d83e246"}}
723723
:main-opts ["--main" "inclined.main"
724724
"--ns" "clojurians-zulip.events" "--"]}
725725
;; ---------------------------------------------------

0 commit comments

Comments
 (0)