Skip to content

Commit 4ee10d0

Browse files
template: update library dependency versions
Update versions of clojure, reitit, http-kit, tools.build libraries Use Maven release for tools.build library (easier to update with antq)
1 parent 0f2885b commit 4ee10d0

File tree

11 files changed

+27
-31
lines changed

11 files changed

+27
-31
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ All notable changes to this project will be documented in this file. This change
66
## Added
77
- dev: outdated Makefile task to identify newer library versions using antq
88
- dev: updated library versions for `quality-checks.yaml` GitHub workflows
9+
- templates: update library dependency versions, clojure, reitit, http-kit, tools.build
910

1011
# 2024-04-20
1112
## Changed

deps.edn

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{:paths ["src" "resources"]
22

33
:deps
4-
{org.clojure/clojure {:mvn/version "1.11.1"}}
4+
{org.clojure/clojure {:mvn/version "1.11.3"}}
55

66
:aliases
77
{;; Add libraries and paths to support additional test tools
@@ -10,13 +10,13 @@
1010
:extra-deps {org.clojure/test.check {:mvn/version "1.1.1"}
1111
;; https://github.com/seancorfield/deps-new/
1212
io.github.seancorfield/deps-new
13-
{:git/tag "v0.6.0" :git/sha "64e79d1"}}}
13+
{:git/tag "v0.7.1" :git/sha "c1e42aa"}}}
1414

1515
;; Test runner - local and CI
1616
;; call with `:watch? true` argument to start file watcher and re-run tests on saved changes
1717
:test/run
1818
{:extra-paths ["test"]
19-
:extra-deps {lambdaisland/kaocha {:mvn/version "1.87.1366"}}
19+
:extra-deps {lambdaisland/kaocha {:mvn/version "1.91.1392"}}
2020
:main-opts ["-m" "kaocha.runner"]
2121
:exec-fn kaocha.runner/exec-fn
2222
:exec-args {:randomize? false

resources/practicalli/application/build/deps.edn.template

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
;; call with :watch? true to start file watcher and re-run tests on saved changes
3030
:test/run
3131
{:extra-paths ["test"]
32-
:extra-deps {lambdaisland/kaocha {:mvn/version "1.87.1366"}}
32+
:extra-deps {lambdaisland/kaocha {:mvn/version "1.91.1392"}}
3333
:main-opts ["-m" "kaocha.runner"]
3434
:exec-fn kaocha.runner/exec-fn
3535
:exec-args {:randomize? false
@@ -38,6 +38,5 @@
3838
;; tools.build `build.clj` built script
3939
:build
4040
{:replace-paths ["."]
41-
:replace-deps {io.github.clojure/tools.build
42-
{:git/tag "v0.9.4" :git/sha "76b78fe"}}
41+
:replace-deps {io.github.clojure/tools.build {:mvn/version "0.10.3"}}
4342
:ns-default build}}}

resources/practicalli/application/template.edn

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
;; ---------------------------------------------------------
55
;; Version substitutions
66

7-
:clojure-version "1.11.2"
7+
:clojure-version "1.11.3"
88
;; ---------------------------------------------------------
99

1010
;; ---------------------------------------------------------

resources/practicalli/landing_page/template.edn

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
;; ---------------------------------------------------------
55
;; Version substitutions
66

7-
:clojure-version "1.11.1"
7+
:clojure-version "1.11.3"
88
;; ---------------------------------------------------------
99

1010
;; ---------------------------------------------------------

resources/practicalli/minimal/build/deps.edn.template

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
;; call with :watch? true to start file watcher and re-run tests on saved changes
3333
:test/run
3434
{:extra-paths ["test"]
35-
:extra-deps {lambdaisland/kaocha {:mvn/version "1.87.1366"}}
35+
:extra-deps {lambdaisland/kaocha {:mvn/version "1.91.1392"}}
3636
:main-opts ["-m" "kaocha.runner"]
3737
:exec-fn kaocha.runner/exec-fn
3838
:exec-args {:randomize? false
@@ -43,8 +43,7 @@
4343
;; tools.build `build.clj` built script
4444
:build/task
4545
{:replace-paths ["."]
46-
:replace-deps {io.github.clojure/tools.build
47-
{:git/tag "v0.10.0" :git/sha "3a2c484"}}
46+
:replace-deps {io.github.clojure/tools.build {:mvn/version "0.10.3"}}
4847
:ns-default build}}}
4948
;; ------------
5049
;; ---------------------------------------------------------

resources/practicalli/minimal/template.edn

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
;; ---------------------------------------------------------
55
;; Version substitutions
66

7-
:clojure-version "1.11.2"
7+
:clojure-version "1.11.3"
88
;; ---------------------------------------------------------
99

1010
;; ---------------------------------------------------------

resources/practicalli/service/build/deps.edn.template

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
;; ---------------------------------------------------------
77
:deps
88
{;; Service
9-
http-kit/http-kit {:mvn/version "2.6.0"} ; latest "2.7.0-alpha1"
10-
metosin/reitit {:mvn/version "0.5.13"}
11-
metosin/reitit-dev {:mvn/version "0.5.18"} ; human readable exceptions
9+
http-kit/http-kit {:mvn/version "2.8.0"}
10+
metosin/reitit {:mvn/version "0.7.0"}
11+
metosin/reitit-dev {:mvn/version "0.7.0"} ; human readable exceptions
1212

1313
;; Logging
1414
;; create events and send to publisher
@@ -44,7 +44,7 @@
4444
;; call with :watch? true to start file watcher and re-run tests on saved changes
4545
:test/run
4646
{:extra-paths ["test"]
47-
:extra-deps {lambdaisland/kaocha {:mvn/version "1.87.1366"}}
47+
:extra-deps {lambdaisland/kaocha {:mvn/version "1.91.1392"}}
4848
:main-opts ["-m" "kaocha.runner"]
4949
:exec-fn kaocha.runner/exec-fn
5050
:exec-args {:randomize? false
@@ -55,8 +55,7 @@
5555
;; tools.build `build.clj` built script
5656
:build/task
5757
{:replace-paths ["."]
58-
:replace-deps {io.github.clojure/tools.build
59-
{:git/tag "v0.10.0" :git/sha "3a2c484"}}
58+
:replace-deps {io.github.clojure/tools.build {:mvn/version "0.10.3"}}
6059
:ns-default build}}}
6160
;; ------------
6261
;; ---------------------------------------------------------

resources/practicalli/service/build/deps_donut.edn.template

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
;; ---------------------------------------------------------
77
:deps
88
{;; Service
9-
http-kit/http-kit {:mvn/version "2.6.0"} ; latest "2.7.0-alpha1"
10-
metosin/reitit {:mvn/version "0.5.13"}
11-
metosin/reitit-dev {:mvn/version "0.5.18"} ; human readable exceptions
9+
http-kit/http-kit {:mvn/version "2.8.0"} ; latest "2.7.0-alpha1"
10+
metosin/reitit {:mvn/version "0.7.0"}
11+
metosin/reitit-dev {:mvn/version "0.7.0"} ; human readable exceptions
1212

1313
;; Logging
1414
;; create events and send to publisher
@@ -46,7 +46,7 @@
4646
;; call with :watch? true to start file watcher and re-run tests on saved changes
4747
:test/run
4848
{:extra-paths ["test"]
49-
:extra-deps {lambdaisland/kaocha {:mvn/version "1.87.1366"}}
49+
:extra-deps {lambdaisland/kaocha {:mvn/version "1.91.1392"}}
5050
:main-opts ["-m" "kaocha.runner"]
5151
:exec-fn kaocha.runner/exec-fn
5252
:exec-args {:randomize? false
@@ -57,8 +57,7 @@
5757
;; tools.build `build.clj` built script
5858
:build/task
5959
{:replace-paths ["."]
60-
:replace-deps {io.github.clojure/tools.build
61-
{:git/tag "v0.10.0" :git/sha "3a2c484"}}
60+
:replace-deps {io.github.clojure/tools.build {:mvn/version "0.10.3"}}
6261
:ns-default build}}}
6362
;; ------------
6463
;; ---------------------------------------------------------

resources/practicalli/service/build/deps_integrant.edn.template

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
;; ---------------------------------------------------------
77
:deps
88
{;; Service
9-
http-kit/http-kit {:mvn/version "2.6.0"} ; latest "2.7.0-alpha1"
10-
metosin/reitit {:mvn/version "0.5.13"}
11-
metosin/reitit-dev {:mvn/version "0.5.18"} ; human readable exceptions
9+
http-kit/http-kit {:mvn/version "2.8.0"} ; latest "2.7.0-alpha1"
10+
metosin/reitit {:mvn/version "0.7.0"}
11+
metosin/reitit-dev {:mvn/version "0.7.0"} ; human readable exceptions
1212

1313
;; Logging
1414
;; create events and send to publisher
@@ -47,7 +47,7 @@
4747
;; call with :watch? true to start file watcher and re-run tests on saved changes
4848
:test/run
4949
{:extra-paths ["test"]
50-
:extra-deps {lambdaisland/kaocha {:mvn/version "1.87.1366"}}
50+
:extra-deps {lambdaisland/kaocha {:mvn/version "1.91.1392"}}
5151
:main-opts ["-m" "kaocha.runner"]
5252
:exec-fn kaocha.runner/exec-fn
5353
:exec-args {:randomize? false
@@ -58,8 +58,7 @@
5858
;; tools.build `build.clj` built script
5959
:build/task
6060
{:replace-paths ["."]
61-
:replace-deps {io.github.clojure/tools.build
62-
{:git/tag "v0.10.0" :git/sha "3a2c484"}}
61+
:replace-deps {io.github.clojure/tools.build {:mvn/version "0.10.3"}}
6362
:ns-default build}}}
6463
;; ------------
6564
;; ---------------------------------------------------------

0 commit comments

Comments
 (0)