Version Packages

This commit is contained in:
github-actions[bot]
2022-05-17 09:26:29 +00:00
parent 6a1f67ba49
commit 64a03bd946
449 changed files with 5696 additions and 2960 deletions
+38
View File
@@ -1,5 +1,43 @@
# @backstage/plugin-auth-backend
## 0.14.0
### Minor Changes
- 2df2f01a29: Removed the explicit `disableRefresh` option from `OAuthAdapter`. Refresh can still be disabled for a provider by not implementing the `refresh` method.
### Patch Changes
- cac3ba68a2: Fixed a bug that was introduced in `0.13.1-next.0` which caused the `ent` claim of issued tokens to be dropped.
- 5d268623dd: Updates the OAuth2 Proxy provider to require less infrastructure configuration.
The auth result object of the OAuth2 Proxy now provides access to the request headers, both through the `headers` object as well as `getHeader` method. The existing logic that parses and extracts the user information from ID tokens is deprecated and will be removed in a future release. See the OAuth2 Proxy provider documentation for more details.
The OAuth2 Proxy provider now also has a default `authHandler` implementation that reads the display name and email from the incoming request headers.
- 2df2f01a29: The Auth0 adapter no longer disables session refreshing.
- cfc0f19699: Updated dependency `fs-extra` to `10.1.0`.
- 787ae0d541: Add more common predefined sign-in resolvers to auth providers.
Add the existing resolver to more providers (already available at `google`):
- `providers.microsoft.resolvers.emailLocalPartMatchingUserEntityName()`
- `providers.okta.resolvers.emailLocalPartMatchingUserEntityName()`
Add a new resolver for simple email-to-email matching:
- `providers.google.resolvers.emailMatchingUserEntityProfileEmail()`
- `providers.microsoft.resolvers.emailMatchingUserEntityProfileEmail()`
- `providers.okta.resolvers.emailMatchingUserEntityProfileEmail()`
- 9ec4e0613e: Update to `jose` 4.6.0
- Updated dependencies
- @backstage/backend-common@0.13.3
- @backstage/config@1.0.1
- @backstage/plugin-auth-node@0.2.1
- @backstage/catalog-client@1.0.2
- @backstage/catalog-model@1.0.2
## 0.13.1-next.2
### Patch Changes
+8 -8
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/plugin-auth-backend",
"description": "A Backstage backend plugin that handles authentication",
"version": "0.13.1-next.2",
"version": "0.14.0",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -33,11 +33,11 @@
"clean": "backstage-cli package clean"
},
"dependencies": {
"@backstage/plugin-auth-node": "^0.2.1-next.1",
"@backstage/backend-common": "^0.13.3-next.2",
"@backstage/catalog-client": "^1.0.2-next.0",
"@backstage/catalog-model": "^1.0.2-next.0",
"@backstage/config": "^1.0.1-next.0",
"@backstage/plugin-auth-node": "^0.2.1",
"@backstage/backend-common": "^0.13.3",
"@backstage/catalog-client": "^1.0.2",
"@backstage/catalog-model": "^1.0.2",
"@backstage/config": "^1.0.1",
"@backstage/errors": "^1.0.0",
"@backstage/types": "^1.0.0",
"@google-cloud/firestore": "^5.0.2",
@@ -76,8 +76,8 @@
"yn": "^4.0.0"
},
"devDependencies": {
"@backstage/backend-test-utils": "^0.1.24-next.1",
"@backstage/cli": "^0.17.1-next.2",
"@backstage/backend-test-utils": "^0.1.24",
"@backstage/cli": "^0.17.1",
"@types/body-parser": "^1.19.0",
"@types/cookie-parser": "^1.4.2",
"@types/express-session": "^1.17.2",