@backstage/plugin-permission-backend-module-allow-all-policy 0.1.0-next.1 → 0.1.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 +31 -0
  2. package/package.json +8 -8
package/CHANGELOG.md CHANGED
@@ -1,5 +1,36 @@
1
1
  # @backstage/plugin-permission-backend-module-allow-all-policy
2
2
 
3
+ ## 0.1.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 5f7b2153526b: Created package with policy `permissionModuleAllowAllPolicy`
8
+
9
+ ### Patch Changes
10
+
11
+ - 71114ac50e02: The export for the new backend system has been moved to be the `default` export.
12
+
13
+ For example, if you are currently importing the plugin using the following pattern:
14
+
15
+ ```ts
16
+ import { examplePlugin } from '@backstage/plugin-example-backend';
17
+
18
+ backend.add(examplePlugin);
19
+ ```
20
+
21
+ It should be migrated to this:
22
+
23
+ ```ts
24
+ backend.add(import('@backstage/plugin-example-backend'));
25
+ ```
26
+
27
+ - Updated dependencies
28
+ - @backstage/backend-common@0.19.5
29
+ - @backstage/plugin-auth-node@0.3.0
30
+ - @backstage/plugin-permission-common@0.7.8
31
+ - @backstage/plugin-permission-node@0.7.14
32
+ - @backstage/backend-plugin-api@0.6.3
33
+
3
34
  ## 0.1.0-next.1
4
35
 
5
36
  ### Patch Changes
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@backstage/plugin-permission-backend-module-allow-all-policy",
3
3
  "description": "Allow all policy backend module for the permission plugin.",
4
- "version": "0.1.0-next.1",
4
+ "version": "0.1.0",
5
5
  "main": "dist/index.cjs.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "license": "Apache-2.0",
@@ -23,15 +23,15 @@
23
23
  "postpack": "backstage-cli package postpack"
24
24
  },
25
25
  "dependencies": {
26
- "@backstage/backend-common": "^0.19.5-next.3",
27
- "@backstage/backend-plugin-api": "^0.6.3-next.3",
28
- "@backstage/plugin-auth-node": "^0.3.0-next.3",
29
- "@backstage/plugin-permission-common": "^0.7.8-next.2",
30
- "@backstage/plugin-permission-node": "^0.7.14-next.3"
26
+ "@backstage/backend-common": "^0.19.5",
27
+ "@backstage/backend-plugin-api": "^0.6.3",
28
+ "@backstage/plugin-auth-node": "^0.3.0",
29
+ "@backstage/plugin-permission-common": "^0.7.8",
30
+ "@backstage/plugin-permission-node": "^0.7.14"
31
31
  },
32
32
  "devDependencies": {
33
- "@backstage/backend-test-utils": "^0.2.3-next.3",
34
- "@backstage/cli": "^0.22.13-next.3"
33
+ "@backstage/backend-test-utils": "^0.2.3",
34
+ "@backstage/cli": "^0.22.13"
35
35
  },
36
36
  "files": [
37
37
  "dist"