@backstage/plugin-permission-backend-module-allow-all-policy 0.1.0-next.1 → 0.1.1

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 +41 -0
  2. package/package.json +8 -8
package/CHANGELOG.md CHANGED
@@ -1,5 +1,46 @@
1
1
  # @backstage/plugin-permission-backend-module-allow-all-policy
2
2
 
3
+ ## 0.1.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+ - @backstage/plugin-auth-node@0.3.1
9
+ - @backstage/backend-plugin-api@0.6.4
10
+ - @backstage/plugin-permission-node@0.7.15
11
+ - @backstage/backend-common@0.19.6
12
+
13
+ ## 0.1.0
14
+
15
+ ### Minor Changes
16
+
17
+ - 5f7b2153526b: Created package with policy `permissionModuleAllowAllPolicy`
18
+
19
+ ### Patch Changes
20
+
21
+ - 71114ac50e02: The export for the new backend system has been moved to be the `default` export.
22
+
23
+ For example, if you are currently importing the plugin using the following pattern:
24
+
25
+ ```ts
26
+ import { examplePlugin } from '@backstage/plugin-example-backend';
27
+
28
+ backend.add(examplePlugin);
29
+ ```
30
+
31
+ It should be migrated to this:
32
+
33
+ ```ts
34
+ backend.add(import('@backstage/plugin-example-backend'));
35
+ ```
36
+
37
+ - Updated dependencies
38
+ - @backstage/backend-common@0.19.5
39
+ - @backstage/plugin-auth-node@0.3.0
40
+ - @backstage/plugin-permission-common@0.7.8
41
+ - @backstage/plugin-permission-node@0.7.14
42
+ - @backstage/backend-plugin-api@0.6.3
43
+
3
44
  ## 0.1.0-next.1
4
45
 
5
46
  ### 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.1",
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.6",
27
+ "@backstage/backend-plugin-api": "^0.6.4",
28
+ "@backstage/plugin-auth-node": "^0.3.1",
29
+ "@backstage/plugin-permission-common": "^0.7.8",
30
+ "@backstage/plugin-permission-node": "^0.7.15"
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.5",
34
+ "@backstage/cli": "^0.22.13"
35
35
  },
36
36
  "files": [
37
37
  "dist"