@backstage/plugin-notifications-backend-module-slack 0.4.2-next.0 → 0.4.3-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 +24 -0
  2. package/package.json +11 -11
package/CHANGELOG.md CHANGED
@@ -1,5 +1,29 @@
1
1
  # @backstage/plugin-notifications-backend-module-slack
2
2
 
3
+ ## 0.4.3-next.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+ - @backstage/plugin-catalog-node@2.2.2-next.0
9
+ - @backstage/backend-plugin-api@1.9.2-next.0
10
+ - @backstage/plugin-notifications-node@0.2.27-next.0
11
+
12
+ ## 0.4.2
13
+
14
+ ### Patch Changes
15
+
16
+ - 744fa1f: Removed duplicated entries that appeared in both `dependencies` and `devDependencies`.
17
+ - f399a7a: Added scope-based message update support. When a notification is re-sent with the same `scope` and `notification.updated` is set, the processor now calls `chat.update()` on the existing Slack message instead of sending a duplicate via `chat.postMessage()`. Message timestamps are persisted in a new `slack_message_timestamps` database table with automatic daily cleanup. The processor gracefully degrades to the previous behavior when no database is provided.
18
+ - Updated dependencies
19
+ - @backstage/catalog-model@1.9.0
20
+ - @backstage/errors@1.3.1
21
+ - @backstage/backend-plugin-api@1.9.1
22
+ - @backstage/plugin-catalog-node@2.2.1
23
+ - @backstage/plugin-notifications-common@0.2.3
24
+ - @backstage/plugin-notifications-node@0.2.26
25
+ - @backstage/config@1.3.8
26
+
3
27
  ## 0.4.2-next.0
4
28
 
5
29
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-notifications-backend-module-slack",
3
- "version": "0.4.2-next.0",
3
+ "version": "0.4.3-next.0",
4
4
  "description": "The slack backend module for the notifications plugin.",
5
5
  "backstage": {
6
6
  "role": "backend-plugin-module",
@@ -38,13 +38,13 @@
38
38
  "test": "backstage-cli package test"
39
39
  },
40
40
  "dependencies": {
41
- "@backstage/backend-plugin-api": "1.9.1-next.0",
42
- "@backstage/catalog-model": "1.8.1-next.0",
43
- "@backstage/config": "1.3.8-next.0",
44
- "@backstage/errors": "1.3.1-next.0",
45
- "@backstage/plugin-catalog-node": "2.2.1-next.0",
46
- "@backstage/plugin-notifications-common": "0.2.3-next.0",
47
- "@backstage/plugin-notifications-node": "0.2.26-next.0",
41
+ "@backstage/backend-plugin-api": "1.9.2-next.0",
42
+ "@backstage/catalog-model": "1.9.0",
43
+ "@backstage/config": "1.3.8",
44
+ "@backstage/errors": "1.3.1",
45
+ "@backstage/plugin-catalog-node": "2.2.2-next.0",
46
+ "@backstage/plugin-notifications-common": "0.2.3",
47
+ "@backstage/plugin-notifications-node": "0.2.27-next.0",
48
48
  "@backstage/types": "1.2.2",
49
49
  "@slack/bolt": "^3.21.4",
50
50
  "@slack/types": "^2.14.0",
@@ -54,9 +54,9 @@
54
54
  "p-throttle": "^4.1.1"
55
55
  },
56
56
  "devDependencies": {
57
- "@backstage/backend-test-utils": "1.11.3-next.0",
58
- "@backstage/cli": "0.36.2-next.0",
59
- "@backstage/test-utils": "1.7.18-next.0",
57
+ "@backstage/backend-test-utils": "1.11.4-next.0",
58
+ "@backstage/cli": "0.36.3-next.0",
59
+ "@backstage/test-utils": "1.7.18",
60
60
  "@faker-js/faker": "^10.0.0",
61
61
  "msw": "^2.0.0"
62
62
  },