@backstage-community/plugin-3scale-backend 1.8.1 → 1.8.2

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,11 @@
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.2
4
+
5
+ ### Patch Changes
6
+
7
+ - 16995d3: Update README.md to reference the correct package name after migration to backstage/community-plugins
8
+
3
9
  ## 1.8.1
4
10
 
5
11
  ### 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 @janus-idp/backstage-plugin-3scale-backend
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 '@janus-idp/backstage-plugin-3scale-backend';
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 '@janus-idp/backstage-plugin-3scale-backend';
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('@janus-idp/backstage-plugin-3scale-backend/alpha'));
121
+ backend.add(import('@backstage-community/plugin-3scale-backend/alpha'));
122
122
 
123
123
  backend.start();
124
124
  ```
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage-community/plugin-3scale-backend__alpha",
3
- "version": "1.8.1",
3
+ "version": "1.8.2",
4
4
  "main": "../dist/alpha.cjs.js",
5
5
  "types": "../dist/alpha.d.ts"
6
6
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage-community/plugin-3scale-backend",
3
- "version": "1.8.1",
3
+ "version": "1.8.2",
4
4
  "license": "Apache-2.0",
5
5
  "main": "./dist/index.cjs.js",
6
6
  "types": "./dist/index.d.ts",