Skip to content

Commit 320e19a

Browse files
aliases: update library versions using make dependencies-update
| :name | :current | :latest | |--------------------------------------|------------------------------------------|------------------------------------------| | clojurians-zulip/feeds | d7e9deaec0b492998e20dee7735e0ad31d83e246 | 39c07aefe1903685d9d43492cda4ad2eb34cf51c | | com.github.flow-storm/clojure | 1.12.2 | 1.12.3-1 | | com.github.flow-storm/flow-storm-dbg | 4.5.3 | 4.5.7 | | com.github.seancorfield/next.jdbc | 1.3.1048 | 1.3.1070 | | com.h2database/h2 | 2.3.232 | 2.4.240 | | integrant/repl | 0.4.0 | 0.5.0 | | lambdaisland/kaocha-cljs | 1.5.154 | 1.8.163 |
1 parent 826d2a3 commit 320e19a

File tree

2 files changed

+22
-10
lines changed

2 files changed

+22
-10
lines changed

CHANGELOG.org

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,18 @@
33
* Unreleased
44
** Updated
55
- dev: update github actions to latest versions
6+
- aliases: update library versions using `make dependencies-update`
7+
8+
| :name | :current | :latest |
9+
|--------------------------------------|------------------------------------------|------------------------------------------|
10+
| clojurians-zulip/feeds | d7e9deaec0b492998e20dee7735e0ad31d83e246 | 39c07aefe1903685d9d43492cda4ad2eb34cf51c |
11+
| com.github.flow-storm/clojure | 1.12.2 | 1.12.3-1 |
12+
| com.github.flow-storm/flow-storm-dbg | 4.5.3 | 4.5.7 |
13+
| com.github.seancorfield/next.jdbc | 1.3.1048 | 1.3.1070 |
14+
| com.h2database/h2 | 2.3.232 | 2.4.240 |
15+
| integrant/repl | 0.4.0 | 0.5.0 |
16+
| lambdaisland/kaocha-cljs | 1.5.154 | 1.8.163 |
17+
618

719
* 2025-09-03
820
** Added

deps.edn

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@
7878
{:extra-paths ["dev" "test"]
7979
:extra-deps {djblue/portal {:mvn/version "0.61.0"} ; portal data inspector
8080
org.clojure/clojurescript {:mvn/version "1.10.844"}
81-
lambdaisland/kaocha-cljs {:mvn/version "1.5.154"}
81+
lambdaisland/kaocha-cljs {:mvn/version "1.8.163"}
8282
org.clojure/test.check {:mvn/version "1.1.1"}}}
8383

8484
;; DEPRECATED
@@ -97,7 +97,7 @@
9797

9898
;; Component REPL libraries
9999
:lib/integrant-repl
100-
{:extra-deps {integrant/repl {:mvn/version "0.4.0"}}}
100+
{:extra-deps {integrant/repl {:mvn/version "0.5.0"}}}
101101

102102
:lib/component-repl
103103
{:extra-deps {com.stuartsierra/component.repl {:mvn/version "1.0.0"}}}
@@ -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.1048"}}}
496+
{:extra-deps {com.github.seancorfield/next.jdbc {:mvn/version "1.3.1070"}}}
497497

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

505505
;; ---------------------------------------------------
@@ -544,15 +544,15 @@
544544
;; Flowstorm, a tracing debugger
545545
;; https://github.com/jpmonettas/flow-storm-debugger
546546
:lib/flowstorm
547-
{:extra-deps {com.github.flow-storm/flow-storm-dbg {:mvn/version "4.5.3"}}}
547+
{:extra-deps {com.github.flow-storm/flow-storm-dbg {:mvn/version "4.5.7"}}}
548548

549549
;; Suggested FlowStorm approach.
550550
;; Use patched Clojure compiler which instruments all evaluations
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.2"}
555-
com.github.flow-storm/flow-storm-dbg {:mvn/version "4.5.3"}}
554+
:extra-deps {com.github.flow-storm/clojure {:mvn/version "1.12.3-1"}
555+
com.github.flow-storm/flow-storm-dbg {:mvn/version "4.5.7"}}
556556
;; Optionally add jvm-opt to manage instrumentation:
557557
;; -Dclojure.storm.instrumentOnlyPrefixes=YOUR_INSTRUMENTATION_STRING"
558558
:jvm-opts ["-Dclojure.storm.instrumentEnable=true"]}
@@ -641,7 +641,7 @@
641641
:test/cljs
642642
{:extra-paths ["test"]
643643
:extra-deps {lambdaisland/kaocha {:mvn/version "1.91.1392"}
644-
lambdaisland/kaocha-cljs {:mvn/version "1.5.154"}}
644+
lambdaisland/kaocha-cljs {:mvn/version "1.8.163"}}
645645
:main-opts ["--main" "kaocha.runner" "unit-cljs"]}
646646

647647
;; https://github.com/lambdaisland/kaocha-cucumbe
@@ -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 "d7e9deaec0b492998e20dee7735e0ad31d83e246"}}
762+
:sha "39c07aefe1903685d9d43492cda4ad2eb34cf51c"}}
763763
:main-opts ["--main" "inclined.main"
764764
"--ns" "clojurians-zulip.events" "--"]}
765765
;; ---------------------------------------------------

0 commit comments

Comments
 (0)