@backstage/core-plugin-api 1.7.0-next.1 → 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 CHANGED
@@ -1,5 +1,21 @@
1
1
  # @backstage/core-plugin-api
2
2
 
3
+ ## 1.7.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 322bbcae24: Removed the exprimental plugin configuration API. The `__experimentalReconfigure()` from the plugin options as well as the `__experimentalConfigure()` method on plugin instances have both been removed.
8
+
9
+ ### Patch Changes
10
+
11
+ - 0b55f773a7: Removed some unused dependencies
12
+ - 9a1fce352e: Updated dependency `@testing-library/jest-dom` to `^6.0.0`.
13
+ - f95af4e540: Updated dependency `@testing-library/dom` to `^9.0.0`.
14
+ - Updated dependencies
15
+ - @backstage/version-bridge@1.0.6
16
+ - @backstage/config@1.1.1
17
+ - @backstage/types@1.1.1
18
+
3
19
  ## 1.7.0-next.1
4
20
 
5
21
  ### Patch Changes
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/core-plugin-api",
3
- "version": "1.7.0-next.1",
3
+ "version": "1.7.0",
4
4
  "main": "../dist/alpha.esm.js",
5
5
  "module": "../dist/alpha.esm.js",
6
6
  "types": "../dist/alpha.d.ts"
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.7.0-next.1",
4
+ "version": "1.7.0",
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },
@@ -44,9 +44,9 @@
44
44
  "start": "backstage-cli package start"
45
45
  },
46
46
  "dependencies": {
47
- "@backstage/config": "^1.1.1-next.0",
47
+ "@backstage/config": "^1.1.1",
48
48
  "@backstage/types": "^1.1.1",
49
- "@backstage/version-bridge": "^1.0.5",
49
+ "@backstage/version-bridge": "^1.0.6",
50
50
  "@types/react": "^16.13.1 || ^17.0.0",
51
51
  "history": "^5.0.0",
52
52
  "i18next": "^22.4.15"
@@ -57,11 +57,11 @@
57
57
  "react-router-dom": "6.0.0-beta.0 || ^6.3.0"
58
58
  },
59
59
  "devDependencies": {
60
- "@backstage/cli": "^0.23.0-next.2",
61
- "@backstage/core-app-api": "^1.11.0-next.2",
62
- "@backstage/test-utils": "^1.4.4-next.2",
63
- "@testing-library/dom": "^8.0.0",
64
- "@testing-library/jest-dom": "^5.10.1",
60
+ "@backstage/cli": "^0.23.0",
61
+ "@backstage/core-app-api": "^1.11.0",
62
+ "@backstage/test-utils": "^1.4.4",
63
+ "@testing-library/dom": "^9.0.0",
64
+ "@testing-library/jest-dom": "^6.0.0",
65
65
  "@testing-library/react": "^12.1.3",
66
66
  "@testing-library/react-hooks": "^8.0.0",
67
67
  "@testing-library/user-event": "^14.0.0"