Skip to content

Commit c7c4215

Browse files
authored
merge: release v0.11.0 (#1494)
2 parents e1d6033 + bcf2a0a commit c7c4215

20 files changed

+5085
-3623
lines changed

.eslintrc.yml

-35
This file was deleted.

.github/workflows/continuous-integration-workflow.yml

+7-3
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,14 @@ jobs:
2727
node-version: ${{ matrix.node-version }}
2828
- run: npm ci --ignore-scripts
2929
- run: npm run test:ci
30-
- run: npm install codecov -g
31-
if: ${{ matrix.node-version == 'current' }}
32-
- run: codecov -f ./coverage/clover.xml -t ${{ secrets.CODECOV_TOKEN }} --commit=$GITHUB_SHA --branch=${GITHUB_REF##*/}
30+
- name: Upload coverage to Codecov
31+
uses: codecov/codecov-action@v3
3332
if: ${{ matrix.node-version == 'current' }}
33+
with:
34+
file: ./coverage/clover.xml
35+
token: ${{ secrets.CODECOV_TOKEN }}
36+
commit: ${{ github.sha }}
37+
branch: ${{ github.ref }}
3438
build:
3539
name: Build
3640
runs-on: ubuntu-latest

CHANGELOG.md

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

3+
## [0.11.0](https://github.com/typestack/routing-controllers/compare/v0.10.4...v0.11.0) (2025-02-14)
4+
5+
### Changed
6+
7+
- `cookie` package updated to `1.0.2` from `0.5.0`
8+
- `glob` package updated to `11.0.0` from `10.2.2`
9+
- `reflect-metadata` package updated to `0.2.2` from `0.1.13`
10+
- Introduced `UnprocessableEntityError`
11+
- Dropped support for node versions below 20
12+
13+
### Fixed
14+
15+
- Fixed koa trailing slash handling
16+
- Fixed controller method inheritance
17+
318
## [0.10.4](https://github.com/typestack/routing-controllers/compare/v0.10.3...v0.10.4) (2023-04-17)
419

520
### Changed

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,7 @@ In prior versions, these were direct dependencies, but now they are peer depende
126126
1. Create a file `UserController.ts`
127127

128128
```typescript
129+
import 'reflect-metadata';
129130
import { Controller, Param, Body, Get, Post, Put, Delete } from 'routing-controllers';
130131

131132
@Controller()
@@ -765,6 +766,7 @@ There are set of prepared errors you can use:
765766
- NotAcceptableError
766767
- NotFoundError
767768
- UnauthorizedError
769+
- UnprocessableEntityError
768770

769771
You can also create and use your own errors by extending `HttpError` class.
770772
To define the data returned to the client, you could define a toJSON method in your error.

docs/lang/chinese/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -724,6 +724,7 @@ getOne(@Param("id") id: number) {
724724
- NotAcceptableError
725725
- NotFoundError
726726
- UnauthorizedError
727+
- UnprocessableEntityError
727728

728729
可以继承 `HttpError` 类自行创建使用 error。
729730
也可实现一个 toJson 函数定义返回给客户端的数据。

eslint.config.mjs

+61
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
import typescriptEslint from "@typescript-eslint/eslint-plugin";
2+
import tsParser from "@typescript-eslint/parser";
3+
import path from "node:path";
4+
import { fileURLToPath } from "node:url";
5+
import js from "@eslint/js";
6+
import { FlatCompat } from "@eslint/eslintrc";
7+
8+
const __filename = fileURLToPath(import.meta.url);
9+
const __dirname = path.dirname(__filename);
10+
const compat = new FlatCompat({
11+
baseDirectory: __dirname,
12+
recommendedConfig: js.configs.recommended,
13+
allConfig: js.configs.all
14+
});
15+
16+
export default [...compat.extends(
17+
"plugin:@typescript-eslint/recommended",
18+
"plugin:@typescript-eslint/recommended-requiring-type-checking",
19+
"plugin:jest/recommended",
20+
"prettier",
21+
), {
22+
plugins: {
23+
"@typescript-eslint": typescriptEslint,
24+
},
25+
26+
languageOptions: {
27+
parser: tsParser,
28+
ecmaVersion: 2018,
29+
sourceType: "module",
30+
31+
parserOptions: {
32+
project: ["./tsconfig.json", "./tsconfig.spec.json"],
33+
},
34+
},
35+
36+
rules: {
37+
"@typescript-eslint/explicit-member-accessibility": "off",
38+
"@typescript-eslint/no-angle-bracket-type-assertion": "off",
39+
"@typescript-eslint/no-parameter-properties": "off",
40+
"@typescript-eslint/explicit-function-return-type": "off",
41+
"@typescript-eslint/member-delimiter-style": "off",
42+
"@typescript-eslint/no-inferrable-types": "off",
43+
"@typescript-eslint/no-explicit-any": "off",
44+
"@typescript-eslint/member-ordering": "error",
45+
"@typescript-eslint/no-unused-vars": ["error", {
46+
args: "none",
47+
}],
48+
"@typescript-eslint/ban-types": "off",
49+
"@typescript-eslint/no-unsafe-return": "off",
50+
"@typescript-eslint/no-unsafe-assignment": "off",
51+
"@typescript-eslint/no-unsafe-call": "off",
52+
"@typescript-eslint/no-unsafe-member-access": "off",
53+
"@typescript-eslint/explicit-module-boundary-types": "off",
54+
"@typescript-eslint/no-unsafe-argument": "off",
55+
"@typescript-eslint/no-var-requires": "off",
56+
"@typescript-eslint/no-unsafe-function-type": "off",
57+
"@typescript-eslint/no-wrapper-object-types": "off",
58+
"@typescript-eslint/no-require-imports": "off",
59+
"@typescript-eslint/no-redundant-type-constituents": "off",
60+
},
61+
}];

lang/chinese/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -727,6 +727,7 @@ getOne(@Param("id") id: number) {
727727
- NotAcceptableError
728728
- NotFoundError
729729
- UnauthorizedError
730+
- UnprocessableEntityError
730731

731732
可以继承 `HttpError` 类自行创建使用 error。
732733
也可实现一个 toJson 函数定义返回给客户端的数据。

0 commit comments

Comments
 (0)