@knapsack/spec-utils 4.73.0--canary.5222.6a28d72.0 → 4.73.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 +26 -0
- package/package.json +10 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,29 @@
|
|
|
1
|
+
# v4.73.0 (Thu Jan 16 2025)
|
|
2
|
+
|
|
3
|
+
#### 🚀 Enhancement
|
|
4
|
+
|
|
5
|
+
- improved react renderer infer spec engine [#5222](https://github.com/knapsack-labs/app-monorepo/pull/5222) ([@mabry1985](https://github.com/mabry1985))
|
|
6
|
+
|
|
7
|
+
#### 🐛 Bug Fix
|
|
8
|
+
|
|
9
|
+
- update typing to avoid typecasting ([@mabry1985](https://github.com/mabry1985))
|
|
10
|
+
- merge latest ([@mabry1985](https://github.com/mabry1985))
|
|
11
|
+
- Merge branch 'latest' into feature/ksp-5583-replace-react-renderer-infer-spec-engine ([@mabry1985](https://github.com/mabry1985))
|
|
12
|
+
- add todo for intersection type updates ([@mabry1985](https://github.com/mabry1985))
|
|
13
|
+
- cleanup unneeded code ([@mabry1985](https://github.com/mabry1985))
|
|
14
|
+
- handle union type props ([@mabry1985](https://github.com/mabry1985))
|
|
15
|
+
- handle intersection types, add recursion handling ([@mabry1985](https://github.com/mabry1985))
|
|
16
|
+
- update misc type handling, handle nested object types ([@mabry1985](https://github.com/mabry1985))
|
|
17
|
+
- handles complex arrays and function types ([@mabry1985](https://github.com/mabry1985))
|
|
18
|
+
- handles unions of integers ([@mabry1985](https://github.com/mabry1985))
|
|
19
|
+
- ensure that isOptional is passed to all types ([@mabry1985](https://github.com/mabry1985))
|
|
20
|
+
|
|
21
|
+
#### Authors: 1
|
|
22
|
+
|
|
23
|
+
- Josh Mabry ([@mabry1985](https://github.com/mabry1985))
|
|
24
|
+
|
|
25
|
+
---
|
|
26
|
+
|
|
1
27
|
# v4.72.1 (Thu Jan 16 2025)
|
|
2
28
|
|
|
3
29
|
#### 🏠 Internal
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@knapsack/spec-utils",
|
|
3
3
|
"description": "",
|
|
4
|
-
"version": "4.73.0
|
|
4
|
+
"version": "4.73.0",
|
|
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.73.0
|
|
22
|
+
"@knapsack/utils": "4.73.0",
|
|
23
23
|
"typescript": "^5.6.3"
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
26
|
-
"@knapsack/angular-sandbox-components": "4.73.0
|
|
27
|
-
"@knapsack/eslint-config-starter": "4.73.0
|
|
28
|
-
"@knapsack/prettier-config": "4.73.0
|
|
29
|
-
"@knapsack/sandbox-components": "4.73.0
|
|
30
|
-
"@knapsack/test-ava": "4.73.0
|
|
31
|
-
"@knapsack/types": "4.73.0
|
|
32
|
-
"@knapsack/typescript-config-starter": "4.73.0
|
|
26
|
+
"@knapsack/angular-sandbox-components": "4.73.0",
|
|
27
|
+
"@knapsack/eslint-config-starter": "4.73.0",
|
|
28
|
+
"@knapsack/prettier-config": "4.73.0",
|
|
29
|
+
"@knapsack/sandbox-components": "4.73.0",
|
|
30
|
+
"@knapsack/test-ava": "4.73.0",
|
|
31
|
+
"@knapsack/types": "4.73.0",
|
|
32
|
+
"@knapsack/typescript-config-starter": "4.73.0",
|
|
33
33
|
"@types/node": "^20.17.11",
|
|
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": "0fdb0cd80f51d7c82b98d8730ba163f09926f6be"
|
|
47
47
|
}
|