1
0
mirror of https://github.com/kataras/iris.git synced 2026-03-10 10:25:57 +00:00

add Configuration.URLParamSeparator

This commit is contained in:
Gerasimos (Makis) Maropoulos
2022-11-29 10:49:49 +02:00
parent 29c29e79e5
commit 8cf891ff25
7 changed files with 55 additions and 12 deletions

View File

@@ -28,6 +28,8 @@ The codebase for Dependency Injection, Internationalization and localization and
## Fixes and Improvements
- Add new `URLParamSeparator` to the configuration. Defaults to "," but can be set to an empty string to disable splitting query values on `Context.URLParamSlice` method.
- [PR #1992](https://github.com/kataras/iris/pull/1992): Added support for third party packages on [httptest](https://github.com/kataras/iris/tree/master/httptest). An example using 3rd-party module named [Ginkgo](github.com/onsi/ginkgo) can be found [here](https://github.com/kataras/iris/blob/master/_examples/testing/ginkgotest).
- Add `Context.Render` method for compatibility.