Skip to content

Commit 9fb0b72

Browse files
committed
Update dependencies
1 parent 89c0593 commit 9fb0b72

File tree

4 files changed

+40
-29
lines changed

4 files changed

+40
-29
lines changed

CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,18 @@ We use [Break Versioning][breakver]. The version numbers follow a `<major>.<mino
1616

1717
* **BREAKING**: throw error if `:responses` keys are not integers [#667](https://github.com/metosin/reitit/issues/667)
1818
* Add `:index-redirect?` option to `create-file-handler` and `create-resource-handler` to allow serving index files without redirect [#725](https://github.com/metosin/reitit/pull/725)
19+
* Changes in 0.8.0-alpha1
20+
* Updated dependencies:
21+
22+
```
23+
[fipp "0.6.27"] is available but we use "0.6.26"
24+
[metosin/jsonista "0.3.13"] is available but we use "0.3.10"
25+
[metosin/malli "0.17.0"] is available but we use "0.16.4"
26+
[metosin/muuntaja "0.6.11"] is available but we use "0.6.10"
27+
[metosin/ring-swagger-ui "5.20.0"] is available but we use "5.9.0"
28+
[ring/ring-core "1.14.0"] is available but we use "1.12.2"
29+
[ring/ring-defaults "0.6.0"] is available but we use "0.5.0"
30+
```
1931

2032
## 0.8.0-alpha1 (2025-01-31)
2133

package-lock.json

+4-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@
99
"karma-cljs-test": "^0.1.0"
1010
},
1111
"dependencies": {
12-
"shadow-cljs": "^2.28.20"
12+
"shadow-cljs": "^2.28.22"
1313
}
1414
}

project.clj

+23-24
Original file line numberDiff line numberDiff line change
@@ -33,27 +33,27 @@
3333
[metosin/reitit-frontend "0.8.0-alpha1"]
3434
[metosin/reitit-sieppari "0.8.0-alpha1"]
3535
[metosin/reitit-pedestal "0.8.0-alpha1"]
36-
[metosin/ring-swagger-ui "5.9.0"]
36+
[metosin/ring-swagger-ui "5.20.0"]
3737
[metosin/spec-tools "0.10.7"]
3838
[metosin/schema-tools "0.13.1"]
39-
[metosin/muuntaja "0.6.10"]
40-
[metosin/jsonista "0.3.10"]
39+
[metosin/muuntaja "0.6.11"]
40+
[metosin/jsonista "0.3.13"]
4141
[metosin/sieppari "0.0.0-alpha13"]
42-
[metosin/malli "0.16.4"]
42+
[metosin/malli "0.17.0"]
4343

4444
;; https://clojureverse.org/t/depending-on-the-right-versions-of-jackson-libraries/5111
45-
[com.fasterxml.jackson.core/jackson-core "2.17.2"]
46-
[com.fasterxml.jackson.core/jackson-databind "2.17.2"]
45+
[com.fasterxml.jackson.core/jackson-core "2.18.2"]
46+
[com.fasterxml.jackson.core/jackson-databind "2.18.2"]
4747

4848
[meta-merge "1.0.0"]
49-
[fipp "0.6.26" :exclusions [org.clojure/core.rrb-vector]]
49+
[fipp "0.6.27" :exclusions [org.clojure/core.rrb-vector]]
5050
;; Deep-diff uses this version, override olders versiom from fipp.
5151
[org.clojure/core.rrb-vector "0.2.0"]
5252
[expound "0.9.0"]
5353
[lambdaisland/deep-diff "0.0-47"]
5454
[com.bhauman/spell-spec "0.1.2"]
5555
[mvxcvi/arrangement "2.1.0"]
56-
[ring/ring-core "1.12.2"]
56+
[ring/ring-core "1.14.0"]
5757

5858
[io.pedestal/pedestal.service "0.6.4"]]
5959

@@ -88,29 +88,29 @@
8888

8989
:java-source-paths ["modules/reitit-core/java-src"]
9090

91-
:dependencies [[org.clojure/clojure "1.11.4"]
92-
[thheller/shadow-cljs "2.28.20"]
91+
:dependencies [[org.clojure/clojure "1.12.0"]
92+
[thheller/shadow-cljs "2.28.22"]
9393
[org.clojure/clojurescript "1.11.132"]
9494

9595
;; modules dependencies
9696
[metosin/schema-tools "0.13.1"]
9797
[metosin/spec-tools "0.10.7"]
98-
[metosin/muuntaja "0.6.10"]
98+
[metosin/muuntaja "0.6.11"]
9999
[metosin/sieppari "0.0.0-alpha13"]
100-
[metosin/jsonista "0.3.10"]
101-
[metosin/malli "0.16.4"]
100+
[metosin/jsonista "0.3.13"]
101+
[metosin/malli "0.17.0"]
102102
[lambdaisland/deep-diff "0.0-47"]
103103
[meta-merge "1.0.0"]
104104
[com.bhauman/spell-spec "0.1.2"]
105105
[expound "0.9.0"]
106-
[fipp "0.6.26"]
106+
[fipp "0.6.27"]
107107

108108
[orchestra "2021.01.01-1"]
109109

110-
[ring "1.12.2"]
110+
[ring "1.14.0"]
111111
[ikitommi/immutant-web "3.0.0-alpha1"]
112-
[metosin/ring-http-response "0.9.4"]
113-
[metosin/ring-swagger-ui "5.9.0"]
112+
[metosin/ring-http-response "0.9.5"]
113+
[metosin/ring-swagger-ui "5.20.0"]
114114
[org.clojure/tools.analyzer "1.2.0"]
115115

116116
[criterium "0.4.6"]
@@ -121,32 +121,31 @@
121121

122122
[io.pedestal/pedestal.service "0.6.4"]
123123

124-
[org.clojure/core.async "1.6.681"]
124+
[org.clojure/core.async "1.7.701"]
125125
[manifold "0.4.3"]
126126
[funcool/promesa "11.0.678"]
127127

128-
[com.clojure-goes-fast/clj-async-profiler "1.2.2"]
128+
[com.clojure-goes-fast/clj-async-profiler "1.6.1"]
129129
[ring-cors "0.1.13"]
130130

131-
[com.bhauman/rebel-readline "0.1.4"]]}
131+
[com.bhauman/rebel-readline "0.1.5"]]}
132132
:shadow {:test-paths ["test/cljs"]}
133133
:perf {:jvm-opts ^:replace ["-server"
134134
"-Xmx4096m"
135135
"-Dclojure.compiler.direct-linking=true"]
136136
:test-paths ["perf-test/clj"]
137137
:dependencies [[compojure "1.7.1"]
138-
[ring/ring-defaults "0.5.0"]
138+
[ring/ring-defaults "0.6.0"]
139139
[ikitommi/immutant-web "3.0.0-alpha1"]
140140
[io.pedestal/pedestal.service "0.6.4"]
141141
[io.pedestal/pedestal.jetty "0.6.4"]
142142
[calfpath "0.8.1"]
143-
[org.clojure/core.async "1.6.681"]
143+
[org.clojure/core.async "1.7.701"]
144144
[manifold "0.4.3"]
145145
[funcool/promesa "11.0.678"]
146146
[metosin/sieppari]
147147
[yada "1.2.16"]
148-
[aleph "0.8.1"]
149-
[ring/ring-defaults "0.5.0"]
148+
[aleph "0.8.3"]
150149
[ataraxy "0.4.3"]
151150
[bidi "2.1.6"]
152151
[janus "1.3.2"]]}

0 commit comments

Comments
 (0)