@backstage/core-plugin-api 1.0.2-next.1 → 1.0.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 +8 -0
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @backstage/core-plugin-api
|
|
2
2
|
|
|
3
|
+
## 1.0.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- b653a5595c: The authentication APIs are no longer `@alpha`. Since the `@backstage/core-plugin-api` has no `/alpha` entrypoint, the only effect of marking the APIs as `@alpha` was to hide them in documentation. They are still expected to be widely used and there will be a migration path if they are changed in the future.
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @backstage/config@1.0.1
|
|
10
|
+
|
|
3
11
|
## 1.0.2-next.1
|
|
4
12
|
|
|
5
13
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/core-plugin-api",
|
|
3
3
|
"description": "Core API used by Backstage plugins",
|
|
4
|
-
"version": "1.0.2
|
|
4
|
+
"version": "1.0.2",
|
|
5
5
|
"private": false,
|
|
6
6
|
"publishConfig": {
|
|
7
7
|
"access": "public",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"start": "backstage-cli package start"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@backstage/config": "^1.0.1
|
|
36
|
+
"@backstage/config": "^1.0.1",
|
|
37
37
|
"@backstage/types": "^1.0.0",
|
|
38
38
|
"@backstage/version-bridge": "^1.0.1",
|
|
39
39
|
"history": "^5.0.0",
|
|
@@ -46,9 +46,9 @@
|
|
|
46
46
|
"react": "^16.13.1 || ^17.0.0"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
|
-
"@backstage/cli": "^0.17.1
|
|
50
|
-
"@backstage/core-app-api": "^1.0.2
|
|
51
|
-
"@backstage/test-utils": "^1.1.0
|
|
49
|
+
"@backstage/cli": "^0.17.1",
|
|
50
|
+
"@backstage/core-app-api": "^1.0.2",
|
|
51
|
+
"@backstage/test-utils": "^1.1.0",
|
|
52
52
|
"@testing-library/jest-dom": "^5.10.1",
|
|
53
53
|
"@testing-library/react": "^12.1.3",
|
|
54
54
|
"@testing-library/react-hooks": "^8.0.0",
|
|
@@ -63,5 +63,5 @@
|
|
|
63
63
|
"files": [
|
|
64
64
|
"dist"
|
|
65
65
|
],
|
|
66
|
-
"gitHead": "
|
|
66
|
+
"gitHead": "96323f280ba32ee526c5b151cda42260aee927c9"
|
|
67
67
|
}
|