@backstage/plugin-notifications-node 0.2.0-next.3 → 0.2.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 +30 -0
  2. package/package.json +8 -8
package/CHANGELOG.md CHANGED
@@ -1,5 +1,35 @@
1
1
  # @backstage/plugin-notifications-node
2
2
 
3
+ ## 0.2.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+ - @backstage/backend-common@0.23.1
9
+ - @backstage/plugin-signals-node@0.1.6
10
+ - @backstage/backend-plugin-api@0.6.20
11
+ - @backstage/catalog-client@1.6.5
12
+ - @backstage/catalog-model@1.5.0
13
+ - @backstage/plugin-notifications-common@0.0.4
14
+
15
+ ## 0.2.0
16
+
17
+ ### Minor Changes
18
+
19
+ - 07a789b: add notifications filtering by processors
20
+
21
+ ### Patch Changes
22
+
23
+ - d44a20a: Added additional plugin metadata to `package.json`.
24
+ - 1354d81: Use `node-fetch` instead of native fetch, as per https://backstage.io/docs/architecture-decisions/adrs-adr013
25
+ - Updated dependencies
26
+ - @backstage/backend-common@0.23.0
27
+ - @backstage/backend-plugin-api@0.6.19
28
+ - @backstage/plugin-notifications-common@0.0.4
29
+ - @backstage/plugin-signals-node@0.1.5
30
+ - @backstage/catalog-client@1.6.5
31
+ - @backstage/catalog-model@1.5.0
32
+
3
33
  ## 0.2.0-next.3
4
34
 
5
35
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-notifications-node",
3
- "version": "0.2.0-next.3",
3
+ "version": "0.2.1",
4
4
  "description": "Node.js library for the notifications plugin",
5
5
  "backstage": {
6
6
  "role": "node-library",
@@ -37,20 +37,20 @@
37
37
  "test": "backstage-cli package test"
38
38
  },
39
39
  "dependencies": {
40
- "@backstage/backend-common": "^0.23.0-next.3",
41
- "@backstage/backend-plugin-api": "^0.6.19-next.3",
40
+ "@backstage/backend-common": "^0.23.1",
41
+ "@backstage/backend-plugin-api": "^0.6.20",
42
42
  "@backstage/catalog-client": "^1.6.5",
43
43
  "@backstage/catalog-model": "^1.5.0",
44
- "@backstage/plugin-notifications-common": "^0.0.4-next.0",
45
- "@backstage/plugin-signals-node": "^0.1.5-next.3",
44
+ "@backstage/plugin-notifications-common": "^0.0.4",
45
+ "@backstage/plugin-signals-node": "^0.1.6",
46
46
  "knex": "^3.0.0",
47
47
  "node-fetch": "^2.6.7",
48
48
  "uuid": "^9.0.0"
49
49
  },
50
50
  "devDependencies": {
51
- "@backstage/backend-test-utils": "^0.4.0-next.3",
52
- "@backstage/cli": "^0.26.7-next.3",
53
- "@backstage/test-utils": "^1.5.6-next.2",
51
+ "@backstage/backend-test-utils": "^0.4.1",
52
+ "@backstage/cli": "^0.26.8",
53
+ "@backstage/test-utils": "^1.5.6",
54
54
  "msw": "^1.0.0"
55
55
  }
56
56
  }