@knapsack/spec-utils 4.76.1--canary.4cb4a8f.0 → 4.76.1
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/.turbo/turbo-test.log +2 -2
- package/CHANGELOG.md +20 -0
- package/package.json +10 -10
package/.turbo/turbo-test.log
CHANGED
|
@@ -23,8 +23,8 @@
|
|
|
23
23
|
✔ analyze-exports › function with basic parameters: .d.ts
|
|
24
24
|
✔ analyze-exports › async function with basic parameters: .d.ts
|
|
25
25
|
✔ analyze-exports › function with complex parameters: .d.ts
|
|
26
|
-
✔ analyze-exports.sandbox-components › analyzeExports react (3.
|
|
27
|
-
✔ analyze-exports.sandbox-components › analyzeExports angular (
|
|
26
|
+
✔ analyze-exports.sandbox-components › analyzeExports react (3.4s)
|
|
27
|
+
✔ analyze-exports.sandbox-components › analyzeExports angular (2.1s)
|
|
28
28
|
✔ convert-to-spec › string
|
|
29
29
|
✔ convert-to-spec › boolean
|
|
30
30
|
✔ convert-to-spec › object
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,23 @@
|
|
|
1
|
+
# v4.76.1 (Wed Mar 05 2025)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- ksp-6088: remove v3 to v4 migrations [#5668](https://github.com/knapsack-labs/app-monorepo/pull/5668) ([@illepic](https://github.com/illepic))
|
|
6
|
+
- Merge branch 'latest' into feature/strictNullChecks-server ([@illepic](https://github.com/illepic))
|
|
7
|
+
- Merge branch 'latest' into feature/strictNullChecks-server ([@freneticpixel](https://github.com/freneticpixel))
|
|
8
|
+
- merge latest, integrate new auth work ([@illepic](https://github.com/illepic))
|
|
9
|
+
|
|
10
|
+
#### 🏠 Internal
|
|
11
|
+
|
|
12
|
+
- KSP-6170: strictNullChecks: apps/api/server [#5393](https://github.com/knapsack-labs/app-monorepo/pull/5393) ([@illepic](https://github.com/illepic) [@freneticpixel](https://github.com/freneticpixel))
|
|
13
|
+
|
|
14
|
+
#### Authors: 2
|
|
15
|
+
|
|
16
|
+
- Christopher Bloom ([@illepic](https://github.com/illepic))
|
|
17
|
+
- Jim Frenette ([@freneticpixel](https://github.com/freneticpixel))
|
|
18
|
+
|
|
19
|
+
---
|
|
20
|
+
|
|
1
21
|
# v4.76.0 (Tue Mar 04 2025)
|
|
2
22
|
|
|
3
23
|
#### 🏠 Internal
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@knapsack/spec-utils",
|
|
3
3
|
"description": "",
|
|
4
|
-
"version": "4.76.1
|
|
4
|
+
"version": "4.76.1",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
7
7
|
".": {
|
|
@@ -19,17 +19,17 @@
|
|
|
19
19
|
"test": "ava"
|
|
20
20
|
},
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@knapsack/utils": "4.76.1
|
|
22
|
+
"@knapsack/utils": "4.76.1",
|
|
23
23
|
"typescript": "^5.7.3"
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
26
|
-
"@knapsack/angular-sandbox-components": "4.76.1
|
|
27
|
-
"@knapsack/eslint-config-starter": "4.76.1
|
|
28
|
-
"@knapsack/prettier-config": "4.76.1
|
|
29
|
-
"@knapsack/sandbox-components": "4.76.1
|
|
30
|
-
"@knapsack/test-ava": "4.76.1
|
|
31
|
-
"@knapsack/types": "4.76.1
|
|
32
|
-
"@knapsack/typescript-config-starter": "4.76.1
|
|
26
|
+
"@knapsack/angular-sandbox-components": "4.76.1",
|
|
27
|
+
"@knapsack/eslint-config-starter": "4.76.1",
|
|
28
|
+
"@knapsack/prettier-config": "4.76.1",
|
|
29
|
+
"@knapsack/sandbox-components": "4.76.1",
|
|
30
|
+
"@knapsack/test-ava": "4.76.1",
|
|
31
|
+
"@knapsack/types": "4.76.1",
|
|
32
|
+
"@knapsack/typescript-config-starter": "4.76.1",
|
|
33
33
|
"@types/node": "^20.17.17",
|
|
34
34
|
"ava": "^6.2.0",
|
|
35
35
|
"eslint": "^8.57.0"
|
|
@@ -43,5 +43,5 @@
|
|
|
43
43
|
"directory": "apps/client/libs/spec-utils",
|
|
44
44
|
"type": "git"
|
|
45
45
|
},
|
|
46
|
-
"gitHead": "
|
|
46
|
+
"gitHead": "ec562f52815b5bcee12104c022b0e80f390bd596"
|
|
47
47
|
}
|