@backstage/plugin-notifications 0.0.0-nightly-20240311021106 → 0.0.0-nightly-20240313022044
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 +24 -7
- package/package.json +11 -11
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @backstage/plugin-notifications
|
|
2
2
|
|
|
3
|
-
## 0.0.0-nightly-
|
|
3
|
+
## 0.0.0-nightly-20240313022044
|
|
4
4
|
|
|
5
5
|
### Minor Changes
|
|
6
6
|
|
|
@@ -12,13 +12,30 @@
|
|
|
12
12
|
|
|
13
13
|
- 5d9c5ba: The Notifications can be newly filtered based on the Created Date.
|
|
14
14
|
- Updated dependencies
|
|
15
|
-
- @backstage/core-components@0.0.0-nightly-
|
|
16
|
-
- @backstage/errors@0.0.0-nightly-
|
|
17
|
-
- @backstage/plugin-notifications-common@0.0.0-nightly-
|
|
18
|
-
- @backstage/theme@0.0.0-nightly-
|
|
19
|
-
- @backstage/core-plugin-api@0.0.0-nightly-
|
|
15
|
+
- @backstage/core-components@0.0.0-nightly-20240313022044
|
|
16
|
+
- @backstage/errors@0.0.0-nightly-20240313022044
|
|
17
|
+
- @backstage/plugin-notifications-common@0.0.0-nightly-20240313022044
|
|
18
|
+
- @backstage/theme@0.0.0-nightly-20240313022044
|
|
19
|
+
- @backstage/core-plugin-api@0.0.0-nightly-20240313022044
|
|
20
20
|
- @backstage/types@1.1.1
|
|
21
|
-
- @backstage/plugin-signals-react@0.0.0-nightly-
|
|
21
|
+
- @backstage/plugin-signals-react@0.0.0-nightly-20240313022044
|
|
22
|
+
|
|
23
|
+
## 0.1.0-next.2
|
|
24
|
+
|
|
25
|
+
### Minor Changes
|
|
26
|
+
|
|
27
|
+
- 6e6d096: notifications can be newly sorted by list of predefined options
|
|
28
|
+
|
|
29
|
+
### Patch Changes
|
|
30
|
+
|
|
31
|
+
- Updated dependencies
|
|
32
|
+
- @backstage/core-components@0.14.1-next.2
|
|
33
|
+
- @backstage/core-plugin-api@1.9.1-next.1
|
|
34
|
+
- @backstage/errors@1.2.4-next.0
|
|
35
|
+
- @backstage/theme@0.5.2-next.0
|
|
36
|
+
- @backstage/types@1.1.1
|
|
37
|
+
- @backstage/plugin-notifications-common@0.0.2-next.1
|
|
38
|
+
- @backstage/plugin-signals-react@0.0.2-next.1
|
|
22
39
|
|
|
23
40
|
## 0.1.0-next.1
|
|
24
41
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-notifications",
|
|
3
|
-
"version": "0.0.0-nightly-
|
|
3
|
+
"version": "0.0.0-nightly-20240313022044",
|
|
4
4
|
"main": "dist/index.esm.js",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -28,12 +28,12 @@
|
|
|
28
28
|
"postpack": "backstage-cli package postpack"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@backstage/core-components": "^0.0.0-nightly-
|
|
32
|
-
"@backstage/core-plugin-api": "^0.0.0-nightly-
|
|
33
|
-
"@backstage/errors": "^0.0.0-nightly-
|
|
34
|
-
"@backstage/plugin-notifications-common": "^0.0.0-nightly-
|
|
35
|
-
"@backstage/plugin-signals-react": "^0.0.0-nightly-
|
|
36
|
-
"@backstage/theme": "^0.0.0-nightly-
|
|
31
|
+
"@backstage/core-components": "^0.0.0-nightly-20240313022044",
|
|
32
|
+
"@backstage/core-plugin-api": "^0.0.0-nightly-20240313022044",
|
|
33
|
+
"@backstage/errors": "^0.0.0-nightly-20240313022044",
|
|
34
|
+
"@backstage/plugin-notifications-common": "^0.0.0-nightly-20240313022044",
|
|
35
|
+
"@backstage/plugin-signals-react": "^0.0.0-nightly-20240313022044",
|
|
36
|
+
"@backstage/theme": "^0.0.0-nightly-20240313022044",
|
|
37
37
|
"@backstage/types": "^1.1.1",
|
|
38
38
|
"@material-ui/core": "^4.9.13",
|
|
39
39
|
"@material-ui/icons": "^4.9.1",
|
|
@@ -48,10 +48,10 @@
|
|
|
48
48
|
"react-router-dom": "6.0.0-beta.0 || ^6.3.0"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
51
|
-
"@backstage/cli": "^0.0.0-nightly-
|
|
52
|
-
"@backstage/core-app-api": "^0.0.0-nightly-
|
|
53
|
-
"@backstage/dev-utils": "^0.0.0-nightly-
|
|
54
|
-
"@backstage/test-utils": "^0.0.0-nightly-
|
|
51
|
+
"@backstage/cli": "^0.0.0-nightly-20240313022044",
|
|
52
|
+
"@backstage/core-app-api": "^0.0.0-nightly-20240313022044",
|
|
53
|
+
"@backstage/dev-utils": "^0.0.0-nightly-20240313022044",
|
|
54
|
+
"@backstage/test-utils": "^0.0.0-nightly-20240313022044",
|
|
55
55
|
"@testing-library/jest-dom": "^6.0.0",
|
|
56
56
|
"@testing-library/react": "^14.0.0",
|
|
57
57
|
"@testing-library/user-event": "^14.0.0",
|