@backstage/plugin-proxy-backend 0.2.17 → 0.2.20

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 +32 -0
  2. package/package.json +15 -12
package/CHANGELOG.md CHANGED
@@ -1,5 +1,37 @@
1
1
  # @backstage/plugin-proxy-backend
2
2
 
3
+ ## 0.2.20
4
+
5
+ ### Patch Changes
6
+
7
+ - Fix for the previous release with missing type declarations.
8
+ - Updated dependencies
9
+ - @backstage/backend-common@0.10.9
10
+ - @backstage/config@0.1.15
11
+
12
+ ## 0.2.19
13
+
14
+ ### Patch Changes
15
+
16
+ - c77c5c7eb6: Added `backstage.role` to `package.json`
17
+ - Updated dependencies
18
+ - @backstage/backend-common@0.10.8
19
+ - @backstage/config@0.1.14
20
+
21
+ ## 0.2.18
22
+
23
+ ### Patch Changes
24
+
25
+ - Updated dependencies
26
+ - @backstage/backend-common@0.10.7
27
+
28
+ ## 0.2.18-next.0
29
+
30
+ ### Patch Changes
31
+
32
+ - Updated dependencies
33
+ - @backstage/backend-common@0.10.7-next.0
34
+
3
35
  ## 0.2.17
4
36
 
5
37
  ### Patch Changes
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@backstage/plugin-proxy-backend",
3
3
  "description": "A Backstage backend plugin that helps you set up proxy endpoints in the backend",
4
- "version": "0.2.17",
4
+ "version": "0.2.20",
5
5
  "main": "dist/index.cjs.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "license": "Apache-2.0",
@@ -10,6 +10,9 @@
10
10
  "main": "dist/index.cjs.js",
11
11
  "types": "dist/index.d.ts"
12
12
  },
13
+ "backstage": {
14
+ "role": "backend-plugin"
15
+ },
13
16
  "homepage": "https://backstage.io",
14
17
  "repository": {
15
18
  "type": "git",
@@ -20,17 +23,17 @@
20
23
  "backstage"
21
24
  ],
22
25
  "scripts": {
23
- "start": "backstage-cli backend:dev",
24
- "build": "backstage-cli backend:build",
25
- "lint": "backstage-cli lint",
26
- "test": "backstage-cli test",
27
- "prepack": "backstage-cli prepack",
28
- "postpack": "backstage-cli postpack",
29
- "clean": "backstage-cli clean"
26
+ "start": "backstage-cli package start",
27
+ "build": "backstage-cli package build",
28
+ "lint": "backstage-cli package lint",
29
+ "test": "backstage-cli package test",
30
+ "prepack": "backstage-cli package prepack",
31
+ "postpack": "backstage-cli package postpack",
32
+ "clean": "backstage-cli package clean"
30
33
  },
31
34
  "dependencies": {
32
- "@backstage/backend-common": "^0.10.6",
33
- "@backstage/config": "^0.1.13",
35
+ "@backstage/backend-common": "^0.10.9",
36
+ "@backstage/config": "^0.1.15",
34
37
  "@types/express": "^4.17.6",
35
38
  "express": "^4.17.1",
36
39
  "express-promise-router": "^4.1.0",
@@ -43,7 +46,7 @@
43
46
  "yup": "^0.32.9"
44
47
  },
45
48
  "devDependencies": {
46
- "@backstage/cli": "^0.13.1",
49
+ "@backstage/cli": "^0.14.0",
47
50
  "@types/http-proxy-middleware": "^0.19.3",
48
51
  "@types/supertest": "^2.0.8",
49
52
  "@types/uuid": "^8.0.0",
@@ -55,5 +58,5 @@
55
58
  "config.d.ts"
56
59
  ],
57
60
  "configSchema": "config.d.ts",
58
- "gitHead": "f944a625c4a8ec7f6a6237502691da9209ce6b14"
61
+ "gitHead": "e244b348c473700e7d5e5fbcef38bd9f9fd1d0ba"
59
62
  }