@backstage/plugin-notifications-backend 0.6.0-next.2 → 0.6.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 +17 -17
package/CHANGELOG.md CHANGED
@@ -1,5 +1,33 @@
1
1
  # @backstage/plugin-notifications-backend
2
2
 
3
+ ## 0.6.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 87e597c: Adds support for default configuration for an entire notification channel.
8
+ This setting will also be inherited down to origins and topics while still respecting the users individual choices.
9
+
10
+ This will be handy if you want to use a "opt-in" strategy.
11
+
12
+ ### Patch Changes
13
+
14
+ - 15fb764: Show default settings for notifications even before receiving first notification.
15
+
16
+ Previously, it was not possible for the users to see or modify their notification settings until they had received at
17
+ least one notification from specific origin or topic.
18
+ This update ensures that default settings are displayed from the outset,
19
+ allowing users to customize their preferences immediately.
20
+
21
+ - 05f60e1: Refactored constructor parameter properties to explicit property declarations for compatibility with TypeScript's `erasableSyntaxOnly` setting. This internal refactoring maintains all existing functionality while ensuring TypeScript compilation compatibility.
22
+ - Updated dependencies
23
+ - @backstage/plugin-catalog-node@1.20.0
24
+ - @backstage/plugin-notifications-common@0.2.0
25
+ - @backstage/backend-plugin-api@1.5.0
26
+ - @backstage/plugin-notifications-node@0.2.21
27
+ - @backstage/config@1.3.6
28
+ - @backstage/catalog-model@1.7.6
29
+ - @backstage/plugin-signals-node@0.1.26
30
+
3
31
  ## 0.6.0-next.2
4
32
 
5
33
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-notifications-backend",
3
- "version": "0.6.0-next.2",
3
+ "version": "0.6.0",
4
4
  "backstage": {
5
5
  "role": "backend-plugin",
6
6
  "pluginId": "notifications",
@@ -42,15 +42,15 @@
42
42
  "test": "backstage-cli package test"
43
43
  },
44
44
  "dependencies": {
45
- "@backstage/backend-plugin-api": "1.5.0-next.2",
46
- "@backstage/catalog-model": "1.7.6-next.0",
47
- "@backstage/config": "1.3.6-next.0",
48
- "@backstage/errors": "1.2.7",
49
- "@backstage/plugin-catalog-node": "1.20.0-next.1",
50
- "@backstage/plugin-notifications-common": "0.2.0-next.1",
51
- "@backstage/plugin-notifications-node": "0.2.21-next.2",
52
- "@backstage/plugin-signals-node": "0.1.26-next.1",
53
- "@backstage/types": "1.2.2",
45
+ "@backstage/backend-plugin-api": "^1.5.0",
46
+ "@backstage/catalog-model": "^1.7.6",
47
+ "@backstage/config": "^1.3.6",
48
+ "@backstage/errors": "^1.2.7",
49
+ "@backstage/plugin-catalog-node": "^1.20.0",
50
+ "@backstage/plugin-notifications-common": "^0.2.0",
51
+ "@backstage/plugin-notifications-node": "^0.2.21",
52
+ "@backstage/plugin-signals-node": "^0.1.26",
53
+ "@backstage/types": "^1.2.2",
54
54
  "express": "^4.17.1",
55
55
  "express-promise-router": "^4.1.0",
56
56
  "knex": "^3.0.0",
@@ -58,13 +58,13 @@
58
58
  "uuid": "^11.0.0"
59
59
  },
60
60
  "devDependencies": {
61
- "@backstage/backend-defaults": "0.13.1-next.1",
62
- "@backstage/backend-test-utils": "1.10.0-next.2",
63
- "@backstage/cli": "0.34.5-next.1",
64
- "@backstage/plugin-auth-backend": "0.25.6-next.1",
65
- "@backstage/plugin-auth-backend-module-guest-provider": "0.2.14-next.1",
66
- "@backstage/plugin-events-backend": "0.5.8-next.1",
67
- "@backstage/plugin-signals-backend": "0.3.10-next.1",
61
+ "@backstage/backend-defaults": "^0.13.1",
62
+ "@backstage/backend-test-utils": "^1.10.0",
63
+ "@backstage/cli": "^0.34.5",
64
+ "@backstage/plugin-auth-backend": "^0.25.6",
65
+ "@backstage/plugin-auth-backend-module-guest-provider": "^0.2.14",
66
+ "@backstage/plugin-events-backend": "^0.5.8",
67
+ "@backstage/plugin-signals-backend": "^0.3.10",
68
68
  "@types/express": "^4.17.6",
69
69
  "@types/supertest": "^2.0.8",
70
70
  "supertest": "^7.0.0"