Version Packages

This commit is contained in:
github-actions[bot]
2021-12-09 12:02:28 +00:00
parent 531f9777f0
commit 9068128fd8
206 changed files with 1667 additions and 963 deletions
+12
View File
@@ -1,5 +1,17 @@
# @backstage/plugin-permission-node
## 0.2.1
### Patch Changes
- dcd1a0c3f4: Minor improvement to the API reports, by not unpacking arguments directly
- a036b65c2f: Updated to use the new `BackstageIdentityResponse` type from `@backstage/plugin-auth-backend`.
The `BackstageIdentityResponse` type is backwards compatible with the `BackstageIdentity`, and provides an additional `identity` field with the claims of the user.
- Updated dependencies
- @backstage/plugin-auth-backend@0.5.0
## 0.2.0
### Minor Changes
+3 -3
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/plugin-permission-node",
"description": "Common permission and authorization utilities for backend plugins",
"version": "0.2.0",
"version": "0.2.1",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -29,14 +29,14 @@
"clean": "backstage-cli clean"
},
"dependencies": {
"@backstage/plugin-auth-backend": "^0.4.10",
"@backstage/plugin-auth-backend": "^0.5.0",
"@backstage/plugin-permission-common": "^0.2.0",
"@types/express": "^4.17.6",
"express": "^4.17.1",
"zod": "^3.11.6"
},
"devDependencies": {
"@backstage/cli": "^0.10.0",
"@backstage/cli": "^0.10.1",
"@types/supertest": "^2.0.8",
"supertest": "^6.1.3"
},