@backstage/plugin-permission-node 0.7.30-next.2 → 0.7.30

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,33 @@
1
1
  # @backstage/plugin-permission-node
2
2
 
3
+ ## 0.7.30
4
+
5
+ ### Patch Changes
6
+
7
+ - 9e63318: Ensure that service token access restrictions, when present, are taken into account
8
+ - d44a20a: Added additional plugin metadata to `package.json`.
9
+ - c7b0dd1: Import `tokenManager` definition from `@backstage/backend-plugin-api`
10
+ - Updated dependencies
11
+ - @backstage/backend-common@0.23.0
12
+ - @backstage/backend-plugin-api@0.6.19
13
+ - @backstage/plugin-auth-node@0.4.14
14
+ - @backstage/plugin-permission-common@0.7.14
15
+ - @backstage/config@1.2.0
16
+ - @backstage/errors@1.2.4
17
+
18
+ ## 0.7.30-next.3
19
+
20
+ ### Patch Changes
21
+
22
+ - d44a20a: Added additional plugin metadata to `package.json`.
23
+ - Updated dependencies
24
+ - @backstage/backend-plugin-api@0.6.19-next.3
25
+ - @backstage/plugin-auth-node@0.4.14-next.3
26
+ - @backstage/plugin-permission-common@0.7.14-next.0
27
+ - @backstage/backend-common@0.23.0-next.3
28
+ - @backstage/config@1.2.0
29
+ - @backstage/errors@1.2.4
30
+
3
31
  ## 0.7.30-next.2
4
32
 
5
33
  ### Patch Changes
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-permission-node",
3
- "version": "0.7.30-next.2",
3
+ "version": "0.7.30",
4
4
  "main": "../dist/alpha.cjs.js",
5
5
  "types": "../dist/alpha.d.ts"
6
6
  }
package/package.json CHANGED
@@ -1,13 +1,31 @@
1
1
  {
2
2
  "name": "@backstage/plugin-permission-node",
3
+ "version": "0.7.30",
3
4
  "description": "Common permission and authorization utilities for backend plugins",
4
- "version": "0.7.30-next.2",
5
- "main": "./dist/index.cjs.js",
6
- "types": "./dist/index.d.ts",
7
- "license": "Apache-2.0",
5
+ "backstage": {
6
+ "role": "node-library",
7
+ "pluginId": "permission",
8
+ "pluginPackages": [
9
+ "@backstage/plugin-permission-backend",
10
+ "@backstage/plugin-permission-common",
11
+ "@backstage/plugin-permission-node",
12
+ "@backstage/plugin-permission-react"
13
+ ]
14
+ },
8
15
  "publishConfig": {
9
16
  "access": "public"
10
17
  },
18
+ "keywords": [
19
+ "backstage",
20
+ "permissions"
21
+ ],
22
+ "homepage": "https://backstage.io",
23
+ "repository": {
24
+ "type": "git",
25
+ "url": "https://github.com/backstage/backstage",
26
+ "directory": "plugins/permission-node"
27
+ },
28
+ "license": "Apache-2.0",
11
29
  "exports": {
12
30
  ".": {
13
31
  "require": "./dist/index.cjs.js",
@@ -21,35 +39,28 @@
21
39
  },
22
40
  "./package.json": "./package.json"
23
41
  },
24
- "backstage": {
25
- "role": "node-library"
26
- },
27
- "homepage": "https://backstage.io",
28
- "repository": {
29
- "type": "git",
30
- "url": "https://github.com/backstage/backstage",
31
- "directory": "plugins/permission-node"
32
- },
33
- "keywords": [
34
- "backstage",
35
- "permissions"
42
+ "main": "./dist/index.cjs.js",
43
+ "types": "./dist/index.d.ts",
44
+ "files": [
45
+ "dist",
46
+ "alpha"
36
47
  ],
37
48
  "scripts": {
38
49
  "build": "backstage-cli package build",
50
+ "clean": "backstage-cli package clean",
39
51
  "lint": "backstage-cli package lint",
40
- "test": "backstage-cli package test",
41
52
  "prepack": "backstage-cli package prepack",
42
53
  "postpack": "backstage-cli package postpack",
43
- "clean": "backstage-cli package clean",
44
- "start": "backstage-cli package start"
54
+ "start": "backstage-cli package start",
55
+ "test": "backstage-cli package test"
45
56
  },
46
57
  "dependencies": {
47
- "@backstage/backend-common": "^0.23.0-next.2",
48
- "@backstage/backend-plugin-api": "^0.6.19-next.2",
58
+ "@backstage/backend-common": "^0.23.0",
59
+ "@backstage/backend-plugin-api": "^0.6.19",
49
60
  "@backstage/config": "^1.2.0",
50
61
  "@backstage/errors": "^1.2.4",
51
- "@backstage/plugin-auth-node": "^0.4.14-next.2",
52
- "@backstage/plugin-permission-common": "^0.7.13",
62
+ "@backstage/plugin-auth-node": "^0.4.14",
63
+ "@backstage/plugin-permission-common": "^0.7.14",
53
64
  "@types/express": "^4.17.6",
54
65
  "express": "^4.17.1",
55
66
  "express-promise-router": "^4.1.0",
@@ -57,14 +68,10 @@
57
68
  "zod-to-json-schema": "^3.20.4"
58
69
  },
59
70
  "devDependencies": {
60
- "@backstage/backend-test-utils": "^0.4.0-next.2",
61
- "@backstage/cli": "^0.26.7-next.2",
71
+ "@backstage/backend-test-utils": "^0.4.0",
72
+ "@backstage/cli": "^0.26.7",
62
73
  "@types/supertest": "^2.0.8",
63
74
  "msw": "^1.0.0",
64
75
  "supertest": "^6.1.3"
65
- },
66
- "files": [
67
- "dist",
68
- "alpha"
69
- ]
76
+ }
70
77
  }