@backstage/plugin-notifications-backend-module-slack 0.1.1-next.3 → 0.1.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 +30 -0
  2. package/package.json +9 -9
package/CHANGELOG.md CHANGED
@@ -1,5 +1,35 @@
1
1
  # @backstage/plugin-notifications-backend-module-slack
2
2
 
3
+ ## 0.1.2-next.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+ - @backstage/backend-plugin-api@1.4.0-next.0
9
+ - @backstage/plugin-catalog-node@1.17.1-next.0
10
+ - @backstage/plugin-notifications-node@0.2.16-next.0
11
+
12
+ ## 0.1.1
13
+
14
+ ### Patch Changes
15
+
16
+ - 4f10768: Fix slack notification processor to handle a notification with an empty description
17
+ - f6480c7: Fix dataloader caching, and use the proper catalog service ref
18
+ - a1c5bbb: Added email-based Slack User ID lookup if `metadata.annotations.slack.com/bot-notify` is missing from user entity
19
+ - e099d0a: Notifications which mention user entity refs are now replaced with Slack compatible mentions.
20
+
21
+ Example: `Welcome <@user:default/billy>!` -> `Welcome <@U123456890>!`
22
+
23
+ - Updated dependencies
24
+ - @backstage/catalog-model@1.7.4
25
+ - @backstage/plugin-catalog-node@1.17.0
26
+ - @backstage/backend-plugin-api@1.3.1
27
+ - @backstage/config@1.3.2
28
+ - @backstage/plugin-notifications-node@0.2.15
29
+ - @backstage/errors@1.2.7
30
+ - @backstage/types@1.2.1
31
+ - @backstage/plugin-notifications-common@0.0.8
32
+
3
33
  ## 0.1.1-next.3
4
34
 
5
35
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-notifications-backend-module-slack",
3
- "version": "0.1.1-next.3",
3
+ "version": "0.1.2-next.0",
4
4
  "description": "The slack backend module for the notifications plugin.",
5
5
  "backstage": {
6
6
  "role": "backend-plugin-module",
@@ -37,13 +37,13 @@
37
37
  "test": "backstage-cli package test"
38
38
  },
39
39
  "dependencies": {
40
- "@backstage/backend-plugin-api": "1.3.1-next.2",
41
- "@backstage/catalog-model": "1.7.3",
40
+ "@backstage/backend-plugin-api": "1.4.0-next.0",
41
+ "@backstage/catalog-model": "1.7.4",
42
42
  "@backstage/config": "1.3.2",
43
43
  "@backstage/errors": "1.2.7",
44
- "@backstage/plugin-catalog-node": "1.17.0-next.2",
44
+ "@backstage/plugin-catalog-node": "1.17.1-next.0",
45
45
  "@backstage/plugin-notifications-common": "0.0.8",
46
- "@backstage/plugin-notifications-node": "0.2.15-next.2",
46
+ "@backstage/plugin-notifications-node": "0.2.16-next.0",
47
47
  "@backstage/types": "1.2.1",
48
48
  "@opentelemetry/api": "^1.9.0",
49
49
  "@slack/bolt": "^3.21.4",
@@ -53,10 +53,10 @@
53
53
  "p-throttle": "^4.1.1"
54
54
  },
55
55
  "devDependencies": {
56
- "@backstage/backend-test-utils": "1.5.0-next.3",
57
- "@backstage/cli": "0.32.1-next.3",
58
- "@backstage/plugin-catalog-node": "1.17.0-next.2",
59
- "@backstage/test-utils": "1.7.8-next.2",
56
+ "@backstage/backend-test-utils": "1.6.0-next.0",
57
+ "@backstage/cli": "0.32.1",
58
+ "@backstage/plugin-catalog-node": "1.17.1-next.0",
59
+ "@backstage/test-utils": "1.7.8",
60
60
  "@faker-js/faker": "^8.4.1",
61
61
  "msw": "^2.0.0"
62
62
  },