@backstage/plugin-signals-node 0.1.9-next.1 → 0.1.9-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 CHANGED
@@ -1,5 +1,17 @@
1
1
  # @backstage/plugin-signals-node
2
2
 
3
+ ## 0.1.9-next.2
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+ - @backstage/backend-plugin-api@0.8.0-next.2
9
+ - @backstage/backend-common@0.23.4-next.2
10
+ - @backstage/plugin-auth-node@0.5.0-next.2
11
+ - @backstage/plugin-events-node@0.3.9-next.2
12
+ - @backstage/config@1.2.0
13
+ - @backstage/types@1.1.1
14
+
3
15
  ## 0.1.9-next.1
4
16
 
5
17
  ### Patch Changes
package/dist/index.d.ts CHANGED
@@ -36,12 +36,12 @@ interface SignalService extends SignalsService {
36
36
  }
37
37
 
38
38
  /** @public */
39
- declare const signalsServiceRef: _backstage_backend_plugin_api.ServiceRef<SignalsService, "plugin">;
39
+ declare const signalsServiceRef: _backstage_backend_plugin_api.ServiceRef<SignalsService, "plugin", "singleton">;
40
40
  /**
41
41
  * @public
42
42
  * @deprecated Use `signalsServiceRef` instead
43
43
  */
44
- declare const signalService: _backstage_backend_plugin_api.ServiceRef<SignalsService, "plugin">;
44
+ declare const signalService: _backstage_backend_plugin_api.ServiceRef<SignalsService, "plugin", "singleton">;
45
45
 
46
46
  /** @public */
47
47
  declare class DefaultSignalsService implements SignalsService {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-signals-node",
3
- "version": "0.1.9-next.1",
3
+ "version": "0.1.9-next.2",
4
4
  "description": "Node.js library for the signals plugin",
5
5
  "backstage": {
6
6
  "role": "node-library",
@@ -37,18 +37,18 @@
37
37
  "test": "backstage-cli package test"
38
38
  },
39
39
  "dependencies": {
40
- "@backstage/backend-common": "^0.23.4-next.1",
41
- "@backstage/backend-plugin-api": "^0.7.1-next.1",
40
+ "@backstage/backend-common": "^0.23.4-next.2",
41
+ "@backstage/backend-plugin-api": "^0.8.0-next.2",
42
42
  "@backstage/config": "^1.2.0",
43
- "@backstage/plugin-auth-node": "^0.4.18-next.1",
44
- "@backstage/plugin-events-node": "^0.3.9-next.1",
43
+ "@backstage/plugin-auth-node": "^0.5.0-next.2",
44
+ "@backstage/plugin-events-node": "^0.3.9-next.2",
45
45
  "@backstage/types": "^1.1.1",
46
46
  "express": "^4.17.1",
47
47
  "uuid": "^9.0.0",
48
48
  "ws": "^8.14.2"
49
49
  },
50
50
  "devDependencies": {
51
- "@backstage/cli": "^0.27.0-next.1",
51
+ "@backstage/cli": "^0.27.0-next.3",
52
52
  "@types/express": "^4.17.21"
53
53
  }
54
54
  }