@backstage-community/plugin-nomad-backend 0.1.22 → 0.1.24
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 +12 -0
- package/dist/index.d.ts +1 -1
- package/package.json +7 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @backstage-community/plugin-nomad-backend
|
|
2
2
|
|
|
3
|
+
## 0.1.24
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 2950c72: Backstage version bump to v1.31.1
|
|
8
|
+
|
|
9
|
+
## 0.1.23
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- fd46ac6: Backstage version bump to v1.30.4
|
|
14
|
+
|
|
3
15
|
## 0.1.22
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
package/dist/index.d.ts
CHANGED
|
@@ -16,6 +16,6 @@ declare function createRouter(options: RouterOptions): Promise<express.Router>;
|
|
|
16
16
|
*
|
|
17
17
|
* @public
|
|
18
18
|
*/
|
|
19
|
-
declare const nomadPlugin: _backstage_backend_plugin_api.
|
|
19
|
+
declare const nomadPlugin: _backstage_backend_plugin_api.BackendFeature;
|
|
20
20
|
|
|
21
21
|
export { type RouterOptions, createRouter, nomadPlugin as default };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage-community/plugin-nomad-backend",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.24",
|
|
4
4
|
"backstage": {
|
|
5
5
|
"role": "backend-plugin",
|
|
6
6
|
"pluginId": "nomad",
|
|
@@ -36,8 +36,8 @@
|
|
|
36
36
|
"test": "backstage-cli package test"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@backstage/backend-common": "^0.
|
|
40
|
-
"@backstage/backend-plugin-api": "^0.
|
|
39
|
+
"@backstage/backend-common": "^0.25.0",
|
|
40
|
+
"@backstage/backend-plugin-api": "^1.0.0",
|
|
41
41
|
"@backstage/config": "^1.2.0",
|
|
42
42
|
"@backstage/errors": "^1.2.4",
|
|
43
43
|
"@types/express": "*",
|
|
@@ -47,7 +47,10 @@
|
|
|
47
47
|
"yn": "^4.0.0"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
|
-
"@backstage/
|
|
50
|
+
"@backstage/backend-defaults": "^0.5.0",
|
|
51
|
+
"@backstage/cli": "^0.27.1",
|
|
52
|
+
"@backstage/plugin-auth-backend": "^0.23.0",
|
|
53
|
+
"@backstage/plugin-auth-backend-module-guest-provider": "^0.2.0",
|
|
51
54
|
"@types/node-fetch": "^2.5.12",
|
|
52
55
|
"@types/supertest": "^6.0.0",
|
|
53
56
|
"supertest": "^7.0.0"
|