Skip to content

Commit 835b185

Browse files
authored
merge: release v0.11.1 (#1496)
2 parents c7c4215 + 6c21842 commit 835b185

10 files changed

+255
-1123
lines changed

CHANGELOG.md

+6-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog and release notes
22

3+
## [0.11.1](https://github.com/typestack/routing-controllers/compare/v0.11.0...v0.11.1) (2025-02-18)
4+
5+
### Changed
6+
7+
- Fixed `Render` decorator for Koa
8+
39
## [0.11.0](https://github.com/typestack/routing-controllers/compare/v0.10.4...v0.11.0) (2025-02-14)
410

511
### Changed
@@ -10,11 +16,6 @@
1016
- Introduced `UnprocessableEntityError`
1117
- Dropped support for node versions below 20
1218

13-
### Fixed
14-
15-
- Fixed koa trailing slash handling
16-
- Fixed controller method inheritance
17-
1819
## [0.10.4](https://github.com/typestack/routing-controllers/compare/v0.10.3...v0.10.4) (2023-04-17)
1920

2021
### Changed

README.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -728,8 +728,10 @@ getOne() {
728728
```
729729

730730
To use rendering ability make sure to configure express / koa properly.
731-
To use rendering ability with Koa you will need to use a rendering 3rd party such as [koa-views](https://github.com/queckezz/koa-views/),
732-
koa-views is the only render middleware that has been tested.
731+
To use rendering ability with Koa you will need to use a rendering 3rd party such as [@koa/ejs](https://github.com/koajs/ejs),
732+
@koa/ejs is the only render middleware that has been tested.
733+
734+
See [the koa render test file](./test/functional/koa-render-decorator.spec.ts) as an example.
733735

734736
#### Throw HTTP errors
735737

0 commit comments

Comments
 (0)