Skip to content

Commit 3bf7d85

Browse files
aliases: monthly library dependency version update with make outdated
1 parent 491f2ca commit 3bf7d85

File tree

2 files changed

+32
-18
lines changed

2 files changed

+32
-18
lines changed

CHANGELOG.org

+13
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,19 @@
88

99
** Updated
1010
- dev: upload-artifact v4 in megalinter workflow
11+
- Update library versions using `make outdated`
12+
13+
| :name | :current | :latest |
14+
| --- | --- | --- |
15+
| com.github.liquidz/antq | 2.7.1133 | 2.8.1165 |
16+
| com.github.seancorfield/next.jdbc | 1.3.894 | 1.3.909 |
17+
| djblue/portal | 0.49.1 | 0.51.0 |
18+
| io.github.seancorfield/deps-new | v0.5.3 | v0.6.0 |
19+
| mvxcvi/cljstyle | 14c18e5b593c39bc59f10df1b894c31a0020dc49 | e625c17619236949c0f899c66503c408f943fa8f |
20+
| org.slf4j/slf4j-nop | 2.0.9 | 2.0.10 |
21+
| refactor-nrepl/refactor-nrepl | 3.9.0 | 3.9.1 |
22+
23+
1124
* 2023-11-03
1225
** Changed
1326
- alias: `:search/libraries` use `-F:save` to save found libspec to project deps.edn

deps.edn

+19-18
Original file line numberDiff line numberDiff line change
@@ -63,11 +63,11 @@
6363
;; Use with command to start a REPL to include REPL Reloaded tools
6464
:dev/reloaded
6565
{:extra-paths ["dev" "test"]
66-
:extra-deps {djblue/portal {:mvn/version "0.49.1"} ; portal data inspector
66+
:extra-deps {djblue/portal {:mvn/version "0.51.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.4.4"}
6969
org.clojure/tools.trace {:mvn/version "0.7.11"}
70-
org.slf4j/slf4j-nop {:mvn/version "2.0.9"}
70+
org.slf4j/slf4j-nop {:mvn/version "2.0.10"}
7171
com.brunobonacci/mulog {:mvn/version "0.9.0"}
7272
lambdaisland/kaocha {:mvn/version "1.87.1366"}
7373
org.clojure/test.check {:mvn/version "1.1.1"}
@@ -76,7 +76,7 @@
7676
;; ClojureScript tools during REPl startup
7777
:dev/reloaded-cljs
7878
{:extra-paths ["dev" "test"]
79-
:extra-deps {djblue/portal {:mvn/version "0.49.1"} ; portal data inspector
79+
:extra-deps {djblue/portal {:mvn/version "0.51.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"}}}
@@ -127,7 +127,7 @@
127127
{:extra-deps
128128
{nrepl/nrepl {:mvn/version "1.1.0"}
129129
cider/cider-nrepl {:mvn/version "0.44.0"}
130-
djblue/portal {:mvn/version "0.49.1"}}
130+
djblue/portal {:mvn/version "0.51.0"}}
131131
:main-opts ["--main" "nrepl.cmdline"
132132
"--middleware"
133133
"[cider.nrepl/cider-middleware,portal.nrepl/wrap-portal]"]}
@@ -140,7 +140,7 @@
140140
{:extra-deps {io.github.nextjournal/clerk {:mvn/version "0.15.957"}
141141
nrepl/nrepl {:mvn/version "1.1.0"}
142142
cider/cider-nrepl {:mvn/version "0.44.0"}
143-
refactor-nrepl/refactor-nrepl {:mvn/version "3.9.0"}}
143+
refactor-nrepl/refactor-nrepl {:mvn/version "3.9.1"}}
144144
:main-opts ["--eval" "(require '[nextjournal.clerk])(nextjournal.clerk/show! 'nextjournal.clerk.tap)(nextjournal.clerk/serve! {:browse? true})"
145145
"-m" "nrepl.cmdline"
146146
"--middleware" "[refactor-nrepl.middleware/wrap-refactor,cider.nrepl/cider-middleware]"
@@ -174,11 +174,11 @@
174174
:extra-deps {nrepl/nrepl {:mvn/version "1.1.0"}
175175
cider/cider-nrepl {:mvn/version "0.44.0"}
176176
com.bhauman/rebel-readline {:mvn/version "0.1.4"}
177-
djblue/portal {:mvn/version "0.49.1"} ; portal data inspector
177+
djblue/portal {:mvn/version "0.51.0"} ; portal data inspector
178178
clj-commons/clj-yaml {:mvn/version "1.0.27"} ; portal yaml support (optional)
179179
org.clojure/tools.namespace {:mvn/version "1.4.4"}
180180
org.clojure/tools.trace {:mvn/version "0.7.11"}
181-
org.slf4j/slf4j-nop {:mvn/version "2.0.9"}
181+
org.slf4j/slf4j-nop {:mvn/version "2.0.10"}
182182
com.brunobonacci/mulog {:mvn/version "0.9.0"}
183183
lambdaisland/kaocha {:mvn/version "1.87.1366"}
184184
org.clojure/test.check {:mvn/version "1.1.1"}
@@ -225,6 +225,7 @@
225225
;; - deps-new is used by Practicalli Project Templates
226226
;; https://practical.li/clojure/clojure-cli/projects/templates/practicalli/
227227

228+
;; Consider deprecation
228229
:project/new
229230
{:replace-deps {com.github.seancorfield/clj-new {:mvn/version "1.2.404"}}
230231
:exec-fn clj-new/create
@@ -235,7 +236,7 @@
235236
;; clojure -T:project/create :template template/name :name project/name
236237
:project/create
237238
{:replace-deps {io.github.seancorfield/deps-new
238-
{:git/tag "v0.5.3" :git/sha "c899135"}
239+
{:git/tag "0.6.0" :git/sha "64e79d1"}
239240
io.github.practicalli/project-templates
240241
{:git/tag "2023-11-03" :git/sha "684d2f6"}}
241242
:exec-fn org.corfield.new/create
@@ -245,7 +246,7 @@
245246
;; Local testing of Practicalli Project Templates
246247
:project/create-local
247248
{:replace-deps {io.github.seancorfield/deps-new
248-
{:git/tag "v0.5.3" :git/sha "c899135"}
249+
{:git/tag "0.6.0" :git/sha "64e79d1"}
249250
practicalli/project-templates
250251
{:local/root "/home/practicalli/projects/practicalli/project-templates/"}}
251252
:exec-fn org.corfield.new/create
@@ -304,8 +305,8 @@
304305
;; cd $XDG_CONFIG_HOME/clojure && clojure -T:search/outdated
305306
:search/outdated
306307
{:replace-paths ["."]
307-
:replace-deps {com.github.liquidz/antq {:mvn/version "2.7.1133"}
308-
org.slf4j/slf4j-nop {:mvn/version "2.0.9"}}
308+
:replace-deps {com.github.liquidz/antq {:mvn/version "2.8.1165"}
309+
org.slf4j/slf4j-nop {:mvn/version "2.0.10"}}
309310
:exec-fn antq.tool/outdated
310311
:exec-args {:directory ["."] ; default
311312
:exclude ["org.clojure/tools.deps.alpha"
@@ -432,7 +433,7 @@
432433
:format/cljstyle
433434
{:extra-deps
434435
{mvxcvi/cljstyle {:git/url "https://github.com/greglook/cljstyle.git"
435-
:git/sha "14c18e5b593c39bc59f10df1b894c31a0020dc49"}}
436+
:git/sha "e625c17619236949c0f899c66503c408f943fa8f"}}
436437
:main-opts ["--main" "cljstyle.main"
437438
"check"]}
438439

@@ -441,7 +442,7 @@
441442
:format/cljstyle!
442443
{:extra-deps
443444
{mvxcvi/cljstyle {:git/url "https://github.com/greglook/cljstyle.git"
444-
:git/sha "14c18e5b593c39bc59f10df1b894c31a0020dc49"}}
445+
:git/sha "e625c17619236949c0f899c66503c408f943fa8f"}}
445446
:main-opts ["--main" "cljstyle.main"
446447
"fix"]}
447448

@@ -461,13 +462,13 @@
461462
;; Databases and drivers uses only during development
462463

463464
:lib/next.jdbc
464-
{:extra-deps {com.github.seancorfield/next.jdbc {:mvn/version "1.3.894"}}}
465+
{:extra-deps {com.github.seancorfield/next.jdbc {:mvn/version "1.3.909"}}}
465466

466467
;; H2 embedded database
467468
:database/h2
468469
{:extra-deps
469470
{com.h2database/h2 {:mvn/version "2.2.224"}
470-
com.github.seancorfield/next.jdbc {:mvn/version "1.3.894"}}}
471+
com.github.seancorfield/next.jdbc {:mvn/version "1.3.909"}}}
471472
;; ---------------------------------------------------
472473

473474
;; ---------------------------------------------------
@@ -488,15 +489,15 @@
488489
;; https://github.com/djblue/portal
489490

490491
:inspect/portal-cli
491-
{:extra-deps {djblue/portal {:mvn/version "0.49.1"}}}
492+
{:extra-deps {djblue/portal {:mvn/version "0.51.0"}}}
492493

493494
:inspect/portal-web
494-
{:extra-deps {djblue/portal {:mvn/version "0.49.1"}
495+
{:extra-deps {djblue/portal {:mvn/version "0.51.0"}
495496
org.clojure/clojurescript {:mvn/version "1.11.60"}}
496497
:main-opts ["--main" "cljs.main"]}
497498

498499
:inspect/portal-node
499-
{:extra-deps {djblue/portal {:mvn/version "0.49.1"}
500+
{:extra-deps {djblue/portal {:mvn/version "0.51.0"}
500501
org.clojure/clojurescript {:mvn/version "1.11.60"}}
501502
:main-opts ["--main" "cljs.main" "-re" "node"]}
502503

0 commit comments

Comments
 (0)