Version Packages
This commit is contained in:
@@ -1,5 +1,35 @@
|
||||
# @backstage/plugin-auth-backend
|
||||
|
||||
## 0.11.0
|
||||
|
||||
### Minor Changes
|
||||
|
||||
- 3884bf0348: **BREAKING**: The default sign-in resolvers for all providers, if you choose to
|
||||
use them, now emit the token `sub` and `ent` claims on the standard,
|
||||
all-lowercase form, instead of the mixed-case form. The mixed-case form causes
|
||||
problems for implementations that naively do string comparisons on refs. The end
|
||||
result is that you may for example see your Backstage token `sub` claim now
|
||||
become `'user:default/my-id'` instead of `'user:default/My-ID'`.
|
||||
|
||||
On a related note, specifically the SAML provider now correctly issues both
|
||||
`sub` and `ent` claims, and on the full entity ref form instead of the short
|
||||
form with only the ID.
|
||||
|
||||
**NOTE**: For a long time, it has been strongly recommended that you provide
|
||||
your own sign-in resolver instead of using the builtin ones, and that will
|
||||
become mandatory in the future.
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- d64b8d3678: chore(deps): bump `minimatch` from 3.0.4 to 5.0.0
|
||||
- 6e1cbc12a6: Updated according to the new `getEntityFacets` catalog API method
|
||||
- 919cf2f836: Minor updates to match the new `targetRef` field of relations, and to stop consuming the `target` field
|
||||
- Updated dependencies
|
||||
- @backstage/backend-common@0.11.0
|
||||
- @backstage/catalog-model@0.11.0
|
||||
- @backstage/catalog-client@0.7.2
|
||||
- @backstage/plugin-auth-node@0.1.3
|
||||
|
||||
## 0.10.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@backstage/plugin-auth-backend",
|
||||
"description": "A Backstage backend plugin that handles authentication",
|
||||
"version": "0.10.1",
|
||||
"version": "0.11.0",
|
||||
"main": "src/index.ts",
|
||||
"types": "src/index.ts",
|
||||
"license": "Apache-2.0",
|
||||
@@ -33,13 +33,13 @@
|
||||
"clean": "backstage-cli package clean"
|
||||
},
|
||||
"dependencies": {
|
||||
"@backstage/plugin-auth-node": "^0.1.1",
|
||||
"@backstage/backend-common": "^0.10.8",
|
||||
"@backstage/catalog-client": "^0.7.0",
|
||||
"@backstage/catalog-model": "^0.10.0",
|
||||
"@backstage/config": "^0.1.14",
|
||||
"@backstage/errors": "^0.2.1",
|
||||
"@backstage/types": "^0.1.2",
|
||||
"@backstage/plugin-auth-node": "^0.1.3",
|
||||
"@backstage/backend-common": "^0.11.0",
|
||||
"@backstage/catalog-client": "^0.7.2",
|
||||
"@backstage/catalog-model": "^0.11.0",
|
||||
"@backstage/config": "^0.1.15",
|
||||
"@backstage/errors": "^0.2.2",
|
||||
"@backstage/types": "^0.1.3",
|
||||
"@google-cloud/firestore": "^5.0.2",
|
||||
"@types/express": "^4.17.6",
|
||||
"@types/passport": "^1.0.3",
|
||||
@@ -76,8 +76,8 @@
|
||||
"yn": "^4.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@backstage/cli": "^0.14.0",
|
||||
"@backstage/test-utils": "^0.2.5",
|
||||
"@backstage/cli": "^0.14.1",
|
||||
"@backstage/test-utils": "^0.2.6",
|
||||
"@types/body-parser": "^1.19.0",
|
||||
"@types/cookie-parser": "^1.4.2",
|
||||
"@types/express-session": "^1.17.2",
|
||||
|
||||
Reference in New Issue
Block a user