@backstage/core-plugin-api 1.0.2-next.0 → 1.0.3-next.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +21 -0
  2. package/package.json +7 -7
package/CHANGELOG.md CHANGED
@@ -1,5 +1,26 @@
1
1
  # @backstage/core-plugin-api
2
2
 
3
+ ## 1.0.3-next.0
4
+
5
+ ### Patch Changes
6
+
7
+ - 8f7b1835df: Updated dependency `msw` to `^0.41.0`.
8
+
9
+ ## 1.0.2
10
+
11
+ ### Patch Changes
12
+
13
+ - 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.
14
+ - Updated dependencies
15
+ - @backstage/config@1.0.1
16
+
17
+ ## 1.0.2-next.1
18
+
19
+ ### Patch Changes
20
+
21
+ - Updated dependencies
22
+ - @backstage/config@1.0.1-next.0
23
+
3
24
  ## 1.0.2-next.0
4
25
 
5
26
  ### 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-next.0",
4
+ "version": "1.0.3-next.0",
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.0",
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-next.1",
50
- "@backstage/core-app-api": "^1.0.2-next.0",
51
- "@backstage/test-utils": "^1.1.0-next.1",
49
+ "@backstage/cli": "^0.17.2-next.1",
50
+ "@backstage/core-app-api": "^1.0.3-next.0",
51
+ "@backstage/test-utils": "^1.1.1-next.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",
@@ -58,10 +58,10 @@
58
58
  "@types/prop-types": "^15.7.3",
59
59
  "@types/zen-observable": "^0.8.0",
60
60
  "cross-fetch": "^3.1.5",
61
- "msw": "^0.35.0"
61
+ "msw": "^0.42.0"
62
62
  },
63
63
  "files": [
64
64
  "dist"
65
65
  ],
66
- "gitHead": "0b3df66a238c66a5498dab85b1ed85a8607289f1"
66
+ "gitHead": "e15c24ddb5d14034629ced8a5a5d8f12b8f1a7dd"
67
67
  }