@lenne.tech/nest-server 11.30.0 → 11.31.0
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/FRAMEWORK-API.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @lenne.tech/nest-server — Framework API Reference
|
|
2
2
|
|
|
3
|
-
> Auto-generated from source code on 2026-07-18 (v11.
|
|
3
|
+
> Auto-generated from source code on 2026-07-18 (v11.31.0)
|
|
4
4
|
> File: `FRAMEWORK-API.md` — compact, machine-readable API surface for Claude Code
|
|
5
5
|
|
|
6
6
|
## CoreModule.forRoot()
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
| **Breaking Changes** | None in nest-server's own API. Two transitive changes may affect projects: `@nestjs/websockets` removed from dependencies; `@nestjs/swagger` 11.4.6 blocks deep imports |
|
|
8
8
|
| **New Features** | None (dependency maintenance release) |
|
|
9
9
|
| **Bugfixes** | Dependency updates incl. security-relevant `ws` 8.21.1 override; 6 obsolete pnpm overrides removed |
|
|
10
|
-
| **Migration Effort** | Very Low
|
|
10
|
+
| **Migration Effort** | Very Low — most projects need no changes |
|
|
11
11
|
|
|
12
12
|
---
|
|
13
13
|
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
# Migration Guide: 11.30.x → 11.31.x
|
|
2
|
+
|
|
3
|
+
## Overview
|
|
4
|
+
|
|
5
|
+
| Category | Details |
|
|
6
|
+
|----------|---------|
|
|
7
|
+
| **Breaking Changes** | None |
|
|
8
|
+
| **New Features** | `pnpm run check` steps report grouped by project (monorepo / api / app); orchestrator parity across all lt starters |
|
|
9
|
+
| **Bugfixes** | Root-only chain steps now run correctly when workspace members exist |
|
|
10
|
+
| **Migration Effort** | None — no code changes required |
|
|
11
|
+
|
|
12
|
+
---
|
|
13
|
+
|
|
14
|
+
## Quick Migration
|
|
15
|
+
|
|
16
|
+
```bash
|
|
17
|
+
# Update package
|
|
18
|
+
npm install @lenne.tech/nest-server@11.31.x
|
|
19
|
+
|
|
20
|
+
# Verify build
|
|
21
|
+
npm run build
|
|
22
|
+
|
|
23
|
+
# Run tests
|
|
24
|
+
npm test
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
No code changes required in any project.
|
|
28
|
+
|
|
29
|
+
---
|
|
30
|
+
|
|
31
|
+
## What's New in 11.31.x
|
|
32
|
+
|
|
33
|
+
### Grouped check report
|
|
34
|
+
|
|
35
|
+
`pnpm run check` now groups its steps report by project (monorepo root, api,
|
|
36
|
+
app), so in a fullstack workspace you immediately see which project a failing
|
|
37
|
+
step belongs to. The check orchestrator also behaves identically across all
|
|
38
|
+
lt starters (same chain semantics, same root-only step handling).
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lenne.tech/nest-server",
|
|
3
|
-
"version": "11.
|
|
3
|
+
"version": "11.31.0",
|
|
4
4
|
"description": "Modern, fast, powerful Node.js web framework in TypeScript based on Nest with a GraphQL API and a connection to MongoDB (or other databases).",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"node",
|