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

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 +26 -0
  2. package/README.md +2 -2
  3. package/package.json +10 -10
package/CHANGELOG.md CHANGED
@@ -1,5 +1,31 @@
1
1
  # @backstage/plugin-signals
2
2
 
3
+ ## 0.0.5
4
+
5
+ ### Patch Changes
6
+
7
+ - abfbcfc: Updated dependency `@testing-library/react` to `^15.0.0`.
8
+ - 9a41a7b: Migrate signals and notifications to the new backend in local development
9
+ - f06458c: fixed typo in docs
10
+ - Updated dependencies
11
+ - @backstage/core-components@0.14.4
12
+ - @backstage/core-plugin-api@1.9.2
13
+ - @backstage/theme@0.5.3
14
+ - @backstage/plugin-signals-react@0.0.3
15
+ - @backstage/types@1.1.1
16
+
17
+ ## 0.0.5-next.1
18
+
19
+ ### Patch Changes
20
+
21
+ - f06458c: fixed typo in docs
22
+ - Updated dependencies
23
+ - @backstage/plugin-signals-react@0.0.3-next.0
24
+ - @backstage/core-components@0.14.4-next.0
25
+ - @backstage/core-plugin-api@1.9.1
26
+ - @backstage/theme@0.5.2
27
+ - @backstage/types@1.1.1
28
+
3
29
  ## 0.0.5-next.0
4
30
 
5
31
  ### Patch Changes
package/README.md CHANGED
@@ -30,9 +30,9 @@ const app = createApp({
30
30
  Now you can utilize the API from other plugins using the `@backstage/plugin-signals-react` package or simply by:
31
31
 
32
32
  ```ts
33
- import { signalsApiRef } from '@backstage/plugin-signals-react';
33
+ import { signalApiRef } from '@backstage/plugin-signals-react';
34
34
 
35
- const signals = useApi(signalsApiRef);
35
+ const signals = useApi(signalApiRef);
36
36
  const { unsubscribe } = signals.subscribe(
37
37
  'myplugin:topic',
38
38
  (message: JsonObject) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-signals",
3
- "version": "0.0.5-next.0",
3
+ "version": "0.0.5",
4
4
  "backstage": {
5
5
  "role": "frontend-plugin"
6
6
  },
@@ -31,10 +31,10 @@
31
31
  "test": "backstage-cli package test"
32
32
  },
33
33
  "dependencies": {
34
- "@backstage/core-components": "^0.14.4-next.0",
35
- "@backstage/core-plugin-api": "^1.9.1",
36
- "@backstage/plugin-signals-react": "^0.0.2",
37
- "@backstage/theme": "^0.5.2",
34
+ "@backstage/core-components": "^0.14.4",
35
+ "@backstage/core-plugin-api": "^1.9.2",
36
+ "@backstage/plugin-signals-react": "^0.0.3",
37
+ "@backstage/theme": "^0.5.3",
38
38
  "@backstage/types": "^1.1.1",
39
39
  "@material-ui/core": "^4.12.4",
40
40
  "@material-ui/icons": "^4.9.1",
@@ -43,12 +43,12 @@
43
43
  "uuid": "^9.0.0"
44
44
  },
45
45
  "devDependencies": {
46
- "@backstage/cli": "^0.26.3-next.0",
47
- "@backstage/core-app-api": "^1.12.3",
48
- "@backstage/dev-utils": "^1.0.31-next.0",
49
- "@backstage/test-utils": "^1.5.3",
46
+ "@backstage/cli": "^0.26.3",
47
+ "@backstage/core-app-api": "^1.12.4",
48
+ "@backstage/dev-utils": "^1.0.31",
49
+ "@backstage/test-utils": "^1.5.4",
50
50
  "@testing-library/jest-dom": "^6.0.0",
51
- "@testing-library/react": "^14.0.0",
51
+ "@testing-library/react": "^15.0.0",
52
52
  "@testing-library/user-event": "^14.0.0",
53
53
  "jest-websocket-mock": "^2.5.0",
54
54
  "msw": "^1.0.0"