@backstage/plugin-notifications-backend-module-slack 0.1.1-next.3 → 0.1.1

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