@knapsack/app-client-api 4.85.1--canary.6565.e18ebd8.0 → 4.85.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/CHANGELOG.md +24 -0
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,27 @@
|
|
|
1
|
+
# v4.85.1 (Thu Aug 21 2025)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- Support path prefix for app client url [#6565](https://github.com/knapsack-labs/app-monorepo/pull/6565) ([@freneticpixel](https://github.com/freneticpixel))
|
|
6
|
+
- revert URL wrappers ([@freneticpixel](https://github.com/freneticpixel))
|
|
7
|
+
- fix ([@freneticpixel](https://github.com/freneticpixel))
|
|
8
|
+
- wrapping urlJoin in URL constructor ([@freneticpixel](https://github.com/freneticpixel))
|
|
9
|
+
- format fixes ([@freneticpixel](https://github.com/freneticpixel))
|
|
10
|
+
- Support path prefix for app client url ([@freneticpixel](https://github.com/freneticpixel))
|
|
11
|
+
- Merge branch 'latest' into fix/ksp-5986 ([@rizchelwood](https://github.com/rizchelwood))
|
|
12
|
+
|
|
13
|
+
#### 🏠 Internal
|
|
14
|
+
|
|
15
|
+
- Catchup Auth0 config from prod. [#6561](https://github.com/knapsack-labs/app-monorepo/pull/6561) ([@greylabel](https://github.com/greylabel))
|
|
16
|
+
|
|
17
|
+
#### Authors: 3
|
|
18
|
+
|
|
19
|
+
- Grant Gaudet ([@greylabel](https://github.com/greylabel))
|
|
20
|
+
- Jim Frenette ([@freneticpixel](https://github.com/freneticpixel))
|
|
21
|
+
- Rizchel Wood ([@rizchelwood](https://github.com/rizchelwood))
|
|
22
|
+
|
|
23
|
+
---
|
|
24
|
+
|
|
1
25
|
# v4.85.0 (Tue Aug 19 2025)
|
|
2
26
|
|
|
3
27
|
#### 🐛 Bug Fix
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@knapsack/app-client-api",
|
|
3
3
|
"description": "",
|
|
4
|
-
"version": "4.85.1
|
|
4
|
+
"version": "4.85.1",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": {
|
|
7
7
|
"types": "./dist/index.d.ts",
|
|
@@ -21,16 +21,16 @@
|
|
|
21
21
|
"lint": "eslint ./"
|
|
22
22
|
},
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@knapsack/app": "4.85.1
|
|
25
|
-
"@knapsack/types": "4.85.1
|
|
26
|
-
"@knapsack/utils": "4.85.1
|
|
24
|
+
"@knapsack/app": "4.85.1",
|
|
25
|
+
"@knapsack/types": "4.85.1",
|
|
26
|
+
"@knapsack/utils": "4.85.1",
|
|
27
27
|
"cross-fetch": "^4.1.0",
|
|
28
28
|
"url-join": "^4.0.1"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
|
-
"@knapsack/eslint-config-starter": "4.85.1
|
|
32
|
-
"@knapsack/prettier-config": "4.85.1
|
|
33
|
-
"@knapsack/typescript-config-starter": "4.85.1
|
|
31
|
+
"@knapsack/eslint-config-starter": "4.85.1",
|
|
32
|
+
"@knapsack/prettier-config": "4.85.1",
|
|
33
|
+
"@knapsack/typescript-config-starter": "4.85.1",
|
|
34
34
|
"@types/node": "^20.17.57",
|
|
35
35
|
"@types/url-join": "^4.0.3",
|
|
36
36
|
"eslint": "^8.57.0",
|
|
@@ -46,5 +46,5 @@
|
|
|
46
46
|
"directory": "libs/app-client-api",
|
|
47
47
|
"type": "git"
|
|
48
48
|
},
|
|
49
|
-
"gitHead": "
|
|
49
|
+
"gitHead": "734c6cb57b7be580393d05994f1273c0bbb335b8"
|
|
50
50
|
}
|