@backstage/plugin-events-node 0.4.1-next.1 → 0.4.1

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,17 @@
1
1
  # @backstage/plugin-events-node
2
2
 
3
+ ## 0.4.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 094eaa3: Remove references to in-repo backend-common
8
+ - 2f88f88: Updated backend installation instructions.
9
+ - a90ce4a: The default implementation of the `EventsService` now uses the new event bus for distributing events across multiple backend instances if the events backend plugin is installed.
10
+ - Updated dependencies
11
+ - @backstage/backend-plugin-api@1.0.1
12
+ - @backstage/errors@1.2.4
13
+ - @backstage/types@1.1.1
14
+
3
15
  ## 0.4.1-next.1
4
16
 
5
17
  ### Patch Changes
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-events-node__alpha",
3
- "version": "0.4.1-next.1",
3
+ "version": "0.4.1",
4
4
  "main": "../dist/alpha.cjs.js",
5
5
  "types": "../dist/alpha.d.ts"
6
6
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-events-node",
3
- "version": "0.4.1-next.1",
3
+ "version": "0.4.1",
4
4
  "description": "The plugin-events-node module for @backstage/plugin-events-backend",
5
5
  "backstage": {
6
6
  "role": "node-library",
@@ -50,15 +50,15 @@
50
50
  "test": "backstage-cli package test"
51
51
  },
52
52
  "dependencies": {
53
- "@backstage/backend-plugin-api": "1.0.1-next.1",
54
- "@backstage/errors": "1.2.4",
55
- "@backstage/types": "1.1.1",
53
+ "@backstage/backend-plugin-api": "^1.0.1",
54
+ "@backstage/errors": "^1.2.4",
55
+ "@backstage/types": "^1.1.1",
56
56
  "cross-fetch": "^4.0.0",
57
57
  "uri-template": "^2.0.0"
58
58
  },
59
59
  "devDependencies": {
60
60
  "@backstage/backend-common": "^0.25.0",
61
- "@backstage/backend-test-utils": "1.0.1-next.2",
62
- "@backstage/cli": "0.28.0-next.2"
61
+ "@backstage/backend-test-utils": "^1.0.1",
62
+ "@backstage/cli": "^0.28.0"
63
63
  }
64
64
  }