@backstage/plugin-signals-backend 0.1.0-next.1 → 0.1.0-next.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 +14 -0
- package/README.md +1 -1
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @backstage/plugin-signals-backend
|
|
2
2
|
|
|
3
|
+
## 0.1.0-next.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 6d84ee6: Changed to use the refactored signal service naming
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @backstage/plugin-signals-node@0.1.0-next.2
|
|
10
|
+
- @backstage/backend-common@0.21.4-next.2
|
|
11
|
+
- @backstage/plugin-auth-node@0.4.9-next.2
|
|
12
|
+
- @backstage/backend-plugin-api@0.6.14-next.2
|
|
13
|
+
- @backstage/config@1.2.0-next.1
|
|
14
|
+
- @backstage/types@1.1.1
|
|
15
|
+
- @backstage/plugin-events-node@0.3.0-next.2
|
|
16
|
+
|
|
3
17
|
## 0.1.0-next.1
|
|
4
18
|
|
|
5
19
|
### Minor Changes
|
package/README.md
CHANGED
|
@@ -6,7 +6,7 @@ Signals plugin allows backend plugins to publish messages to frontend plugins.
|
|
|
6
6
|
|
|
7
7
|
## Getting started
|
|
8
8
|
|
|
9
|
-
First install the `@backstage/plugin-signals-node` plugin to get the `
|
|
9
|
+
First install the `@backstage/plugin-signals-node` plugin to get the `SignalsService` set up.
|
|
10
10
|
|
|
11
11
|
Next, add Signals router to your backend in `packages/backend/src/plugins/signals.ts`:
|
|
12
12
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-signals-backend",
|
|
3
|
-
"version": "0.1.0-next.
|
|
3
|
+
"version": "0.1.0-next.2",
|
|
4
4
|
"main": "dist/index.cjs.js",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -27,12 +27,12 @@
|
|
|
27
27
|
"postpack": "backstage-cli package postpack"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@backstage/backend-common": "^0.21.4-next.
|
|
31
|
-
"@backstage/backend-plugin-api": "^0.6.14-next.
|
|
30
|
+
"@backstage/backend-common": "^0.21.4-next.2",
|
|
31
|
+
"@backstage/backend-plugin-api": "^0.6.14-next.2",
|
|
32
32
|
"@backstage/config": "^1.2.0-next.1",
|
|
33
|
-
"@backstage/plugin-auth-node": "^0.4.9-next.
|
|
34
|
-
"@backstage/plugin-events-node": "^0.3.0-next.
|
|
35
|
-
"@backstage/plugin-signals-node": "^0.1.0-next.
|
|
33
|
+
"@backstage/plugin-auth-node": "^0.4.9-next.2",
|
|
34
|
+
"@backstage/plugin-events-node": "^0.3.0-next.2",
|
|
35
|
+
"@backstage/plugin-signals-node": "^0.1.0-next.2",
|
|
36
36
|
"@backstage/types": "^1.1.1",
|
|
37
37
|
"@types/express": "*",
|
|
38
38
|
"express": "^4.17.1",
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
"yn": "^4.0.0"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
|
-
"@backstage/cli": "^0.25.3-next.
|
|
48
|
+
"@backstage/cli": "^0.25.3-next.2",
|
|
49
49
|
"@types/supertest": "^2.0.8",
|
|
50
50
|
"msw": "^1.0.0",
|
|
51
51
|
"supertest": "^6.2.4"
|