@backstage/plugin-auth-backend 0.27.0 → 0.27.1-next.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# @backstage/plugin-auth-backend
|
|
2
2
|
|
|
3
|
+
## 0.27.1-next.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 6738cf0: build(deps): bump `minimatch` from 9.0.5 to 10.2.1
|
|
8
|
+
- 619be54: Update migrations to be reversible
|
|
9
|
+
- Updated dependencies
|
|
10
|
+
- @backstage/plugin-catalog-node@2.1.0-next.0
|
|
11
|
+
- @backstage/backend-plugin-api@1.7.1-next.0
|
|
12
|
+
- @backstage/catalog-model@1.7.6
|
|
13
|
+
- @backstage/config@1.3.6
|
|
14
|
+
- @backstage/errors@1.2.7
|
|
15
|
+
- @backstage/types@1.2.2
|
|
16
|
+
- @backstage/plugin-auth-node@0.6.14-next.0
|
|
17
|
+
|
|
3
18
|
## 0.27.0
|
|
4
19
|
|
|
5
20
|
### Minor Changes
|
|
@@ -39,6 +54,16 @@
|
|
|
39
54
|
|
|
40
55
|
### Patch Changes
|
|
41
56
|
|
|
57
|
+
- 7dc3dfe: Removed the `auth.experimentalDynamicClientRegistration.tokenExpiration` config option. DCR tokens now use the default 1 hour expiration.
|
|
58
|
+
|
|
59
|
+
If you need longer-lived access, use refresh tokens via the `offline_access` scope instead. DCR clients should already have the `offline_access` scope available. Enable refresh tokens by setting:
|
|
60
|
+
|
|
61
|
+
```yaml
|
|
62
|
+
auth:
|
|
63
|
+
experimentalRefreshToken:
|
|
64
|
+
enabled: true
|
|
65
|
+
```
|
|
66
|
+
|
|
42
67
|
- 7455dae: Use node prefix on native imports
|
|
43
68
|
- Updated dependencies
|
|
44
69
|
- @backstage/plugin-catalog-node@2.0.0
|
|
@@ -48,7 +48,7 @@ exports.down = async function down(knex) {
|
|
|
48
48
|
if (!knex.client.config.client.includes('sqlite3')) {
|
|
49
49
|
await knex.schema.alterTable('signing_keys', table => {
|
|
50
50
|
table
|
|
51
|
-
.timestamp('created_at', { useTz:
|
|
51
|
+
.timestamp('created_at', { useTz: true, precision: 0 })
|
|
52
52
|
.notNullable()
|
|
53
53
|
.defaultTo(knex.fn.now())
|
|
54
54
|
.comment('The creation time of the key')
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-auth-backend",
|
|
3
|
-
"version": "0.27.0",
|
|
3
|
+
"version": "0.27.1-next.0",
|
|
4
4
|
"description": "A Backstage backend plugin that handles authentication",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "backend-plugin",
|
|
@@ -47,13 +47,13 @@
|
|
|
47
47
|
"test": "backstage-cli package test"
|
|
48
48
|
},
|
|
49
49
|
"dependencies": {
|
|
50
|
-
"@backstage/backend-plugin-api": "
|
|
51
|
-
"@backstage/catalog-model": "
|
|
52
|
-
"@backstage/config": "
|
|
53
|
-
"@backstage/errors": "
|
|
54
|
-
"@backstage/plugin-auth-node": "
|
|
55
|
-
"@backstage/plugin-catalog-node": "
|
|
56
|
-
"@backstage/types": "
|
|
50
|
+
"@backstage/backend-plugin-api": "1.7.1-next.0",
|
|
51
|
+
"@backstage/catalog-model": "1.7.6",
|
|
52
|
+
"@backstage/config": "1.3.6",
|
|
53
|
+
"@backstage/errors": "1.2.7",
|
|
54
|
+
"@backstage/plugin-auth-node": "0.6.14-next.0",
|
|
55
|
+
"@backstage/plugin-catalog-node": "2.1.0-next.0",
|
|
56
|
+
"@backstage/types": "1.2.2",
|
|
57
57
|
"@google-cloud/firestore": "^7.0.0",
|
|
58
58
|
"connect-session-knex": "^4.0.0",
|
|
59
59
|
"cookie-parser": "^1.4.5",
|
|
@@ -66,18 +66,18 @@
|
|
|
66
66
|
"lodash": "^4.17.21",
|
|
67
67
|
"luxon": "^3.0.0",
|
|
68
68
|
"matcher": "^4.0.0",
|
|
69
|
-
"minimatch": "^
|
|
69
|
+
"minimatch": "^10.2.1",
|
|
70
70
|
"passport": "^0.7.0",
|
|
71
71
|
"uuid": "^11.0.0",
|
|
72
72
|
"zod": "^4.3.5",
|
|
73
73
|
"zod-validation-error": "^5.0.0"
|
|
74
74
|
},
|
|
75
75
|
"devDependencies": {
|
|
76
|
-
"@backstage/backend-defaults": "
|
|
77
|
-
"@backstage/backend-test-utils": "
|
|
78
|
-
"@backstage/cli": "
|
|
79
|
-
"@backstage/plugin-auth-backend-module-google-provider": "
|
|
80
|
-
"@backstage/plugin-auth-backend-module-guest-provider": "
|
|
76
|
+
"@backstage/backend-defaults": "0.15.3-next.0",
|
|
77
|
+
"@backstage/backend-test-utils": "1.11.1-next.0",
|
|
78
|
+
"@backstage/cli": "0.35.5-next.0",
|
|
79
|
+
"@backstage/plugin-auth-backend-module-google-provider": "0.3.13-next.0",
|
|
80
|
+
"@backstage/plugin-auth-backend-module-guest-provider": "0.2.17-next.0",
|
|
81
81
|
"@types/cookie-parser": "^1.4.2",
|
|
82
82
|
"@types/express": "^4.17.6",
|
|
83
83
|
"@types/express-session": "^1.17.2",
|