mirror of
https://github.com/metosin/reitit.git
synced 2025-12-16 16:01:11 +00:00
Update CHANGELOG
This commit is contained in:
parent
c87bc099b0
commit
c05fe8be27
1 changed files with 14 additions and 0 deletions
14
CHANGELOG.md
14
CHANGELOG.md
|
|
@ -1,5 +1,19 @@
|
|||
## 0.3.0-SNAPSHOT
|
||||
|
||||
### `reitit.core`
|
||||
|
||||
* welcome new wildcard routing!
|
||||
* optional bracket-syntax with parameters
|
||||
* `"/user/:user-id"` = `"/user/{user-id}"`
|
||||
* `"/assets/*asset"` = `"/assets/{*asset}`
|
||||
* enabling qualified parameters
|
||||
* `"/user/{my.user/id}/{my.order/id}"`
|
||||
* parameters don't have to span whole segments
|
||||
* `"/file-:id/topics"` (free start, ends at slash)
|
||||
* `"/file-{name}.html"` (free start & end)
|
||||
* backed by a new `:trie-router`, replacing `:segment-router`
|
||||
* [over 40% faster](https://metosin.github.io/reitit/performance.html) on the JVM
|
||||
|
||||
## `reitit-frontend`
|
||||
|
||||
* **BREAKING** New frontend controllers:
|
||||
|
|
|
|||
Loading…
Reference in a new issue