@nest-boot/temporary-directory 8.0.0-beta.1 → 8.0.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/CHANGELOG.md +27 -0
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,30 @@
|
|
|
1
|
+
# 8.0.0 (2026-09-01)
|
|
2
|
+
|
|
3
|
+
### 🚀 Features
|
|
4
|
+
|
|
5
|
+
- ⚠️ migrate to NestJS 12 and ESM ([#312](https://github.com/nest-boot/nest-boot/issues/312))
|
|
6
|
+
|
|
7
|
+
### ⚠️ Breaking Changes
|
|
8
|
+
|
|
9
|
+
- migrate to NestJS 12 and ESM ([#312](https://github.com/nest-boot/nest-boot/issues/312))
|
|
10
|
+
|
|
11
|
+
### 🧱 Updated Dependencies
|
|
12
|
+
|
|
13
|
+
- Updated @nest-boot/request-context to 8.0.0-beta.3
|
|
14
|
+
|
|
15
|
+
### ❤️ Thank You
|
|
16
|
+
|
|
17
|
+
- Xudong Huang @xudongcc
|
|
18
|
+
|
|
19
|
+
## 8.0.0-beta.2 (2026-08-31)
|
|
20
|
+
|
|
21
|
+
### 🧱 Updated Dependencies
|
|
22
|
+
|
|
23
|
+
- Updated @nest-boot/request-context to 8.0.0-beta.2
|
|
24
|
+
- Updated @nest-boot/eslint-config to 8.0.0-beta.2
|
|
25
|
+
- Updated @nest-boot/eslint-plugin to 8.0.0-beta.2
|
|
26
|
+
- Updated @nest-boot/tsconfig to 8.0.0-beta.2
|
|
27
|
+
|
|
1
28
|
## 8.0.0-beta.1 (2026-08-31)
|
|
2
29
|
|
|
3
30
|
### 🚀 Features
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nest-boot/temporary-directory",
|
|
3
|
-
"version": "8.0.0
|
|
3
|
+
"version": "8.0.0",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "https://github.com/nest-boot/nest-boot.git",
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"@nestjs/core": "^12.0.0",
|
|
33
33
|
"reflect-metadata": "^0.2.2",
|
|
34
34
|
"rxjs": "^7.0.0",
|
|
35
|
-
"@nest-boot/request-context": "^8.0.0-beta.
|
|
35
|
+
"@nest-boot/request-context": "^8.0.0-beta.3"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
38
|
"@nestjs/common": "^12.0.1",
|
|
@@ -49,10 +49,10 @@
|
|
|
49
49
|
"typescript": "^6.0.3",
|
|
50
50
|
"vite-tsconfig-paths": "^5.1.4",
|
|
51
51
|
"vitest": "^4.1.11",
|
|
52
|
-
"@nest-boot/eslint-config": "^8.0.0-beta.
|
|
53
|
-
"@nest-boot/eslint-plugin": "^8.0.0-beta.
|
|
54
|
-
"@nest-boot/request-context": "^8.0.0-beta.
|
|
55
|
-
"@nest-boot/tsconfig": "^8.0.0-beta.
|
|
52
|
+
"@nest-boot/eslint-config": "^8.0.0-beta.2",
|
|
53
|
+
"@nest-boot/eslint-plugin": "^8.0.0-beta.2",
|
|
54
|
+
"@nest-boot/request-context": "^8.0.0-beta.3",
|
|
55
|
+
"@nest-boot/tsconfig": "^8.0.0-beta.2"
|
|
56
56
|
},
|
|
57
57
|
"publishConfig": {
|
|
58
58
|
"access": "public"
|