mirror of
https://github.com/metosin/reitit.git
synced 2025-12-16 16:01:11 +00:00
Update CHANGELOG for the upcoming release
This commit is contained in:
parent
1189343eae
commit
4d65a32bcc
1 changed files with 3 additions and 2 deletions
|
|
@ -27,11 +27,12 @@ We use [Break Versioning][breakver]. The version numbers follow a `<major>.<mino
|
|||
### `reitit-core`
|
||||
|
||||
* Added ability to mark individual routes as conflicting by using `:conflicting` route data. See [documentation](https://metosin.github.io/reitit/basics/route_conflicts.html). Fixes [#324](https://github.com/metosin/reitit/issues/324)
|
||||
* Encode sequential and set values as multi-valued query params (e.g. `{:foo ["bar", "baz"]}` => foo=bar&foo=baz).
|
||||
* Encode sequential and set values as multi-valued query params (e.g. `{:foo ["bar", "baz"]}` ↦ `foo=bar&foo=baz`).
|
||||
|
||||
### `reitit-frontend`
|
||||
|
||||
* Decode multi-valued query params correctly into seqs (e.g. foo=bar&foo=baz => `{:foo ["bar", "baz"]}`).
|
||||
* **BREAKING**: Decode multi-valued query params correctly into seqs (e.g. `foo=bar&foo=baz` ↦ `{:foo ["bar", "baz"]}`).
|
||||
* Previously you'd get only the first value. (e.g. `foo=bar&foo=baz` ↦ `{:foo "bar"}`)
|
||||
|
||||
### `reitit-middleware`
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue