mirror of
https://github.com/metosin/reitit.git
synced 2025-12-17 00:11:11 +00:00
update deps
This commit is contained in:
parent
07c39fc2df
commit
b7cc420fde
3 changed files with 44 additions and 31 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
|
@ -13,4 +13,4 @@ pom.xml.asc
|
||||||
/_book
|
/_book
|
||||||
figwheel_server.log
|
figwheel_server.log
|
||||||
/.idea
|
/.idea
|
||||||
.clj-kondo/cache
|
.clj-kondo
|
||||||
|
|
|
||||||
13
CHANGELOG.md
13
CHANGELOG.md
|
|
@ -18,6 +18,19 @@ We use [Break Versioning][breakver]. The version numbers follow a `<major>.<mino
|
||||||
|
|
||||||
* Improved Reitit-frontend function docstrings
|
* Improved Reitit-frontend function docstrings
|
||||||
|
|
||||||
|
* Updated deps:
|
||||||
|
|
||||||
|
```clj
|
||||||
|
[metosin/ring-swagger-ui "4.3.0"] is available but we use "3.46.0"
|
||||||
|
[metosin/jsonista "0.3.5"] is available but we use "0.3.3"
|
||||||
|
[metosin/malli "0.8.1"] is available but we use "0.5.1"
|
||||||
|
[com.fasterxml.jackson.core/jackson-core "2.13.1"] is available but we use "2.12.4"
|
||||||
|
[com.fasterxml.jackson.core/jackson-databind "2.13.1"] is available but we use "2.12.4"
|
||||||
|
[fipp "0.6.25"] is available but we use "0.6.24"
|
||||||
|
[expound "0.9.0"] is available but we use "0.8.9"
|
||||||
|
[ring/ring-core "1.9.5"] is available but we use "1.9.4"
|
||||||
|
```
|
||||||
|
|
||||||
## 0.5.15 (2021-08-05)
|
## 0.5.15 (2021-08-05)
|
||||||
|
|
||||||
**[compare](https://github.com/metosin/reitit/compare/0.5.14...0.5.15)**
|
**[compare](https://github.com/metosin/reitit/compare/0.5.14...0.5.15)**
|
||||||
|
|
|
||||||
60
project.clj
60
project.clj
|
|
@ -27,33 +27,33 @@
|
||||||
[metosin/reitit-frontend "0.5.15"]
|
[metosin/reitit-frontend "0.5.15"]
|
||||||
[metosin/reitit-sieppari "0.5.15"]
|
[metosin/reitit-sieppari "0.5.15"]
|
||||||
[metosin/reitit-pedestal "0.5.15"]
|
[metosin/reitit-pedestal "0.5.15"]
|
||||||
[metosin/ring-swagger-ui "3.46.0"]
|
[metosin/ring-swagger-ui "4.3.0"]
|
||||||
[metosin/spec-tools "0.10.5"]
|
[metosin/spec-tools "0.10.5"]
|
||||||
[metosin/schema-tools "0.12.3"]
|
[metosin/schema-tools "0.12.3"]
|
||||||
[metosin/muuntaja "0.6.8"]
|
[metosin/muuntaja "0.6.8"]
|
||||||
[metosin/jsonista "0.3.3"]
|
[metosin/jsonista "0.3.5"]
|
||||||
[metosin/sieppari "0.0.0-alpha13"]
|
[metosin/sieppari "0.0.0-alpha13"]
|
||||||
[metosin/malli "0.5.1"]
|
[metosin/malli "0.8.1"]
|
||||||
|
|
||||||
;; https://clojureverse.org/t/depending-on-the-right-versions-of-jackson-libraries/5111
|
;; https://clojureverse.org/t/depending-on-the-right-versions-of-jackson-libraries/5111
|
||||||
[com.fasterxml.jackson.core/jackson-core "2.12.4"]
|
[com.fasterxml.jackson.core/jackson-core "2.13.1"]
|
||||||
[com.fasterxml.jackson.core/jackson-databind "2.12.4"]
|
[com.fasterxml.jackson.core/jackson-databind "2.13.1"]
|
||||||
|
|
||||||
[meta-merge "1.0.0"]
|
[meta-merge "1.0.0"]
|
||||||
[fipp "0.6.24" :exclusions [org.clojure/core.rrb-vector]]
|
[fipp "0.6.25" :exclusions [org.clojure/core.rrb-vector]]
|
||||||
[expound "0.8.9"]
|
[expound "0.9.0"]
|
||||||
[lambdaisland/deep-diff "0.0-47"]
|
[lambdaisland/deep-diff "0.0-47"]
|
||||||
[com.bhauman/spell-spec "0.1.2"]
|
[com.bhauman/spell-spec "0.1.2"]
|
||||||
[ring/ring-core "1.9.4"]
|
[ring/ring-core "1.9.5"]
|
||||||
|
|
||||||
[io.pedestal/pedestal.service "0.5.9"]]
|
[io.pedestal/pedestal.service "0.5.10"]]
|
||||||
|
|
||||||
:plugins [[jonase/eastwood "0.9.6"]
|
:plugins [[jonase/eastwood "1.2.2"]
|
||||||
;[lein-virgil "0.1.7"]
|
;[lein-virgil "0.1.7"]
|
||||||
[lein-doo "0.1.11"]
|
[lein-doo "0.1.11"]
|
||||||
[lein-cljsbuild "1.1.8"]
|
[lein-cljsbuild "1.1.8"]
|
||||||
[lein-cloverage "1.2.2"]
|
[lein-cloverage "1.2.2"]
|
||||||
[lein-codox "0.10.7"]
|
[lein-codox "0.10.8"]
|
||||||
[metosin/bat-test "0.4.4"]]
|
[metosin/bat-test "0.4.4"]]
|
||||||
|
|
||||||
:profiles {:dev {:jvm-opts ^:replace ["-server"]
|
:profiles {:dev {:jvm-opts ^:replace ["-server"]
|
||||||
|
|
@ -85,31 +85,31 @@
|
||||||
[metosin/spec-tools "0.10.5"]
|
[metosin/spec-tools "0.10.5"]
|
||||||
[metosin/muuntaja "0.6.8"]
|
[metosin/muuntaja "0.6.8"]
|
||||||
[metosin/sieppari "0.0.0-alpha13"]
|
[metosin/sieppari "0.0.0-alpha13"]
|
||||||
[metosin/jsonista "0.3.3"]
|
[metosin/jsonista "0.3.5"]
|
||||||
[metosin/malli "0.5.1"]
|
[metosin/malli "0.8.1"]
|
||||||
[lambdaisland/deep-diff "0.0-47"]
|
[lambdaisland/deep-diff "0.0-47"]
|
||||||
[meta-merge "1.0.0"]
|
[meta-merge "1.0.0"]
|
||||||
[com.bhauman/spell-spec "0.1.2"]
|
[com.bhauman/spell-spec "0.1.2"]
|
||||||
[expound "0.8.9"]
|
[expound "0.9.0"]
|
||||||
[fipp "0.6.24"]
|
[fipp "0.6.25"]
|
||||||
|
|
||||||
[orchestra "2021.01.01-1"]
|
[orchestra "2021.01.01-1"]
|
||||||
|
|
||||||
[ring "1.9.4"]
|
[ring "1.9.5"]
|
||||||
[ikitommi/immutant-web "3.0.0-alpha1"]
|
[ikitommi/immutant-web "3.0.0-alpha1"]
|
||||||
[metosin/ring-http-response "0.9.2"]
|
[metosin/ring-http-response "0.9.3"]
|
||||||
[metosin/ring-swagger-ui "3.46.0"]
|
[metosin/ring-swagger-ui "4.3.0"]
|
||||||
|
|
||||||
[criterium "0.4.6"]
|
[criterium "0.4.6"]
|
||||||
[org.clojure/test.check "1.1.0"]
|
[org.clojure/test.check "1.1.1"]
|
||||||
[org.clojure/tools.namespace "1.1.0"]
|
[org.clojure/tools.namespace "1.2.0"]
|
||||||
[com.gfredericks/test.chuck "0.2.11"]
|
[com.gfredericks/test.chuck "0.2.13"]
|
||||||
|
|
||||||
[io.pedestal/pedestal.service "0.5.9"]
|
[io.pedestal/pedestal.service "0.5.10"]
|
||||||
|
|
||||||
[org.clojure/core.async "1.3.618"]
|
[org.clojure/core.async "1.5.648"]
|
||||||
[manifold "0.1.8"]
|
[manifold "0.2.3"]
|
||||||
[funcool/promesa "6.0.2"]
|
[funcool/promesa "6.1.434"]
|
||||||
|
|
||||||
[com.clojure-goes-fast/clj-async-profiler "0.5.1"]
|
[com.clojure-goes-fast/clj-async-profiler "0.5.1"]
|
||||||
[ring-cors "0.1.13"]
|
[ring-cors "0.1.13"]
|
||||||
|
|
@ -123,12 +123,12 @@
|
||||||
:dependencies [[compojure "1.6.2"]
|
:dependencies [[compojure "1.6.2"]
|
||||||
[ring/ring-defaults "0.3.3"]
|
[ring/ring-defaults "0.3.3"]
|
||||||
[ikitommi/immutant-web "3.0.0-alpha1"]
|
[ikitommi/immutant-web "3.0.0-alpha1"]
|
||||||
[io.pedestal/pedestal.service "0.5.9"]
|
[io.pedestal/pedestal.service "0.5.10"]
|
||||||
[io.pedestal/pedestal.jetty "0.5.9"]
|
[io.pedestal/pedestal.jetty "0.5.10"]
|
||||||
[calfpath "0.8.1"]
|
[calfpath "0.8.1"]
|
||||||
[org.clojure/core.async "1.3.618"]
|
[org.clojure/core.async "1.5.648"]
|
||||||
[manifold "0.1.8"]
|
[manifold "0.2.3"]
|
||||||
[funcool/promesa "6.0.2"]
|
[funcool/promesa "6.1.434"]
|
||||||
[metosin/sieppari]
|
[metosin/sieppari]
|
||||||
[yada "1.2.16"]
|
[yada "1.2.16"]
|
||||||
[aleph "0.4.6"]
|
[aleph "0.4.6"]
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue