@backstage/backend-plugin-api 0.0.0-nightly-20230214023046 → 0.0.0-nightly-20230218023213
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 +15 -3
- package/README.md +5 -4
- package/alpha/package.json +1 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,17 @@
|
|
|
1
1
|
# @backstage/backend-plugin-api
|
|
2
2
|
|
|
3
|
-
## 0.0.0-nightly-
|
|
3
|
+
## 0.0.0-nightly-20230218023213
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
- @backstage/backend-tasks@0.0.0-nightly-20230218023213
|
|
9
|
+
- @backstage/config@1.0.6
|
|
10
|
+
- @backstage/types@1.0.2
|
|
11
|
+
- @backstage/plugin-auth-node@0.0.0-nightly-20230218023213
|
|
12
|
+
- @backstage/plugin-permission-common@0.7.3
|
|
13
|
+
|
|
14
|
+
## 0.4.0
|
|
4
15
|
|
|
5
16
|
### Minor Changes
|
|
6
17
|
|
|
@@ -15,6 +26,7 @@
|
|
|
15
26
|
|
|
16
27
|
- 9c9456fd33: Removed the unused `TypesToServiceRef` type
|
|
17
28
|
- 181c03edb5: Aligned opaque type markers to all use a `$type` property with namespacing.
|
|
29
|
+
- 725383f69d: Tweaked messaging in the README.
|
|
18
30
|
- ae88f61e00: The `register` methods passed to `createBackendPlugin` and `createBackendModule`
|
|
19
31
|
now have dedicated `BackendPluginRegistrationPoints` and
|
|
20
32
|
`BackendModuleRegistrationPoints` arguments, respectively. This lets us make it
|
|
@@ -22,10 +34,10 @@
|
|
|
22
34
|
dependencies to plugins (should only ever be done for modules). This has no
|
|
23
35
|
practical effect on code that was already well behaved.
|
|
24
36
|
- Updated dependencies
|
|
25
|
-
- @backstage/backend-tasks@0.
|
|
37
|
+
- @backstage/backend-tasks@0.4.3
|
|
26
38
|
- @backstage/config@1.0.6
|
|
27
39
|
- @backstage/types@1.0.2
|
|
28
|
-
- @backstage/plugin-auth-node@0.
|
|
40
|
+
- @backstage/plugin-auth-node@0.2.11
|
|
29
41
|
- @backstage/plugin-permission-common@0.7.3
|
|
30
42
|
|
|
31
43
|
## 0.4.0-next.2
|
package/README.md
CHANGED
|
@@ -1,19 +1,20 @@
|
|
|
1
1
|
# @backstage/backend-plugin-api
|
|
2
2
|
|
|
3
|
-
**This package is
|
|
3
|
+
**This package is EXPERIMENTAL, but we encourage use of it to add support for the new backend system in your own plugins**
|
|
4
4
|
|
|
5
|
-
This package provides the core API used by Backstage backend plugins.
|
|
5
|
+
This package provides the core API used by Backstage backend plugins and modules.
|
|
6
6
|
|
|
7
7
|
## Installation
|
|
8
8
|
|
|
9
|
-
Add the library to your backend plugin package:
|
|
9
|
+
Add the library to your backend plugin or module package:
|
|
10
10
|
|
|
11
11
|
```bash
|
|
12
12
|
# From your Backstage root directory
|
|
13
|
-
yarn add --cwd
|
|
13
|
+
yarn add --cwd plugins/<plugin>-backend @backstage/backend-plugin-api
|
|
14
14
|
```
|
|
15
15
|
|
|
16
16
|
## Documentation
|
|
17
17
|
|
|
18
18
|
- [Backstage Readme](https://github.com/backstage/backstage/blob/master/README.md)
|
|
19
19
|
- [Backstage Documentation](https://github.com/backstage/backstage/blob/master/docs/README.md)
|
|
20
|
+
- [Backstage Backend System](https://backstage.io/docs/backend-system/)
|
package/alpha/package.json
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/backend-plugin-api",
|
|
3
3
|
"description": "Core API used by Backstage backend plugins",
|
|
4
|
-
"version": "0.0.0-nightly-
|
|
4
|
+
"version": "0.0.0-nightly-20230218023213",
|
|
5
5
|
"main": "dist/index.cjs.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"publishConfig": {
|
|
@@ -33,9 +33,9 @@
|
|
|
33
33
|
"start": "backstage-cli package start"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@backstage/backend-tasks": "^0.0.0-nightly-
|
|
36
|
+
"@backstage/backend-tasks": "^0.0.0-nightly-20230218023213",
|
|
37
37
|
"@backstage/config": "^1.0.6",
|
|
38
|
-
"@backstage/plugin-auth-node": "^0.0.0-nightly-
|
|
38
|
+
"@backstage/plugin-auth-node": "^0.0.0-nightly-20230218023213",
|
|
39
39
|
"@backstage/plugin-permission-common": "^0.7.3",
|
|
40
40
|
"@backstage/types": "^1.0.2",
|
|
41
41
|
"@types/express": "^4.17.6",
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
"knex": "^2.0.0"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
|
-
"@backstage/cli": "^0.0.0-nightly-
|
|
46
|
+
"@backstage/cli": "^0.0.0-nightly-20230218023213"
|
|
47
47
|
},
|
|
48
48
|
"files": [
|
|
49
49
|
"dist",
|