@backstage/plugin-signals 0.0.10-next.1 → 0.0.10
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 +43 -0
- package/package.json +10 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,48 @@
|
|
|
1
1
|
# @backstage/plugin-signals
|
|
2
2
|
|
|
3
|
+
## 0.0.10
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 836127c: Updated dependency `@testing-library/react` to `^16.0.0`.
|
|
8
|
+
- 5add8e1: Added a `SignalsDisplay` extension to allows the signals plugin to be installed in an app as follows:
|
|
9
|
+
|
|
10
|
+
```tsx
|
|
11
|
+
export default app.createRoot(
|
|
12
|
+
<>
|
|
13
|
+
<AlertDisplay transientTimeoutMs={2500} />
|
|
14
|
+
<OAuthRequestDialog />
|
|
15
|
+
<SignalsDisplay />
|
|
16
|
+
<AppRouter>
|
|
17
|
+
<VisitListener />
|
|
18
|
+
<Root>{routes}</Root>
|
|
19
|
+
</AppRouter>
|
|
20
|
+
</>,
|
|
21
|
+
);
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
With this in place you can remove the explicit installation via the `plugins` option for `createApp`.
|
|
25
|
+
|
|
26
|
+
- 3e9b1a4: Put a name on the `SignalsDisplay` component extension
|
|
27
|
+
- Updated dependencies
|
|
28
|
+
- @backstage/core-components@0.15.0
|
|
29
|
+
- @backstage/core-plugin-api@1.9.4
|
|
30
|
+
- @backstage/theme@0.5.7
|
|
31
|
+
- @backstage/plugin-signals-react@0.0.5
|
|
32
|
+
- @backstage/types@1.1.1
|
|
33
|
+
|
|
34
|
+
## 0.0.10-next.2
|
|
35
|
+
|
|
36
|
+
### Patch Changes
|
|
37
|
+
|
|
38
|
+
- 836127c: Updated dependency `@testing-library/react` to `^16.0.0`.
|
|
39
|
+
- Updated dependencies
|
|
40
|
+
- @backstage/core-components@0.14.11-next.1
|
|
41
|
+
- @backstage/core-plugin-api@1.9.4-next.0
|
|
42
|
+
- @backstage/theme@0.5.7-next.0
|
|
43
|
+
- @backstage/plugin-signals-react@0.0.5-next.1
|
|
44
|
+
- @backstage/types@1.1.1
|
|
45
|
+
|
|
3
46
|
## 0.0.10-next.1
|
|
4
47
|
|
|
5
48
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-signals",
|
|
3
|
-
"version": "0.0.10
|
|
3
|
+
"version": "0.0.10",
|
|
4
4
|
"backstage": {
|
|
5
5
|
"role": "frontend-plugin",
|
|
6
6
|
"pluginId": "signals",
|
|
@@ -38,10 +38,10 @@
|
|
|
38
38
|
"test": "backstage-cli package test"
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@backstage/core-components": "^0.
|
|
42
|
-
"@backstage/core-plugin-api": "^1.9.
|
|
43
|
-
"@backstage/plugin-signals-react": "^0.0.5
|
|
44
|
-
"@backstage/theme": "^0.5.
|
|
41
|
+
"@backstage/core-components": "^0.15.0",
|
|
42
|
+
"@backstage/core-plugin-api": "^1.9.4",
|
|
43
|
+
"@backstage/plugin-signals-react": "^0.0.5",
|
|
44
|
+
"@backstage/theme": "^0.5.7",
|
|
45
45
|
"@backstage/types": "^1.1.1",
|
|
46
46
|
"@material-ui/core": "^4.12.4",
|
|
47
47
|
"@material-ui/icons": "^4.9.1",
|
|
@@ -50,12 +50,12 @@
|
|
|
50
50
|
"uuid": "^9.0.0"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
|
-
"@backstage/cli": "^0.27.1
|
|
54
|
-
"@backstage/core-app-api": "^1.
|
|
55
|
-
"@backstage/dev-utils": "^1.0
|
|
56
|
-
"@backstage/test-utils": "^1.6.0
|
|
53
|
+
"@backstage/cli": "^0.27.1",
|
|
54
|
+
"@backstage/core-app-api": "^1.15.0",
|
|
55
|
+
"@backstage/dev-utils": "^1.1.0",
|
|
56
|
+
"@backstage/test-utils": "^1.6.0",
|
|
57
57
|
"@testing-library/jest-dom": "^6.0.0",
|
|
58
|
-
"@testing-library/react": "^
|
|
58
|
+
"@testing-library/react": "^16.0.0",
|
|
59
59
|
"@testing-library/user-event": "^14.0.0",
|
|
60
60
|
"jest-websocket-mock": "^2.5.0",
|
|
61
61
|
"msw": "^1.0.0"
|