@backstage/plugin-signals 0.0.9-next.0 → 0.0.9

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 (3) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/README.md +1 -17
  3. package/package.json +6 -6
package/CHANGELOG.md CHANGED
@@ -1,5 +1,16 @@
1
1
  # @backstage/plugin-signals
2
2
 
3
+ ## 0.0.9
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+ - @backstage/core-components@0.14.10
9
+ - @backstage/core-plugin-api@1.9.3
10
+ - @backstage/theme@0.5.6
11
+ - @backstage/types@1.1.1
12
+ - @backstage/plugin-signals-react@0.0.4
13
+
3
14
  ## 0.0.9-next.0
4
15
 
5
16
  ### Patch Changes
package/README.md CHANGED
@@ -9,23 +9,7 @@ Signals plugin allows backend plugins to publish messages to frontend plugins.
9
9
  This plugin contains client that can receive messages from the backend. To get started,
10
10
  see installation instructions from `@backstage/plugin-signals-node`, `@backstage/plugin-signals-backend`.
11
11
 
12
- To install the plugin, you have to add the following to your `packages/app/src/plugins.ts`:
13
-
14
- ```ts
15
- export { signalsPlugin } from '@backstage/plugin-signals';
16
- ```
17
-
18
- And make sure that your `packages/app/src/App.tsx` contains:
19
-
20
- ```ts
21
- import * as plugins from './plugins';
22
-
23
- const app = createApp({
24
- // ...
25
- plugins: Object.values(plugins),
26
- // ...
27
- });
28
- ```
12
+ To install this signals frontend plugin, please refer the [Getting Started](https://backstage.io/docs/notifications) Backstage Notifications and Signals documentation section.
29
13
 
30
14
  Now you can utilize the API from other plugins using the `@backstage/plugin-signals-react` package or simply by:
31
15
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-signals",
3
- "version": "0.0.9-next.0",
3
+ "version": "0.0.9",
4
4
  "backstage": {
5
5
  "role": "frontend-plugin",
6
6
  "pluginId": "signals",
@@ -38,7 +38,7 @@
38
38
  "test": "backstage-cli package test"
39
39
  },
40
40
  "dependencies": {
41
- "@backstage/core-components": "^0.14.10-next.0",
41
+ "@backstage/core-components": "^0.14.10",
42
42
  "@backstage/core-plugin-api": "^1.9.3",
43
43
  "@backstage/plugin-signals-react": "^0.0.4",
44
44
  "@backstage/theme": "^0.5.6",
@@ -50,10 +50,10 @@
50
50
  "uuid": "^9.0.0"
51
51
  },
52
52
  "devDependencies": {
53
- "@backstage/cli": "^0.27.0-next.0",
54
- "@backstage/core-app-api": "^1.14.1-next.0",
55
- "@backstage/dev-utils": "^1.0.36-next.0",
56
- "@backstage/test-utils": "^1.5.9-next.0",
53
+ "@backstage/cli": "^0.27.0",
54
+ "@backstage/core-app-api": "^1.14.2",
55
+ "@backstage/dev-utils": "^1.0.37",
56
+ "@backstage/test-utils": "^1.5.10",
57
57
  "@testing-library/jest-dom": "^6.0.0",
58
58
  "@testing-library/react": "^15.0.0",
59
59
  "@testing-library/user-event": "^14.0.0",