Version Packages (next)

This commit is contained in:
github-actions[bot]
2022-04-12 15:19:00 +00:00
parent 0df260a54f
commit 2e1cce5528
197 changed files with 2505 additions and 758 deletions
+9
View File
@@ -1,5 +1,14 @@
# @backstage/plugin-permission-common
## 0.6.0-next.1
### Patch Changes
- 2b07063d77: Added `PermissionEvaluator`, which will replace the existing `PermissionAuthorizer` interface. This new interface provides stronger type safety and validation by splitting `PermissionAuthorizer.authorize()` into two methods:
- `authorize()`: Used when the caller requires a definitive decision.
- `authorizeConditional()`: Used when the caller can optimize the evaluation of any conditional decisions. For example, a plugin backend may want to use conditions in a database query instead of evaluating each resource in memory.
## 0.6.0-next.0
### Minor Changes
+2 -2
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/plugin-permission-common",
"description": "Isomorphic types and client for Backstage permissions and authorization",
"version": "0.6.0-next.0",
"version": "0.6.0-next.1",
"main": "src/index.ts",
"types": "src/index.ts",
"publishConfig": {
@@ -48,7 +48,7 @@
"zod": "^3.11.6"
},
"devDependencies": {
"@backstage/cli": "^0.17.0-next.1",
"@backstage/cli": "^0.17.0-next.3",
"@types/jest": "^26.0.7",
"msw": "^0.35.0"
}