@backstage/core-app-api 1.10.0 → 1.10.1-next.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 +23 -2
- package/dist/index.d.ts +2 -0
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,26 @@
|
|
|
1
1
|
# @backstage/core-app-api
|
|
2
2
|
|
|
3
|
+
## 1.10.1-next.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 1a0616fa10: Add missing resource and template app icons
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @backstage/core-plugin-api@1.7.0-next.0
|
|
10
|
+
- @backstage/config@1.1.0
|
|
11
|
+
- @backstage/types@1.1.1
|
|
12
|
+
- @backstage/version-bridge@1.0.5
|
|
13
|
+
|
|
14
|
+
## 1.10.1-next.0
|
|
15
|
+
|
|
16
|
+
### Patch Changes
|
|
17
|
+
|
|
18
|
+
- Updated dependencies
|
|
19
|
+
- @backstage/core-plugin-api@1.7.0-next.0
|
|
20
|
+
- @backstage/config@1.1.0
|
|
21
|
+
- @backstage/types@1.1.1
|
|
22
|
+
- @backstage/version-bridge@1.0.5
|
|
23
|
+
|
|
3
24
|
## 1.10.0
|
|
4
25
|
|
|
5
26
|
### Minor Changes
|
|
@@ -194,7 +215,7 @@
|
|
|
194
215
|
|
|
195
216
|
### Minor Changes
|
|
196
217
|
|
|
197
|
-
- 7908d72e033: Introduce a new global config parameter, `
|
|
218
|
+
- 7908d72e033: Introduce a new global config parameter, `enableExperimentalRedirectFlow`. When enabled, auth will happen with an in-window redirect flow rather than through a popup window.
|
|
198
219
|
- c15e0cedbe1: The `AuthConnector` interface now supports specifying a set of scopes when
|
|
199
220
|
refreshing a session. The `DefaultAuthConnector` implementation passes the
|
|
200
221
|
`scope` query parameter to the auth-backend plugin appropriately. The
|
|
@@ -255,7 +276,7 @@
|
|
|
255
276
|
|
|
256
277
|
### Minor Changes
|
|
257
278
|
|
|
258
|
-
- 7908d72e033: Introduce a new global config parameter, `
|
|
279
|
+
- 7908d72e033: Introduce a new global config parameter, `enableExperimentalRedirectFlow`. When enabled, auth will happen with an in-window redirect flow rather than through a popup window.
|
|
259
280
|
|
|
260
281
|
### Patch Changes
|
|
261
282
|
|
package/dist/index.d.ts
CHANGED
|
@@ -741,6 +741,8 @@ type AppIcons = {
|
|
|
741
741
|
'kind:location': IconComponent;
|
|
742
742
|
'kind:system': IconComponent;
|
|
743
743
|
'kind:user': IconComponent;
|
|
744
|
+
'kind:resource': IconComponent;
|
|
745
|
+
'kind:template': IconComponent;
|
|
744
746
|
brokenImage: IconComponent;
|
|
745
747
|
catalog: IconComponent;
|
|
746
748
|
chat: IconComponent;
|
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.10.
|
|
4
|
+
"version": "1.10.1-next.1",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
7
7
|
},
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
42
|
"@backstage/config": "^1.1.0",
|
|
43
|
-
"@backstage/core-plugin-api": "^1.
|
|
43
|
+
"@backstage/core-plugin-api": "^1.7.0-next.0",
|
|
44
44
|
"@backstage/types": "^1.1.1",
|
|
45
45
|
"@backstage/version-bridge": "^1.0.5",
|
|
46
46
|
"@types/prop-types": "^15.7.3",
|
|
@@ -58,8 +58,8 @@
|
|
|
58
58
|
"react-router-dom": "6.0.0-beta.0 || ^6.3.0"
|
|
59
59
|
},
|
|
60
60
|
"devDependencies": {
|
|
61
|
-
"@backstage/cli": "^0.
|
|
62
|
-
"@backstage/test-utils": "^1.4.
|
|
61
|
+
"@backstage/cli": "^0.23.0-next.1",
|
|
62
|
+
"@backstage/test-utils": "^1.4.4-next.1",
|
|
63
63
|
"@testing-library/dom": "^8.0.0",
|
|
64
64
|
"@testing-library/jest-dom": "^5.10.1",
|
|
65
65
|
"@testing-library/react": "^12.1.3",
|