@backstage/plugin-signals-backend 0.0.0-nightly-20240305021008 → 0.0.0-nightly-20240307020519
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.
- package/CHANGELOG.md +25 -7
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @backstage/plugin-signals-backend
|
|
2
2
|
|
|
3
|
-
## 0.0.0-nightly-
|
|
3
|
+
## 0.0.0-nightly-20240307020519
|
|
4
4
|
|
|
5
5
|
### Minor Changes
|
|
6
6
|
|
|
@@ -12,14 +12,32 @@
|
|
|
12
12
|
Updated dependency `@types/uuid` to `^9.0.0`.
|
|
13
13
|
- df45710: Improved error logging and fixed authentication
|
|
14
14
|
- Updated dependencies
|
|
15
|
-
- @backstage/plugin-events-node@0.0.0-nightly-
|
|
16
|
-
- @backstage/backend-common@0.0.0-nightly-
|
|
17
|
-
- @backstage/plugin-auth-node@0.0.0-nightly-
|
|
18
|
-
- @backstage/config@0.0.0-nightly-
|
|
19
|
-
- @backstage/backend-plugin-api@0.0.0-nightly-
|
|
20
|
-
- @backstage/plugin-signals-node@0.0.0-nightly-
|
|
15
|
+
- @backstage/plugin-events-node@0.0.0-nightly-20240307020519
|
|
16
|
+
- @backstage/backend-common@0.0.0-nightly-20240307020519
|
|
17
|
+
- @backstage/plugin-auth-node@0.0.0-nightly-20240307020519
|
|
18
|
+
- @backstage/config@0.0.0-nightly-20240307020519
|
|
19
|
+
- @backstage/backend-plugin-api@0.0.0-nightly-20240307020519
|
|
20
|
+
- @backstage/plugin-signals-node@0.0.0-nightly-20240307020519
|
|
21
21
|
- @backstage/types@1.1.1
|
|
22
22
|
|
|
23
|
+
## 0.1.0-next.1
|
|
24
|
+
|
|
25
|
+
### Minor Changes
|
|
26
|
+
|
|
27
|
+
- daf85dc: BREAKING CHANGE: Migrates signals to use the `EventsService` and makes it mandatory
|
|
28
|
+
|
|
29
|
+
### Patch Changes
|
|
30
|
+
|
|
31
|
+
- df45710: Improved error logging and fixed authentication
|
|
32
|
+
- Updated dependencies
|
|
33
|
+
- @backstage/config@1.2.0-next.1
|
|
34
|
+
- @backstage/plugin-signals-node@0.1.0-next.1
|
|
35
|
+
- @backstage/backend-common@0.21.4-next.1
|
|
36
|
+
- @backstage/backend-plugin-api@0.6.14-next.1
|
|
37
|
+
- @backstage/plugin-auth-node@0.4.9-next.1
|
|
38
|
+
- @backstage/types@1.1.1
|
|
39
|
+
- @backstage/plugin-events-node@0.3.0-next.1
|
|
40
|
+
|
|
23
41
|
## 0.0.4-next.0
|
|
24
42
|
|
|
25
43
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-signals-backend",
|
|
3
|
-
"version": "0.0.0-nightly-
|
|
3
|
+
"version": "0.0.0-nightly-20240307020519",
|
|
4
4
|
"main": "dist/index.cjs.js",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -27,12 +27,12 @@
|
|
|
27
27
|
"postpack": "backstage-cli package postpack"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@backstage/backend-common": "^0.0.0-nightly-
|
|
31
|
-
"@backstage/backend-plugin-api": "^0.0.0-nightly-
|
|
32
|
-
"@backstage/config": "^0.0.0-nightly-
|
|
33
|
-
"@backstage/plugin-auth-node": "^0.0.0-nightly-
|
|
34
|
-
"@backstage/plugin-events-node": "^0.0.0-nightly-
|
|
35
|
-
"@backstage/plugin-signals-node": "^0.0.0-nightly-
|
|
30
|
+
"@backstage/backend-common": "^0.0.0-nightly-20240307020519",
|
|
31
|
+
"@backstage/backend-plugin-api": "^0.0.0-nightly-20240307020519",
|
|
32
|
+
"@backstage/config": "^0.0.0-nightly-20240307020519",
|
|
33
|
+
"@backstage/plugin-auth-node": "^0.0.0-nightly-20240307020519",
|
|
34
|
+
"@backstage/plugin-events-node": "^0.0.0-nightly-20240307020519",
|
|
35
|
+
"@backstage/plugin-signals-node": "^0.0.0-nightly-20240307020519",
|
|
36
36
|
"@backstage/types": "^1.1.1",
|
|
37
37
|
"@types/express": "*",
|
|
38
38
|
"express": "^4.17.1",
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
"yn": "^4.0.0"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
|
-
"@backstage/cli": "^0.0.0-nightly-
|
|
48
|
+
"@backstage/cli": "^0.0.0-nightly-20240307020519",
|
|
49
49
|
"@types/supertest": "^2.0.8",
|
|
50
50
|
"msw": "^1.0.0",
|
|
51
51
|
"supertest": "^6.2.4"
|