@backstage/plugin-signals 0.0.1-next.3 → 0.0.2-next.0

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 +28 -0
  2. package/package.json +26 -26
package/CHANGELOG.md CHANGED
@@ -1,5 +1,33 @@
1
1
  # @backstage/plugin-signals
2
2
 
3
+ ## 0.0.2-next.0
4
+
5
+ ### Patch Changes
6
+
7
+ - 0fb419b: Updated dependency `uuid` to `^9.0.0`.
8
+ Updated dependency `@types/uuid` to `^9.0.0`.
9
+ - Updated dependencies
10
+ - @backstage/theme@0.5.2-next.0
11
+ - @backstage/core-components@0.14.1-next.0
12
+ - @backstage/core-plugin-api@1.9.1-next.0
13
+ - @backstage/types@1.1.1
14
+ - @backstage/plugin-signals-react@0.0.2-next.0
15
+
16
+ ## 0.0.1
17
+
18
+ ### Patch Changes
19
+
20
+ - 447d210: Fix disconnect loop on server start
21
+ - 8472188: Added or fixed the `repository` field in `package.json`.
22
+ - 047bead: Add support to subscribe and publish messages through signals plugins
23
+ - 1ab22c4: Allow defining signal type to publish and receive
24
+ - Updated dependencies
25
+ - @backstage/core-components@0.14.0
26
+ - @backstage/plugin-signals-react@0.0.1
27
+ - @backstage/theme@0.5.1
28
+ - @backstage/core-plugin-api@1.9.0
29
+ - @backstage/types@1.1.1
30
+
3
31
  ## 0.0.1-next.3
4
32
 
5
33
  ### Patch Changes
package/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "@backstage/plugin-signals",
3
- "version": "0.0.1-next.3",
4
- "main": "dist/index.esm.js",
5
- "types": "dist/index.d.ts",
6
- "license": "Apache-2.0",
3
+ "version": "0.0.2-next.0",
4
+ "backstage": {
5
+ "role": "frontend-plugin"
6
+ },
7
7
  "publishConfig": {
8
8
  "access": "public",
9
9
  "main": "dist/index.esm.js",
@@ -14,47 +14,47 @@
14
14
  "url": "https://github.com/backstage/backstage",
15
15
  "directory": "plugins/signals"
16
16
  },
17
- "backstage": {
18
- "role": "frontend-plugin"
19
- },
17
+ "license": "Apache-2.0",
20
18
  "sideEffects": false,
19
+ "main": "dist/index.esm.js",
20
+ "types": "dist/index.d.ts",
21
+ "files": [
22
+ "dist"
23
+ ],
21
24
  "scripts": {
22
- "start": "backstage-cli package start",
23
25
  "build": "backstage-cli package build",
24
- "lint": "backstage-cli package lint",
25
- "test": "backstage-cli package test",
26
26
  "clean": "backstage-cli package clean",
27
+ "lint": "backstage-cli package lint",
27
28
  "prepack": "backstage-cli package prepack",
28
- "postpack": "backstage-cli package postpack"
29
+ "postpack": "backstage-cli package postpack",
30
+ "start": "backstage-cli package start",
31
+ "test": "backstage-cli package test"
29
32
  },
30
33
  "dependencies": {
31
- "@backstage/core-components": "^0.14.0-next.2",
32
- "@backstage/core-plugin-api": "^1.9.0-next.1",
33
- "@backstage/plugin-signals-react": "^0.0.1-next.3",
34
- "@backstage/theme": "^0.5.1-next.1",
34
+ "@backstage/core-components": "^0.14.1-next.0",
35
+ "@backstage/core-plugin-api": "^1.9.1-next.0",
36
+ "@backstage/plugin-signals-react": "^0.0.2-next.0",
37
+ "@backstage/theme": "^0.5.2-next.0",
35
38
  "@backstage/types": "^1.1.1",
36
39
  "@material-ui/core": "^4.12.4",
37
40
  "@material-ui/icons": "^4.9.1",
38
41
  "@material-ui/lab": "^4.0.0-alpha.61",
39
42
  "react-use": "^17.2.4",
40
- "uuid": "^8.0.0"
41
- },
42
- "peerDependencies": {
43
- "react": "^16.13.1 || ^17.0.0"
43
+ "uuid": "^9.0.0"
44
44
  },
45
45
  "devDependencies": {
46
- "@backstage/cli": "^0.25.2-next.3",
47
- "@backstage/core-app-api": "^1.12.0-next.1",
48
- "@backstage/dev-utils": "^1.0.27-next.3",
49
- "@backstage/test-utils": "^1.5.0-next.3",
46
+ "@backstage/cli": "^0.25.3-next.0",
47
+ "@backstage/core-app-api": "^1.12.1-next.0",
48
+ "@backstage/dev-utils": "^1.0.28-next.0",
49
+ "@backstage/test-utils": "^1.5.1-next.0",
50
50
  "@testing-library/jest-dom": "^6.0.0",
51
51
  "@testing-library/react": "^14.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"
55
55
  },
56
- "files": [
57
- "dist"
58
- ],
56
+ "peerDependencies": {
57
+ "react": "^16.13.1 || ^17.0.0"
58
+ },
59
59
  "module": "./dist/index.esm.js"
60
60
  }