@backstage/core-app-api 1.7.0-next.3 → 1.7.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 +21 -0
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,26 @@
|
|
|
1
1
|
# @backstage/core-app-api
|
|
2
2
|
|
|
3
|
+
## 1.7.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 7908d72e033: Introduce a new global config parameter, `auth.enableExperimentalRedirectFlow`. When enabled, auth will happen with an in-window redirect flow rather than through a popup window.
|
|
8
|
+
- c15e0cedbe1: The `AuthConnector` interface now supports specifying a set of scopes when
|
|
9
|
+
refreshing a session. The `DefaultAuthConnector` implementation passes the
|
|
10
|
+
`scope` query parameter to the auth-backend plugin appropriately. The
|
|
11
|
+
`RefreshingAuthSessionManager` passes any scopes in its `GetSessionRequest`
|
|
12
|
+
appropriately.
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- 1e4f5e91b8e: Bump `zod` and `zod-to-json-schema` dependencies.
|
|
17
|
+
- e0c6e8b9c3c: Update peer dependencies
|
|
18
|
+
- Updated dependencies
|
|
19
|
+
- @backstage/core-plugin-api@1.5.1
|
|
20
|
+
- @backstage/version-bridge@1.0.4
|
|
21
|
+
- @backstage/config@1.0.7
|
|
22
|
+
- @backstage/types@1.0.2
|
|
23
|
+
|
|
3
24
|
## 1.7.0-next.3
|
|
4
25
|
|
|
5
26
|
### Minor 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.7.0
|
|
4
|
+
"version": "1.7.0",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public",
|
|
7
7
|
"main": "dist/index.esm.js",
|
|
@@ -33,9 +33,9 @@
|
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
35
|
"@backstage/config": "^1.0.7",
|
|
36
|
-
"@backstage/core-plugin-api": "^1.5.1
|
|
36
|
+
"@backstage/core-plugin-api": "^1.5.1",
|
|
37
37
|
"@backstage/types": "^1.0.2",
|
|
38
|
-
"@backstage/version-bridge": "^1.0.4
|
|
38
|
+
"@backstage/version-bridge": "^1.0.4",
|
|
39
39
|
"@types/prop-types": "^15.7.3",
|
|
40
40
|
"@types/react": "^16.13.1 || ^17.0.0",
|
|
41
41
|
"history": "^5.0.0",
|
|
@@ -50,8 +50,8 @@
|
|
|
50
50
|
"react-router-dom": "6.0.0-beta.0 || ^6.3.0"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
|
-
"@backstage/cli": "^0.22.6
|
|
54
|
-
"@backstage/test-utils": "^1.3.0
|
|
53
|
+
"@backstage/cli": "^0.22.6",
|
|
54
|
+
"@backstage/test-utils": "^1.3.0",
|
|
55
55
|
"@testing-library/dom": "^8.0.0",
|
|
56
56
|
"@testing-library/jest-dom": "^5.10.1",
|
|
57
57
|
"@testing-library/react": "^12.1.3",
|