@backstage/backend-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.
Files changed (2) hide show
  1. package/CHANGELOG.md +19 -0
  2. package/package.json +10 -10
package/CHANGELOG.md CHANGED
@@ -1,5 +1,24 @@
1
1
  # @backstage/backend-plugin-api
2
2
 
3
+ ## 1.7.0
4
+
5
+ ### Minor Changes
6
+
7
+ - f1d29b4: Added support for extension point factories. This makes it possible to call `registerExtensionPoint` with a single options argument and provide a factory for the extension point rather than a direct implementation. The factory is passed a context with a `reportModuleStartupFailure` method that makes it possible for plugins to report and attribute startup errors to the module that consumed the extension point.
8
+ - bb9b471: Plugin IDs that do not match the standard format are deprecated (letters, digits, and dashes only, starting with a letter). Plugin IDs that do no match this format will be rejected in a future release.
9
+
10
+ In addition, plugin IDs that don't match the legacy pattern that also allows underscores, with be rejected.
11
+
12
+ ### Patch Changes
13
+
14
+ - 7455dae: Use node prefix on native imports
15
+ - 69d880e: Bump to latest zod to ensure it has the latest features
16
+ - Updated dependencies
17
+ - @backstage/cli-common@0.1.18
18
+ - @backstage/plugin-auth-node@0.6.13
19
+ - @backstage/plugin-permission-common@0.9.6
20
+ - @backstage/plugin-permission-node@0.10.10
21
+
3
22
  ## 1.7.0-next.1
4
23
 
5
24
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/backend-plugin-api",
3
- "version": "1.7.0-next.1",
3
+ "version": "1.7.0",
4
4
  "description": "Core API used by Backstage backend plugins",
5
5
  "backstage": {
6
6
  "role": "node-library"
@@ -65,13 +65,13 @@
65
65
  "test": "backstage-cli package test"
66
66
  },
67
67
  "dependencies": {
68
- "@backstage/cli-common": "0.1.18-next.0",
69
- "@backstage/config": "1.3.6",
70
- "@backstage/errors": "1.2.7",
71
- "@backstage/plugin-auth-node": "0.6.13-next.0",
72
- "@backstage/plugin-permission-common": "0.9.6-next.0",
73
- "@backstage/plugin-permission-node": "0.10.10-next.0",
74
- "@backstage/types": "1.2.2",
68
+ "@backstage/cli-common": "^0.1.18",
69
+ "@backstage/config": "^1.3.6",
70
+ "@backstage/errors": "^1.2.7",
71
+ "@backstage/plugin-auth-node": "^0.6.13",
72
+ "@backstage/plugin-permission-common": "^0.9.6",
73
+ "@backstage/plugin-permission-node": "^0.10.10",
74
+ "@backstage/types": "^1.2.2",
75
75
  "@types/express": "^4.17.6",
76
76
  "@types/json-schema": "^7.0.6",
77
77
  "@types/luxon": "^3.0.0",
@@ -81,8 +81,8 @@
81
81
  "zod": "^3.25.76"
82
82
  },
83
83
  "devDependencies": {
84
- "@backstage/backend-test-utils": "1.10.5-next.0",
85
- "@backstage/cli": "0.35.4-next.1"
84
+ "@backstage/backend-test-utils": "^1.11.0",
85
+ "@backstage/cli": "^0.35.4"
86
86
  },
87
87
  "configSchema": "config.d.ts"
88
88
  }