Skip to content

Commit 0ab6645

Browse files
version: update from antq report
1 parent c7bd4de commit 0ab6645

File tree

2 files changed

+21
-10
lines changed

2 files changed

+21
-10
lines changed

CHANGELOG.org

+11
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,16 @@
66
* 2023-05-09
77
** Updated
88
*** ci: weekly schedule version check, exclude tools deps alpha
9+
*** Update library versions using `clojure -T:search/outdated`
10+
11+
| :name | :current | :latest |
12+
|---------------------------------+-----------+-----------|
13+
| com.github.liquidz/antq | 2.4.1062 | 2.4.1070 |
14+
| io.aviso/pretty | 1.4 | 1.4.2 |
15+
| io.github.seancorfield/deps-new | v0.5.1 | v0.5.2 |
16+
| lambdaisland/kaocha | 1.82.1306 | 1.83.1314 |
17+
18+
* 2023-05-03
919
** Added
1020
*** alias: `:lib/component-repl` REPL workflow for Component library
1121
*** alias: `:lib/integrant-repl` REPL workflow for Integrant library
@@ -30,6 +40,7 @@
3040
| com.github.jpmonettas/flow-storm-dbg | 3.4.1 | 3.5.1 |
3141
| com.github.liquidz/antq | 2.3.1043 | 2.4.1062 |
3242

43+
3344
* 2023-04-26
3445
** Added
3546
*** yaml support in portal for `:repl/reloaded` and `:dev/reloaded` aliases

deps.edn

+10-10
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@
9191
org.clojure/tools.trace {:mvn/version "0.7.11"}
9292
org.slf4j/slf4j-nop {:mvn/version "2.0.7"}
9393
com.brunobonacci/mulog {:mvn/version "0.9.0"}
94-
lambdaisland/kaocha {:mvn/version "1.82.1306"}
94+
lambdaisland/kaocha {:mvn/version "1.83.1314"}
9595
org.clojure/test.check {:mvn/version "1.1.1"}
9696
ring/ring-mock {:mvn/version "0.4.0"}
9797
criterium/criterium {:mvn/version "0.4.6"}}}
@@ -108,7 +108,7 @@
108108
;; Highlight important aspects of error stack trace using ANSI formatting
109109
;; https://github.com/AvisoNovate/pretty
110110
:lib/pretty-errors
111-
{:extra-deps {io.aviso/pretty {:mvn/version "1.4"}}}
111+
{:extra-deps {io.aviso/pretty {:mvn/version "1.4.2"}}}
112112

113113
;; A CLI to add common aliases and features to deps.edn-based projects.
114114
;; DEPRECATED
@@ -204,7 +204,7 @@
204204
org.clojure/tools.trace {:mvn/version "0.7.11"}
205205
org.slf4j/slf4j-nop {:mvn/version "2.0.7"}
206206
com.brunobonacci/mulog {:mvn/version "0.9.0"}
207-
lambdaisland/kaocha {:mvn/version "1.82.1306"}
207+
lambdaisland/kaocha {:mvn/version "1.83.1314"}
208208
org.clojure/test.check {:mvn/version "1.1.1"}
209209
ring/ring-mock {:mvn/version "0.4.0"}
210210
criterium/criterium {:mvn/version "0.4.6"}}
@@ -286,7 +286,7 @@
286286

287287
:project/create
288288
{:replace-deps {io.github.seancorfield/deps-new
289-
{:git/tag "v0.5.1" :git/sha "21cede2"}
289+
{:git/tag "v0.5.2" :git/sha "253f32a"}
290290
io.github.practicalli/project-templates
291291
{:git/tag "2023.04.25" :git/sha "66713b9"}}
292292
:exec-fn org.corfield.new/create
@@ -295,7 +295,7 @@
295295

296296
:project/create-local
297297
{:replace-deps {io.github.seancorfield/deps-new
298-
{:git/tag "v0.5.1" :git/sha "21cede2"}
298+
{:git/tag "v0.5.2" :git/sha "253f32a"}
299299
practicalli/project-templates
300300
{:local/root "/home/practicalli/projects/practicalli/project-templates/"}}
301301
:exec-fn org.corfield.new/create
@@ -351,7 +351,7 @@
351351
;; cd $XDG_CONFIG_HOME/clojure && clojure -T:search/outdated
352352
:search/outdated
353353
{:replace-paths ["."]
354-
:replace-deps {com.github.liquidz/antq {:mvn/version "2.4.1062"}
354+
:replace-deps {com.github.liquidz/antq {:mvn/version "2.4.1070"}
355355
org.slf4j/slf4j-nop {:mvn/version "2.0.7"}}
356356
:exec-fn antq.tool/outdated
357357
:exec-args {:directory ["."] ; default
@@ -621,7 +621,7 @@
621621
;; clojure -X:test/run :fail-fast true
622622
:test/run
623623
{:extra-paths ["test"]
624-
:extra-deps {lambdaisland/kaocha {:mvn/version "1.82.1306"}}
624+
:extra-deps {lambdaisland/kaocha {:mvn/version "1.83.1314"}}
625625
:main-opts ["--main" "kaocha.runner"]
626626
:exec-fn kaocha.runner/exec-fn
627627
:exec-args {:randomize? false
@@ -631,7 +631,7 @@
631631
;; clojure -X:test/watch
632632
:test/watch
633633
{:extra-paths ["test"]
634-
:extra-deps {lambdaisland/kaocha {:mvn/version "1.82.1306"}}
634+
:extra-deps {lambdaisland/kaocha {:mvn/version "1.83.1314"}}
635635
:main-opts ["--main" "kaocha.runner" "--watch" "--fail-fast" "--skip-meta" ":slow"]
636636
:exec-fn kaocha.runner/exec-fn
637637
:exec-args {:watch? true
@@ -640,14 +640,14 @@
640640

641641
:test/cljs
642642
{:extra-paths ["test"]
643-
:extra-deps {lambdaisland/kaocha {:mvn/version "1.82.1306"}
643+
:extra-deps {lambdaisland/kaocha {:mvn/version "1.83.1314"}
644644
lambdaisland/kaocha-cljs {:mvn/version "1.5.154"}}
645645
:main-opts ["--main" "kaocha.runner" "unit-cljs"]}
646646

647647
;; https://github.com/lambdaisland/kaocha-cucumbe
648648
;; - used for kaocha-runner.el to run Kaocha test runner in Emacs Cider
649649
:lib/kaocha
650-
{:extra-deps {lambdaisland/kaocha {:mvn/version "1.82.1306"}}}
650+
{:extra-deps {lambdaisland/kaocha {:mvn/version "1.83.1314"}}}
651651

652652
;; End of Test runners
653653
;; ---------------------------------------------------

0 commit comments

Comments
 (0)