Version Packages

This commit is contained in:
github-actions[bot]
2021-08-26 11:25:27 +00:00
parent 0d377b45b3
commit e7130884a0
146 changed files with 920 additions and 598 deletions
+16
View File
@@ -1,5 +1,21 @@
# @backstage/plugin-auth-backend
## 0.3.23
### Patch Changes
- 392b36fa1: Added support for using authenticating via GitHub Apps in addition to GitHub OAuth Apps. It used to be possible to use GitHub Apps, but they did not handle session refresh correctly.
Note that GitHub Apps handle OAuth scope at the app installation level, meaning that the `scope` parameter for `getAccessToken` has no effect. When calling `getAccessToken` in open source plugins, one should still include the appropriate scope, but also document in the plugin README what scopes are required in the case of GitHub Apps.
In addition, the `authHandler` and `signInResolver` options have been implemented for the GitHub provider in the auth backend.
- ea9fe9567: Fixed a bug where OAuth state parameters would be serialized as the string `'undefined'`.
- 39fc3d7f8: Add Sign In and Handler resolver for GitLab provider
- Updated dependencies
- @backstage/backend-common@0.9.0
- @backstage/config@0.1.8
## 0.3.22
### Patch Changes
+3 -3
View File
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-auth-backend",
"version": "0.3.22",
"version": "0.3.23",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -29,10 +29,10 @@
"clean": "backstage-cli clean"
},
"dependencies": {
"@backstage/backend-common": "^0.8.10",
"@backstage/backend-common": "^0.9.0",
"@backstage/catalog-client": "^0.3.18",
"@backstage/catalog-model": "^0.9.0",
"@backstage/config": "^0.1.7",
"@backstage/config": "^0.1.8",
"@backstage/errors": "^0.1.1",
"@backstage/test-utils": "^0.1.17",
"@types/express": "^4.17.6",