@backstage/plugin-signals-node 0.0.1-next.3 → 0.0.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +26 -0
  2. package/package.json +6 -6
package/CHANGELOG.md CHANGED
@@ -1,5 +1,31 @@
1
1
  # @backstage/plugin-signals-node
2
2
 
3
+ ## 0.0.2
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+ - @backstage/backend-common@0.21.1
9
+ - @backstage/plugin-auth-node@0.4.6
10
+ - @backstage/backend-plugin-api@0.6.11
11
+ - @backstage/plugin-events-node@0.2.20
12
+
13
+ ## 0.0.1
14
+
15
+ ### Patch Changes
16
+
17
+ - 447d210: Fix disconnect loop on server start
18
+ - 8472188: Added or fixed the `repository` field in `package.json`.
19
+ - 047bead: Add support to subscribe and publish messages through signals plugins
20
+ - 1ab22c4: Allow defining signal type to publish and receive
21
+ - Updated dependencies
22
+ - @backstage/backend-common@0.21.0
23
+ - @backstage/plugin-auth-node@0.4.4
24
+ - @backstage/backend-plugin-api@0.6.10
25
+ - @backstage/config@1.1.1
26
+ - @backstage/types@1.1.1
27
+ - @backstage/plugin-events-node@0.2.19
28
+
3
29
  ## 0.0.1-next.3
4
30
 
5
31
  ### Patch Changes
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@backstage/plugin-signals-node",
3
3
  "description": "Node.js library for the signals plugin",
4
- "version": "0.0.1-next.3",
4
+ "version": "0.0.2",
5
5
  "main": "dist/index.cjs.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "license": "Apache-2.0",
@@ -27,18 +27,18 @@
27
27
  "postpack": "backstage-cli package postpack"
28
28
  },
29
29
  "devDependencies": {
30
- "@backstage/cli": "^0.25.2-next.3",
30
+ "@backstage/cli": "^0.25.2",
31
31
  "@types/express": "^4.17.21"
32
32
  },
33
33
  "files": [
34
34
  "dist"
35
35
  ],
36
36
  "dependencies": {
37
- "@backstage/backend-common": "^0.21.0-next.3",
38
- "@backstage/backend-plugin-api": "^0.6.10-next.3",
37
+ "@backstage/backend-common": "^0.21.1",
38
+ "@backstage/backend-plugin-api": "^0.6.11",
39
39
  "@backstage/config": "^1.1.1",
40
- "@backstage/plugin-auth-node": "^0.4.4-next.3",
41
- "@backstage/plugin-events-node": "^0.2.19-next.3",
40
+ "@backstage/plugin-auth-node": "^0.4.6",
41
+ "@backstage/plugin-events-node": "^0.2.20",
42
42
  "@backstage/types": "^1.1.1",
43
43
  "express": "^4.17.1",
44
44
  "uuid": "^8.0.0",