@secustor/backstage-plugin-renovate-backend 0.11.0 → 0.11.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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,15 @@
1
1
  # @secustor/backstage-plugin-renovate-backend
2
2
 
3
+ ## 0.11.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [#370](https://github.com/secustor/backstage-plugins/pull/370) [`0dd0369`](https://github.com/secustor/backstage-plugins/commit/0dd03690cfc1a6309085927c05e2a6c5d2824f5a) Thanks [@secustor](https://github.com/secustor)! - Update Backstage to v1.31.1
8
+
9
+ - Updated dependencies [[`0dd0369`](https://github.com/secustor/backstage-plugins/commit/0dd03690cfc1a6309085927c05e2a6c5d2824f5a)]:
10
+ - @secustor/backstage-plugin-renovate-common@0.6.2
11
+ - @secustor/backstage-plugin-renovate-node@0.3.8
12
+
3
13
  ## 0.11.0
4
14
 
5
15
  ### Minor Changes
package/README.md CHANGED
@@ -1,7 +1,7 @@
1
1
  # renovate
2
2
 
3
3
  This plugin allows running [Renovate](https://github.com/renovatebot/renovate/) against repositories
4
- and extract reports from it.
4
+ and extracts reports from it.
5
5
 
6
6
  Supported platforms:
7
7
 
@@ -10,6 +10,24 @@ Supported platforms:
10
10
 
11
11
  ## Getting started
12
12
 
13
+ Install the plugin:
14
+
15
+ ```bash
16
+ # Install packages from the root directory
17
+ yarn --cwd packages/backend add @secustor/backstage-plugin-renovate-backend
18
+ ```
19
+
20
+ Add the plugin to your Backstage instance:
21
+
22
+ ```ts
23
+ // Add the following to `packages/backend/src/index.ts`
24
+ backend.add(import('@secustor/backstage-plugin-renovate-backend'));
25
+ ```
26
+
27
+ If you wish to install the frontend plugin, you can do so by following the instructions in the frontend plugin's [README](../renovate).
28
+
29
+ ## Configuration
30
+
13
31
  The configurations are derived from integrations.
14
32
 
15
33
  ```yaml
package/dist/index.d.ts CHANGED
@@ -127,6 +127,6 @@ declare function createRouter(runner: RenovateRunner, options: RouterOptions): P
127
127
  *
128
128
  * @public
129
129
  */
130
- declare const renovatePlugin: _backstage_backend_plugin_api.BackendFeatureCompat;
130
+ declare const renovatePlugin: _backstage_backend_plugin_api.BackendFeature;
131
131
 
132
132
  export { createRouter, renovatePlugin as default };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@secustor/backstage-plugin-renovate-backend",
3
- "version": "0.11.0",
3
+ "version": "0.11.1",
4
4
  "main": "dist/index.cjs.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "type": "commonjs",
@@ -48,18 +48,18 @@
48
48
  "postpack": "backstage-cli package postpack"
49
49
  },
50
50
  "dependencies": {
51
- "@backstage/backend-defaults": "^0.4.4",
52
- "@backstage/backend-openapi-utils": "^0.1.17",
53
- "@backstage/backend-plugin-api": "^0.8.1",
51
+ "@backstage/backend-defaults": "^0.5.0",
52
+ "@backstage/backend-openapi-utils": "^0.1.18",
53
+ "@backstage/backend-plugin-api": "^1.0.0",
54
54
  "@backstage/backend-tasks": "^0.6.1",
55
- "@backstage/catalog-client": "^1.6.6",
56
- "@backstage/catalog-model": "^1.6.0",
55
+ "@backstage/catalog-client": "^1.7.0",
56
+ "@backstage/catalog-model": "^1.7.0",
57
57
  "@backstage/config": "^1.2.0",
58
58
  "@backstage/errors": "^1.2.4",
59
- "@backstage/integration": "^1.14.0",
59
+ "@backstage/integration": "^1.15.0",
60
60
  "@backstage/types": "^1.1.1",
61
- "@secustor/backstage-plugin-renovate-common": "^0.6.1",
62
- "@secustor/backstage-plugin-renovate-node": "^0.3.7",
61
+ "@secustor/backstage-plugin-renovate-common": "^0.6.2",
62
+ "@secustor/backstage-plugin-renovate-node": "^0.3.8",
63
63
  "@sindresorhus/is": "^4.6.0",
64
64
  "@types/express": "*",
65
65
  "express": "^4.17.1",
@@ -73,10 +73,10 @@
73
73
  "zod": "^3.22.4"
74
74
  },
75
75
  "devDependencies": {
76
- "@backstage/backend-test-utils": "^0.5.1",
77
- "@backstage/cli": "^0.27.0",
78
- "@backstage/repo-tools": "^0.9.6",
79
- "@backstage/test-utils": "^1.5.10",
76
+ "@backstage/backend-test-utils": "^1.0.0",
77
+ "@backstage/cli": "^0.27.1",
78
+ "@backstage/repo-tools": "^0.9.7",
79
+ "@backstage/test-utils": "^1.6.0",
80
80
  "@types/supertest": "^6.0.0",
81
81
  "msw": "^2.0.0",
82
82
  "supertest": "^7.0.0"