Version Packages

This commit is contained in:
github-actions[bot]
2022-01-13 14:23:13 +00:00
parent 182e573def
commit b04011602b
282 changed files with 2256 additions and 1341 deletions
+17
View File
@@ -1,5 +1,22 @@
# @backstage/plugin-auth-backend
## 0.6.2
### Patch Changes
- 5333451def: Cleaned up API exports
- da9c59d6e0: Removed `@backstage/test-utils` dependency.
- 20ca7cfa5f: Switched the secure cookie mode set on the `express-session` to use `'auto'` rather than `true`. This works around an issue where cookies would not be set if TLS termination was handled in a proxy rather than having the backend served directly with HTTPS.
The downside of this change is that secure cookies won't be used unless the backend is directly served with HTTPS. This will be remedied in a future update that allows the backend to configured for trusted proxy mode.
- Updated dependencies
- @backstage/config@0.1.12
- @backstage/backend-common@0.10.3
- @backstage/errors@0.2.0
- @backstage/catalog-client@0.5.4
- @backstage/catalog-model@0.9.9
## 0.6.1
### 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.6.1",
"version": "0.6.2",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -30,11 +30,11 @@
"clean": "backstage-cli clean"
},
"dependencies": {
"@backstage/backend-common": "^0.10.2",
"@backstage/catalog-client": "^0.5.3",
"@backstage/catalog-model": "^0.9.8",
"@backstage/config": "^0.1.11",
"@backstage/errors": "^0.1.5",
"@backstage/backend-common": "^0.10.3",
"@backstage/catalog-client": "^0.5.4",
"@backstage/catalog-model": "^0.9.9",
"@backstage/config": "^0.1.12",
"@backstage/errors": "^0.2.0",
"@backstage/types": "^0.1.1",
"@google-cloud/firestore": "^4.15.1",
"@types/express": "^4.17.6",
@@ -73,8 +73,8 @@
"yn": "^4.0.0"
},
"devDependencies": {
"@backstage/cli": "^0.10.5",
"@backstage/test-utils": "^0.2.1",
"@backstage/cli": "^0.11.0",
"@backstage/test-utils": "^0.2.2",
"@types/body-parser": "^1.19.0",
"@types/cookie-parser": "^1.4.2",
"@types/express-session": "^1.17.2",