@knapsack/spec-utils 4.78.0--canary.5759.32f0cce.0 → 4.78.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 +23 -0
- package/package.json +10 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,26 @@
|
|
|
1
|
+
# v4.78.0 (Wed Mar 19 2025)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- Merge branch 'latest' into feature/ksp-6203-default-prop-values-not-rendering ([@mabry1985](https://github.com/mabry1985))
|
|
6
|
+
|
|
7
|
+
#### 🏠 Internal
|
|
8
|
+
|
|
9
|
+
- KSP-6053: Remove references to hasura auth endpoint and claims within API [#5699](https://github.com/knapsack-labs/app-monorepo/pull/5699) ([@illepic](https://github.com/illepic))
|
|
10
|
+
- strictNullChecks @knapsack/hasura-gql-client [#5795](https://github.com/knapsack-labs/app-monorepo/pull/5795) ([@illepic](https://github.com/illepic))
|
|
11
|
+
- add tests for aligning spec and resolve utils [#5792](https://github.com/knapsack-labs/app-monorepo/pull/5792) ([@EvanLovely](https://github.com/EvanLovely))
|
|
12
|
+
- refactor Spec Utils testing: Ava -> Vitest [#5792](https://github.com/knapsack-labs/app-monorepo/pull/5792) ([@EvanLovely](https://github.com/EvanLovely))
|
|
13
|
+
- Removes primary custom domain [#5781](https://github.com/knapsack-labs/app-monorepo/pull/5781) ([@freneticpixel](https://github.com/freneticpixel))
|
|
14
|
+
|
|
15
|
+
#### Authors: 4
|
|
16
|
+
|
|
17
|
+
- Christopher Bloom ([@illepic](https://github.com/illepic))
|
|
18
|
+
- Evan Lovely ([@EvanLovely](https://github.com/EvanLovely))
|
|
19
|
+
- Jim Frenette ([@freneticpixel](https://github.com/freneticpixel))
|
|
20
|
+
- Josh Mabry ([@mabry1985](https://github.com/mabry1985))
|
|
21
|
+
|
|
22
|
+
---
|
|
23
|
+
|
|
1
24
|
# v4.77.0 (Thu Mar 13 2025)
|
|
2
25
|
|
|
3
26
|
#### 🚀 Enhancement
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@knapsack/spec-utils",
|
|
3
3
|
"description": "",
|
|
4
|
-
"version": "4.78.0
|
|
4
|
+
"version": "4.78.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
7
7
|
".": {
|
|
@@ -20,17 +20,17 @@
|
|
|
20
20
|
"test": "vitest run"
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@knapsack/utils": "4.78.0
|
|
23
|
+
"@knapsack/utils": "4.78.0",
|
|
24
24
|
"typescript": "^5.7.3"
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
27
|
-
"@knapsack/angular-sandbox-components": "4.78.0
|
|
28
|
-
"@knapsack/eslint-config-starter": "4.78.0
|
|
29
|
-
"@knapsack/file-utils": "4.78.0
|
|
30
|
-
"@knapsack/prettier-config": "4.78.0
|
|
31
|
-
"@knapsack/sandbox-components": "4.78.0
|
|
32
|
-
"@knapsack/types": "4.78.0
|
|
33
|
-
"@knapsack/typescript-config-starter": "4.78.0
|
|
27
|
+
"@knapsack/angular-sandbox-components": "4.78.0",
|
|
28
|
+
"@knapsack/eslint-config-starter": "4.78.0",
|
|
29
|
+
"@knapsack/file-utils": "4.78.0",
|
|
30
|
+
"@knapsack/prettier-config": "4.78.0",
|
|
31
|
+
"@knapsack/sandbox-components": "4.78.0",
|
|
32
|
+
"@knapsack/types": "4.78.0",
|
|
33
|
+
"@knapsack/typescript-config-starter": "4.78.0",
|
|
34
34
|
"@mui/material": "^5.16.14",
|
|
35
35
|
"@types/node": "^20.17.24",
|
|
36
36
|
"eslint": "^8.57.0",
|
|
@@ -45,5 +45,5 @@
|
|
|
45
45
|
"directory": "apps/client/libs/spec-utils",
|
|
46
46
|
"type": "git"
|
|
47
47
|
},
|
|
48
|
-
"gitHead": "
|
|
48
|
+
"gitHead": "13fbd39eaed3425ad0ca54af9eef474f8ecbeee8"
|
|
49
49
|
}
|