@backstage/core-app-api 1.20.0-next.2 → 1.20.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 +14 -0
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @backstage/core-app-api
|
|
2
2
|
|
|
3
|
+
## 1.20.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 400aa23: Added `FetchMiddlewares.clarifyFailures()` which replaces the uninformative "TypeError: Failed to fetch" with a message that includes the request method and URL.
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- 9244b70: The default auth implementation now checks for a `logoutUrl` in the logout response body. If the auth provider returns one (e.g. Auth0 federated logout), the browser is redirected to that URL to clear the provider's session cookies. This is backward compatible — providers that return an empty response are unaffected.
|
|
12
|
+
- Updated dependencies
|
|
13
|
+
- @backstage/ui@0.14.0
|
|
14
|
+
- @backstage/config@1.3.7
|
|
15
|
+
- @backstage/core-plugin-api@1.12.5
|
|
16
|
+
|
|
3
17
|
## 1.20.0-next.2
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/core-app-api",
|
|
3
|
-
"version": "1.20.0
|
|
3
|
+
"version": "1.20.0",
|
|
4
4
|
"description": "Core app API used by Backstage apps",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "web-library"
|
|
@@ -50,11 +50,11 @@
|
|
|
50
50
|
"test": "backstage-cli package test"
|
|
51
51
|
},
|
|
52
52
|
"dependencies": {
|
|
53
|
-
"@backstage/config": "1.3.7
|
|
54
|
-
"@backstage/core-plugin-api": "1.12.5
|
|
55
|
-
"@backstage/types": "1.2.2",
|
|
56
|
-
"@backstage/ui": "0.14.0
|
|
57
|
-
"@backstage/version-bridge": "1.0.12",
|
|
53
|
+
"@backstage/config": "^1.3.7",
|
|
54
|
+
"@backstage/core-plugin-api": "^1.12.5",
|
|
55
|
+
"@backstage/types": "^1.2.2",
|
|
56
|
+
"@backstage/ui": "^0.14.0",
|
|
57
|
+
"@backstage/version-bridge": "^1.0.12",
|
|
58
58
|
"@types/prop-types": "^15.7.3",
|
|
59
59
|
"history": "^5.0.0",
|
|
60
60
|
"i18next": "^22.4.15",
|
|
@@ -65,8 +65,8 @@
|
|
|
65
65
|
"zod": "^3.25.76 || ^4.0.0"
|
|
66
66
|
},
|
|
67
67
|
"devDependencies": {
|
|
68
|
-
"@backstage/cli": "0.36.1
|
|
69
|
-
"@backstage/test-utils": "1.7.17
|
|
68
|
+
"@backstage/cli": "^0.36.1",
|
|
69
|
+
"@backstage/test-utils": "^1.7.17",
|
|
70
70
|
"@testing-library/dom": "^10.0.0",
|
|
71
71
|
"@testing-library/jest-dom": "^6.0.0",
|
|
72
72
|
"@testing-library/react": "^16.0.0",
|