@backstage/core-app-api 1.14.2-next.0 → 1.14.2
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 +11 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# @backstage/core-app-api
|
|
2
2
|
|
|
3
|
+
## 1.14.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 9a46a81: The request to delete the session cookie when running the app in protected mode is now done with a plain `fetch` rather than `FetchApi`. This fixes a bug where the app would immediately try to sign-in again when removing the cookie during logout.
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @backstage/config@1.2.0
|
|
10
|
+
- @backstage/core-plugin-api@1.9.3
|
|
11
|
+
- @backstage/types@1.1.1
|
|
12
|
+
- @backstage/version-bridge@1.0.8
|
|
13
|
+
|
|
3
14
|
## 1.14.1-next.0
|
|
4
15
|
|
|
5
16
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/core-app-api",
|
|
3
3
|
"description": "Core app API used by Backstage apps",
|
|
4
|
-
"version": "1.14.2
|
|
4
|
+
"version": "1.14.2",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
7
7
|
},
|
|
@@ -59,8 +59,8 @@
|
|
|
59
59
|
"react-router-dom": "6.0.0-beta.0 || ^6.3.0"
|
|
60
60
|
},
|
|
61
61
|
"devDependencies": {
|
|
62
|
-
"@backstage/cli": "^0.27.0
|
|
63
|
-
"@backstage/test-utils": "^1.5.10
|
|
62
|
+
"@backstage/cli": "^0.27.0",
|
|
63
|
+
"@backstage/test-utils": "^1.5.10",
|
|
64
64
|
"@testing-library/dom": "^10.0.0",
|
|
65
65
|
"@testing-library/jest-dom": "^6.0.0",
|
|
66
66
|
"@testing-library/react": "^15.0.0",
|