summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorAsko Nõmm <ano@ano.ee>2022-10-06 01:11:46 +0300
committerAsko Nõmm <ano@ano.ee>2022-10-06 01:11:46 +0300
commit60e1f9c8a6b5f343cfc8be2d8bc25018cfe0ddab (patch)
treec5f117ffb9f46eb393c7b20c5cef0d48ddb0dbe2 /README.md
parent9e8abbf26d4422ba133bba7186363bee5b1f38d7 (diff)
1.3.2
Diffstat (limited to 'README.md')
-rw-r--r--README.md10
1 files changed, 9 insertions, 1 deletions
diff --git a/README.md b/README.md
index 5384ea8..480916f 100644
--- a/README.md
+++ b/README.md
@@ -103,7 +103,7 @@ You can also use Ruuter with [Babashka](https://github.com/babashka/babashka), b
### Creating routes
-Like mentioned above, each route is a map inside of a vector - the order is important only in that the route matcher will return the first result it finds according to `:path`.
+Like mentioned above, each route is a map inside a vector - the order is important only in that the route matcher will return the first result it finds according to `:path`.
Each route consists of three items:
@@ -161,6 +161,14 @@ What the actual map can contain that you return depends again on the HTTP server
## Changelog
+### 1.3.2
+
+- When using wildcard parameters, the keyword returned in ´:params´ of a request was ´:name*´, but aiming for consistency with an optional parameter where we remove the question mark ´?´, the asterisk has been removed.
+
+### 1.3.1
+
+- A small bugfix related to wildcard parameters losing the first character in the result.
+
### 1.3.0
- Fixed an issue with optional parameters not matching correctly when there were multiple optional paremeters in use.