@backstage/plugin-permission-backend-module-allow-all-policy 0.1.10 → 0.1.11-next.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 +10 -17
  2. package/package.json +21 -21
package/CHANGELOG.md CHANGED
@@ -1,31 +1,24 @@
1
1
  # @backstage/plugin-permission-backend-module-allow-all-policy
2
2
 
3
- ## 0.1.10
3
+ ## 0.1.11-next.1
4
4
 
5
5
  ### Patch Changes
6
6
 
7
7
  - Updated dependencies
8
- - @backstage/plugin-auth-node@0.4.8
9
- - @backstage/plugin-permission-node@0.7.24
10
- - @backstage/backend-plugin-api@0.6.13
8
+ - @backstage/backend-plugin-api@0.6.14-next.1
9
+ - @backstage/plugin-auth-node@0.4.9-next.1
10
+ - @backstage/plugin-permission-common@0.7.13-next.1
11
+ - @backstage/plugin-permission-node@0.7.25-next.1
11
12
 
12
- ## 0.1.9
13
+ ## 0.1.10-next.0
13
14
 
14
15
  ### Patch Changes
15
16
 
16
17
  - Updated dependencies
17
- - @backstage/plugin-auth-node@0.4.7
18
- - @backstage/plugin-permission-node@0.7.23
19
- - @backstage/backend-plugin-api@0.6.12
20
-
21
- ## 0.1.8
22
-
23
- ### Patch Changes
24
-
25
- - Updated dependencies
26
- - @backstage/plugin-auth-node@0.4.6
27
- - @backstage/plugin-permission-node@0.7.22
28
- - @backstage/backend-plugin-api@0.6.11
18
+ - @backstage/plugin-auth-node@0.4.8-next.0
19
+ - @backstage/backend-plugin-api@0.6.13-next.0
20
+ - @backstage/plugin-permission-common@0.7.13-next.0
21
+ - @backstage/plugin-permission-node@0.7.24-next.0
29
22
 
30
23
  ## 0.1.7
31
24
 
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "@backstage/plugin-permission-backend-module-allow-all-policy",
3
+ "version": "0.1.11-next.1",
3
4
  "description": "Allow all policy backend module for the permission plugin.",
4
- "version": "0.1.10",
5
- "main": "dist/index.cjs.js",
6
- "types": "dist/index.d.ts",
7
- "license": "Apache-2.0",
5
+ "backstage": {
6
+ "role": "backend-plugin-module"
7
+ },
8
8
  "publishConfig": {
9
9
  "access": "public",
10
10
  "main": "dist/index.cjs.js",
@@ -15,29 +15,29 @@
15
15
  "url": "https://github.com/backstage/backstage",
16
16
  "directory": "plugins/permission-backend-module-policy-allow-all"
17
17
  },
18
- "backstage": {
19
- "role": "backend-plugin-module"
20
- },
18
+ "license": "Apache-2.0",
19
+ "main": "dist/index.cjs.js",
20
+ "types": "dist/index.d.ts",
21
+ "files": [
22
+ "dist"
23
+ ],
21
24
  "scripts": {
22
- "start": "backstage-cli package start",
23
25
  "build": "backstage-cli package build",
24
- "lint": "backstage-cli package lint",
25
- "test": "backstage-cli package test",
26
26
  "clean": "backstage-cli package clean",
27
+ "lint": "backstage-cli package lint",
27
28
  "prepack": "backstage-cli package prepack",
28
- "postpack": "backstage-cli package postpack"
29
+ "postpack": "backstage-cli package postpack",
30
+ "start": "backstage-cli package start",
31
+ "test": "backstage-cli package test"
29
32
  },
30
33
  "dependencies": {
31
- "@backstage/backend-plugin-api": "^0.6.13",
32
- "@backstage/plugin-auth-node": "^0.4.8",
33
- "@backstage/plugin-permission-common": "^0.7.12",
34
- "@backstage/plugin-permission-node": "^0.7.24"
34
+ "@backstage/backend-plugin-api": "^0.6.14-next.1",
35
+ "@backstage/plugin-auth-node": "^0.4.9-next.1",
36
+ "@backstage/plugin-permission-common": "^0.7.13-next.1",
37
+ "@backstage/plugin-permission-node": "^0.7.25-next.1"
35
38
  },
36
39
  "devDependencies": {
37
- "@backstage/backend-test-utils": "^0.3.3",
38
- "@backstage/cli": "^0.25.2"
39
- },
40
- "files": [
41
- "dist"
42
- ]
40
+ "@backstage/backend-test-utils": "^0.3.4-next.1",
41
+ "@backstage/cli": "^0.25.3-next.1"
42
+ }
43
43
  }