@backstage/plugin-proxy-backend 0.6.0-next.1 → 0.6.0

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 +15 -0
  2. package/package.json +10 -17
package/CHANGELOG.md CHANGED
@@ -1,5 +1,20 @@
1
1
  # @backstage/plugin-proxy-backend
2
2
 
3
+ ## 0.6.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 2d8b0e4: **BREAKING**: Removed support for the old backend system.
8
+
9
+ As part of this change the plugin export from `/alpha` as been removed. If you are currently importing `@backstage/plugin-proxy-backend/alpha`, please update your import to `@backstage/plugin-proxy-backend`.
10
+
11
+ ### Patch Changes
12
+
13
+ - Updated dependencies
14
+ - @backstage/backend-plugin-api@1.2.1
15
+ - @backstage/types@1.2.1
16
+ - @backstage/plugin-proxy-node@0.1.2
17
+
3
18
  ## 0.6.0-next.1
4
19
 
5
20
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-proxy-backend",
3
- "version": "0.6.0-next.1",
3
+ "version": "0.6.0",
4
4
  "description": "A Backstage backend plugin that helps you set up proxy endpoints in the backend",
5
5
  "backstage": {
6
6
  "role": "backend-plugin",
@@ -36,13 +36,6 @@
36
36
  },
37
37
  "main": "./dist/index.cjs.js",
38
38
  "types": "./dist/index.d.ts",
39
- "typesVersions": {
40
- "*": {
41
- "index": [
42
- "dist/index.d.ts"
43
- ]
44
- }
45
- },
46
39
  "files": [
47
40
  "dist",
48
41
  "config.d.ts"
@@ -57,19 +50,19 @@
57
50
  "test": "backstage-cli package test"
58
51
  },
59
52
  "dependencies": {
60
- "@backstage/backend-plugin-api": "1.2.1-next.1",
61
- "@backstage/plugin-proxy-node": "0.1.2-next.1",
62
- "@backstage/types": "1.2.1",
53
+ "@backstage/backend-plugin-api": "^1.2.1",
54
+ "@backstage/plugin-proxy-node": "^0.1.2",
55
+ "@backstage/types": "^1.2.1",
63
56
  "express-promise-router": "^4.1.0",
64
57
  "http-proxy-middleware": "^2.0.0"
65
58
  },
66
59
  "devDependencies": {
67
- "@backstage/backend-app-api": "1.2.1-next.1",
68
- "@backstage/backend-defaults": "0.8.2-next.1",
69
- "@backstage/backend-test-utils": "1.3.1-next.1",
70
- "@backstage/cli": "0.30.1-next.0",
71
- "@backstage/config-loader": "1.9.6",
72
- "@backstage/errors": "1.2.7",
60
+ "@backstage/backend-app-api": "^1.2.1",
61
+ "@backstage/backend-defaults": "^0.8.2",
62
+ "@backstage/backend-test-utils": "^1.3.1",
63
+ "@backstage/cli": "^0.31.0",
64
+ "@backstage/config-loader": "^1.10.0",
65
+ "@backstage/errors": "^1.2.7",
73
66
  "@types/express": "^4.17.6",
74
67
  "@types/http-proxy-middleware": "^1.0.0",
75
68
  "express": "^4.17.1",