@backstage/plugin-proxy-backend 0.2.19 → 0.2.22
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 +23 -0
- package/dist/index.d.ts +14 -0
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,28 @@
|
|
|
1
1
|
# @backstage/plugin-proxy-backend
|
|
2
2
|
|
|
3
|
+
## 0.2.22
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
- @backstage/backend-common@0.12.0
|
|
9
|
+
|
|
10
|
+
## 0.2.21
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies
|
|
15
|
+
- @backstage/backend-common@0.11.0
|
|
16
|
+
|
|
17
|
+
## 0.2.20
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- Fix for the previous release with missing type declarations.
|
|
22
|
+
- Updated dependencies
|
|
23
|
+
- @backstage/backend-common@0.10.9
|
|
24
|
+
- @backstage/config@0.1.15
|
|
25
|
+
|
|
3
26
|
## 0.2.19
|
|
4
27
|
|
|
5
28
|
### Patch Changes
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { Config } from '@backstage/config';
|
|
2
|
+
import express from 'express';
|
|
3
|
+
import { Logger } from 'winston';
|
|
4
|
+
import { PluginEndpointDiscovery } from '@backstage/backend-common';
|
|
5
|
+
|
|
6
|
+
interface RouterOptions {
|
|
7
|
+
logger: Logger;
|
|
8
|
+
config: Config;
|
|
9
|
+
discovery: PluginEndpointDiscovery;
|
|
10
|
+
skipInvalidProxies?: boolean;
|
|
11
|
+
}
|
|
12
|
+
declare function createRouter(options: RouterOptions): Promise<express.Router>;
|
|
13
|
+
|
|
14
|
+
export { createRouter };
|
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.
|
|
4
|
+
"version": "0.2.22",
|
|
5
5
|
"main": "dist/index.cjs.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -32,8 +32,8 @@
|
|
|
32
32
|
"clean": "backstage-cli package clean"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@backstage/backend-common": "^0.
|
|
36
|
-
"@backstage/config": "^0.1.
|
|
35
|
+
"@backstage/backend-common": "^0.12.0",
|
|
36
|
+
"@backstage/config": "^0.1.15",
|
|
37
37
|
"@types/express": "^4.17.6",
|
|
38
38
|
"express": "^4.17.1",
|
|
39
39
|
"express-promise-router": "^4.1.0",
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"yup": "^0.32.9"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
|
-
"@backstage/cli": "^0.
|
|
49
|
+
"@backstage/cli": "^0.15.0",
|
|
50
50
|
"@types/http-proxy-middleware": "^0.19.3",
|
|
51
51
|
"@types/supertest": "^2.0.8",
|
|
52
52
|
"@types/uuid": "^8.0.0",
|
|
@@ -58,5 +58,5 @@
|
|
|
58
58
|
"config.d.ts"
|
|
59
59
|
],
|
|
60
60
|
"configSchema": "config.d.ts",
|
|
61
|
-
"gitHead": "
|
|
61
|
+
"gitHead": "04bb0dd824b78f6b57dac62c3015e681f094045c"
|
|
62
62
|
}
|