@backstage-community/plugin-3scale-backend 1.8.1 → 1.8.3
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 +14 -0
- package/README.md +4 -4
- package/alpha/package.json +1 -1
- package/package.json +10 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
## @janus-idp/backstage-plugin-3scale-backend [1.8.0](https://github.com/janus-idp/backstage-plugins/compare/@janus-idp/backstage-plugin-3scale-backend@1.7.1...@janus-idp/backstage-plugin-3scale-backend@1.8.0) (2024-07-25)
|
|
2
2
|
|
|
3
|
+
## 1.8.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 235f5f4: Updated dependency `@types/supertest` to `6.0.2`.
|
|
8
|
+
Updated dependency `supertest` to `7.0.0`.
|
|
9
|
+
- 0df0ae0: Backstage version bump to v1.30.2
|
|
10
|
+
|
|
11
|
+
## 1.8.2
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- 16995d3: Update README.md to reference the correct package name after migration to backstage/community-plugins
|
|
16
|
+
|
|
3
17
|
## 1.8.1
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -9,7 +9,7 @@ The 3scale Backstage provider plugin synchronizes the 3scale content into the [B
|
|
|
9
9
|
Run the following command to install the 3scale Backstage provider plugin:
|
|
10
10
|
|
|
11
11
|
```console
|
|
12
|
-
yarn workspace backend add @
|
|
12
|
+
yarn workspace backend add @backstage-community/plugin-3scale-backend
|
|
13
13
|
```
|
|
14
14
|
|
|
15
15
|
### Configuration
|
|
@@ -40,7 +40,7 @@ yarn workspace backend add @janus-idp/backstage-plugin-3scale-backend
|
|
|
40
40
|
|
|
41
41
|
```ts title="packages/backend/src/plugins/catalog.ts"
|
|
42
42
|
/* highlight-add-next-line */
|
|
43
|
-
import { ThreeScaleApiEntityProvider } from '@
|
|
43
|
+
import { ThreeScaleApiEntityProvider } from '@backstage-community/plugin-3scale-backend';
|
|
44
44
|
|
|
45
45
|
export default async function createPlugin(
|
|
46
46
|
env: PluginEnvironment,
|
|
@@ -75,7 +75,7 @@ yarn workspace backend add @janus-idp/backstage-plugin-3scale-backend
|
|
|
75
75
|
|
|
76
76
|
```ts title="packages/backend/src/plugins/catalog.ts"
|
|
77
77
|
/* highlight-add-next-line */
|
|
78
|
-
import { ThreeScaleApiEntityProvider } from '@
|
|
78
|
+
import { ThreeScaleApiEntityProvider } from '@backstage-community/plugin-3scale-backend';
|
|
79
79
|
|
|
80
80
|
export default async function createPlugin(
|
|
81
81
|
env: PluginEnvironment,
|
|
@@ -118,7 +118,7 @@ yarn workspace backend add @janus-idp/backstage-plugin-3scale-backend
|
|
|
118
118
|
const backend = createBackend();
|
|
119
119
|
|
|
120
120
|
/* highlight-add-next-line */
|
|
121
|
-
backend.add(import('@
|
|
121
|
+
backend.add(import('@backstage-community/plugin-3scale-backend/alpha'));
|
|
122
122
|
|
|
123
123
|
backend.start();
|
|
124
124
|
```
|
package/alpha/package.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage-community/plugin-3scale-backend",
|
|
3
|
-
"version": "1.8.
|
|
3
|
+
"version": "1.8.3",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"main": "./dist/index.cjs.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -39,20 +39,20 @@
|
|
|
39
39
|
"tsc": "tsc"
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@backstage/backend-common": "^0.
|
|
43
|
-
"@backstage/backend-dynamic-feature-service": "^0.
|
|
44
|
-
"@backstage/backend-plugin-api": "^0.
|
|
45
|
-
"@backstage/backend-tasks": "^0.
|
|
46
|
-
"@backstage/catalog-model": "^1.
|
|
42
|
+
"@backstage/backend-common": "^0.24.0",
|
|
43
|
+
"@backstage/backend-dynamic-feature-service": "^0.3.0",
|
|
44
|
+
"@backstage/backend-plugin-api": "^0.8.0",
|
|
45
|
+
"@backstage/backend-tasks": "^0.6.0",
|
|
46
|
+
"@backstage/catalog-model": "^1.6.0",
|
|
47
47
|
"@backstage/config": "^1.2.0",
|
|
48
|
-
"@backstage/plugin-catalog-node": "^1.12.
|
|
48
|
+
"@backstage/plugin-catalog-node": "^1.12.5"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
51
|
-
"@backstage/cli": "0.
|
|
51
|
+
"@backstage/cli": "^0.27.0",
|
|
52
52
|
"@janus-idp/cli": "1.13.0",
|
|
53
|
-
"@types/supertest": "
|
|
53
|
+
"@types/supertest": "6.0.2",
|
|
54
54
|
"msw": "1.3.3",
|
|
55
|
-
"supertest": "
|
|
55
|
+
"supertest": "7.0.0"
|
|
56
56
|
},
|
|
57
57
|
"files": [
|
|
58
58
|
"dist",
|