@backstage/core-app-api 0.5.2-next.0 → 0.5.4
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 +27 -0
- package/package.json +19 -15
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,32 @@
|
|
|
1
1
|
# @backstage/core-app-api
|
|
2
2
|
|
|
3
|
+
## 0.5.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
- @backstage/core-plugin-api@0.7.0
|
|
9
|
+
|
|
10
|
+
## 0.5.3
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- 1ed305728b: Bump `node-fetch` to version 2.6.7 and `cross-fetch` to version 3.1.5
|
|
15
|
+
- c77c5c7eb6: Added `backstage.role` to `package.json`
|
|
16
|
+
- Updated dependencies
|
|
17
|
+
- @backstage/core-plugin-api@0.6.1
|
|
18
|
+
- @backstage/config@0.1.14
|
|
19
|
+
- @backstage/types@0.1.2
|
|
20
|
+
- @backstage/version-bridge@0.1.2
|
|
21
|
+
|
|
22
|
+
## 0.5.2
|
|
23
|
+
|
|
24
|
+
### Patch Changes
|
|
25
|
+
|
|
26
|
+
- 40775bd263: Switched out the `GithubAuth` implementation to use the common `OAuth2` implementation. This relies on the simultaneous change in `@backstage/plugin-auth-backend` that enabled access token storage in cookies rather than the current solution that's based on `LocalStorage`.
|
|
27
|
+
|
|
28
|
+
> **NOTE:** Make sure you upgrade the `auth-backend` deployment before or at the same time as you deploy this change.
|
|
29
|
+
|
|
3
30
|
## 0.5.2-next.0
|
|
4
31
|
|
|
5
32
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,13 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/core-app-api",
|
|
3
3
|
"description": "Core app API used by Backstage apps",
|
|
4
|
-
"version": "0.5.
|
|
4
|
+
"version": "0.5.4",
|
|
5
5
|
"private": false,
|
|
6
6
|
"publishConfig": {
|
|
7
7
|
"access": "public",
|
|
8
8
|
"main": "dist/index.esm.js",
|
|
9
9
|
"types": "dist/index.d.ts"
|
|
10
10
|
},
|
|
11
|
+
"backstage": {
|
|
12
|
+
"role": "web-library"
|
|
13
|
+
},
|
|
11
14
|
"homepage": "https://backstage.io",
|
|
12
15
|
"repository": {
|
|
13
16
|
"type": "git",
|
|
@@ -21,18 +24,19 @@
|
|
|
21
24
|
"main": "dist/index.esm.js",
|
|
22
25
|
"types": "dist/index.d.ts",
|
|
23
26
|
"scripts": {
|
|
24
|
-
"build": "backstage-cli build
|
|
25
|
-
"lint": "backstage-cli lint",
|
|
26
|
-
"test": "backstage-cli test",
|
|
27
|
-
"prepack": "backstage-cli prepack",
|
|
28
|
-
"postpack": "backstage-cli postpack",
|
|
29
|
-
"clean": "backstage-cli clean"
|
|
27
|
+
"build": "backstage-cli package build",
|
|
28
|
+
"lint": "backstage-cli package lint",
|
|
29
|
+
"test": "backstage-cli package test",
|
|
30
|
+
"prepack": "backstage-cli package prepack",
|
|
31
|
+
"postpack": "backstage-cli package postpack",
|
|
32
|
+
"clean": "backstage-cli package clean",
|
|
33
|
+
"start": "backstage-cli package start"
|
|
30
34
|
},
|
|
31
35
|
"dependencies": {
|
|
32
|
-
"@backstage/config": "^0.1.
|
|
33
|
-
"@backstage/core-plugin-api": "^0.
|
|
34
|
-
"@backstage/types": "^0.1.
|
|
35
|
-
"@backstage/version-bridge": "^0.1.
|
|
36
|
+
"@backstage/config": "^0.1.15",
|
|
37
|
+
"@backstage/core-plugin-api": "^0.7.0",
|
|
38
|
+
"@backstage/types": "^0.1.3",
|
|
39
|
+
"@backstage/version-bridge": "^0.1.2",
|
|
36
40
|
"@types/prop-types": "^15.7.3",
|
|
37
41
|
"prop-types": "^15.7.2",
|
|
38
42
|
"react-router-dom": "6.0.0-beta.0",
|
|
@@ -45,8 +49,8 @@
|
|
|
45
49
|
"react": "^16.13.1 || ^17.0.0"
|
|
46
50
|
},
|
|
47
51
|
"devDependencies": {
|
|
48
|
-
"@backstage/cli": "^0.
|
|
49
|
-
"@backstage/test-utils": "^0.2.
|
|
52
|
+
"@backstage/cli": "^0.14.1",
|
|
53
|
+
"@backstage/test-utils": "^0.2.6",
|
|
50
54
|
"@testing-library/jest-dom": "^5.10.1",
|
|
51
55
|
"@testing-library/react": "^11.2.5",
|
|
52
56
|
"@testing-library/react-hooks": "^7.0.2",
|
|
@@ -54,7 +58,7 @@
|
|
|
54
58
|
"@types/jest": "^26.0.7",
|
|
55
59
|
"@types/node": "^14.14.32",
|
|
56
60
|
"@types/zen-observable": "^0.8.0",
|
|
57
|
-
"cross-fetch": "^3.
|
|
61
|
+
"cross-fetch": "^3.1.5",
|
|
58
62
|
"msw": "^0.35.0"
|
|
59
63
|
},
|
|
60
64
|
"files": [
|
|
@@ -62,5 +66,5 @@
|
|
|
62
66
|
"config.d.ts"
|
|
63
67
|
],
|
|
64
68
|
"configSchema": "config.d.ts",
|
|
65
|
-
"gitHead": "
|
|
69
|
+
"gitHead": "a15da6ea1e3e8adc37be98be064071c8b5279b4a"
|
|
66
70
|
}
|