Version Packages

This commit is contained in:
github-actions[bot]
2022-10-18 09:55:10 +00:00
parent dd1fefda24
commit f0196a2f04
455 changed files with 5334 additions and 1778 deletions
+25
View File
@@ -1,5 +1,30 @@
# @backstage/plugin-auth-backend
## 0.17.0
### Minor Changes
- e2dc42e9f0: Google OAuth refresh tokens will now be revoked on logout by calling Google's API
- 5fa831ce55: CookieConfigurer can optionally return the `SameSite` cookie attribute.
CookieConfigurer now requires an additional argument `appOrigin` - the origin URL of the app - which is used to calculate the `SameSite` attribute.
defaultCookieConfigurer returns the `SameSite` attribute which defaults to `Lax`. In cases where an auth-backend is running on a different domain than the App, `SameSite=None` is used - but only for secure contexts. This is so that cookies can be included in third-party requests.
OAuthAdapterOptions has been modified to require additional arguments, `baseUrl`, and `cookieConfigurer`.
OAuthAdapter now resolves cookie configuration using its supplied CookieConfigurer for each request to make sure that the proper attributes always are set.
### Patch Changes
- b5c126010c: Auth0 provider now supports optional `connection` and `connectionScope` parameters to configure social identity providers.
- 8c6ec175bf: Fix GitLab provider setup so that it supports GitLab installations with a path in the URL.
- Updated dependencies
- @backstage/catalog-model@1.1.2
- @backstage/backend-common@0.15.2
- @backstage/plugin-auth-node@0.2.6
- @backstage/catalog-client@1.1.1
- @backstage/config@1.0.3
- @backstage/errors@1.1.2
- @backstage/types@1.0.0
## 0.17.0-next.2
### Patch Changes
+1 -1
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/plugin-auth-backend",
"description": "A Backstage backend plugin that handles authentication",
"version": "0.17.0-next.2",
"version": "0.17.0",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",