@dudousxd/nestjs-codegen 0.25.0 → 0.25.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +24 -0
- package/dist/cli/main.cjs +1 -1
- package/dist/cli/main.cjs.map +1 -1
- package/dist/cli/main.js +1 -1
- package/dist/cli/main.js.map +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/nest/index.cjs +1 -1
- package/dist/nest/index.cjs.map +1 -1
- package/dist/nest/index.d.cts +1 -1
- package/dist/nest/index.d.ts +1 -1
- package/dist/nest/index.js +1 -1
- package/dist/nest/index.js.map +1 -1
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
# @dudousxd/nestjs-codegen
|
|
2
2
|
|
|
3
|
+
## 0.25.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- b32fb5c: Correct the script name referenced in the `sync-version` header comment (`version-packages`, not `changeset:version`).
|
|
8
|
+
|
|
9
|
+
## 0.25.1
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- 0379b5a: Add NestJS 12 to the supported peer range.
|
|
14
|
+
|
|
15
|
+
`@dudousxd/nestjs-client`'s `@nestjs/common` peer read `^10.0.0 || ^11.0.0` and now also admits
|
|
16
|
+
`^12.0.0`. `@dudousxd/nestjs-codegen`'s peer already read `>=9.0.0`, so it admitted 12 unchanged;
|
|
17
|
+
its dev dependencies move onto the 12.x line so the suite runs against NestJS 12.
|
|
18
|
+
|
|
19
|
+
No source change was needed. NestJS 12 ships its core packages as pure ESM and these packages are
|
|
20
|
+
already `"type": "module"`; neither implements a `PipeTransform`, so the `ArgumentMetadata` generic
|
|
21
|
+
added in v12 does not reach this code, and neither subclasses `ConsoleLogger`.
|
|
22
|
+
|
|
23
|
+
The AST discovery path was exercised end-to-end against a real NestJS 12 application: the generated
|
|
24
|
+
client is byte-identical to the one produced before the bump, so v12's decorator and metadata
|
|
25
|
+
changes leave route and field discovery intact.
|
|
26
|
+
|
|
3
27
|
## 0.25.0
|
|
4
28
|
|
|
5
29
|
### Minor Changes
|
package/dist/cli/main.cjs
CHANGED