mirror of
https://github.com/metosin/reitit.git
synced 2025-12-16 16:01:11 +00:00
Mention Java 11 requirement
This commit is contained in:
parent
a103411bf7
commit
9849ed5ebb
3 changed files with 4 additions and 3 deletions
|
|
@ -15,6 +15,7 @@ We use [Break Versioning][breakver]. The version numbers follow a `<major>.<mino
|
|||
## UNRELEASED
|
||||
|
||||
* **BREAKING**: throw error if `:responses` keys are not integers [#667](https://github.com/metosin/reitit/issues/667)
|
||||
* **BREAKING**: Java 8 is no longer supported (Ring-core requires Apache Commons FileUpload which now requires Java 11)
|
||||
* 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)
|
||||
* Changes in 0.8.0-alpha1
|
||||
* Updated dependencies:
|
||||
|
|
|
|||
|
|
@ -71,9 +71,9 @@ All main modules bundled:
|
|||
|
||||
Optionally, the parts can be required separately.
|
||||
|
||||
Malli requires Clojure 1.11.
|
||||
Reitit requires Clojure 1.11 and Java 11.
|
||||
|
||||
Malli is tested with the LTS releases Java 8, 11, 17 and 21.
|
||||
Reitit is tested with the LTS releases Java 11, 17 and 21.
|
||||
|
||||
## Quick start
|
||||
|
||||
|
|
|
|||
|
|
@ -89,7 +89,7 @@
|
|||
|
||||
:java-source-paths ["modules/reitit-core/java-src"]
|
||||
|
||||
:dependencies [[org.clojure/clojure "1.12.0"]
|
||||
:dependencies [[org.clojure/clojure "1.11.4"]
|
||||
[thheller/shadow-cljs "2.28.22"]
|
||||
[org.clojure/clojurescript "1.11.132"]
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue