@backstage/plugin-auth-backend 0.0.0-nightly-20251216024726 → 0.0.0-nightly-20260109025055

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,18 +1,31 @@
1
1
  # @backstage/plugin-auth-backend
2
2
 
3
- ## 0.0.0-nightly-20251216024726
3
+ ## 0.0.0-nightly-20260109025055
4
+
5
+ ### Minor Changes
6
+
7
+ - 7ffc873: Fix `user_created_at` migration causing `SQLiteError` regarding use of non-constants for defaults
4
8
 
5
9
  ### Patch Changes
6
10
 
7
- - de96a60: chore(deps): bump `express` from 4.21.2 to 4.22.0
8
11
  - Updated dependencies
9
- - @backstage/plugin-auth-node@0.0.0-nightly-20251216024726
10
- - @backstage/backend-plugin-api@0.0.0-nightly-20251216024726
12
+ - @backstage/plugin-auth-node@0.6.10
13
+ - @backstage/backend-plugin-api@1.6.0
11
14
  - @backstage/catalog-model@1.7.6
12
15
  - @backstage/config@1.3.6
13
16
  - @backstage/errors@1.2.7
14
17
  - @backstage/types@1.2.2
15
- - @backstage/plugin-catalog-node@0.0.0-nightly-20251216024726
18
+ - @backstage/plugin-catalog-node@1.20.1
19
+
20
+ ## 0.25.7
21
+
22
+ ### Patch Changes
23
+
24
+ - de96a60: chore(deps): bump `express` from 4.21.2 to 4.22.0
25
+ - Updated dependencies
26
+ - @backstage/plugin-auth-node@0.6.10
27
+ - @backstage/backend-plugin-api@1.6.0
28
+ - @backstage/plugin-catalog-node@1.20.1
16
29
 
17
30
  ## 0.25.7-next.1
18
31
 
@@ -22,7 +22,19 @@
22
22
  exports.up = async function up(knex) {
23
23
  await knex.schema.alterTable('user_info', table => {
24
24
  table.renameColumn('exp', 'updated_at');
25
- table.timestamp('created_at').notNullable().defaultTo(knex.fn.now());
25
+ table.timestamp('created_at').nullable();
26
+ });
27
+
28
+ await knex('user_info').update({
29
+ created_at: knex.fn.now(),
30
+ });
31
+
32
+ await knex.schema.alterTable('user_info', table => {
33
+ table
34
+ .timestamp('created_at')
35
+ .notNullable()
36
+ .defaultTo(knex.fn.now())
37
+ .alter();
26
38
  });
27
39
  };
28
40
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-auth-backend",
3
- "version": "0.0.0-nightly-20251216024726",
3
+ "version": "0.0.0-nightly-20260109025055",
4
4
  "description": "A Backstage backend plugin that handles authentication",
5
5
  "backstage": {
6
6
  "role": "backend-plugin",
@@ -47,12 +47,12 @@
47
47
  "test": "backstage-cli package test"
48
48
  },
49
49
  "dependencies": {
50
- "@backstage/backend-plugin-api": "0.0.0-nightly-20251216024726",
50
+ "@backstage/backend-plugin-api": "1.6.0",
51
51
  "@backstage/catalog-model": "1.7.6",
52
52
  "@backstage/config": "1.3.6",
53
53
  "@backstage/errors": "1.2.7",
54
- "@backstage/plugin-auth-node": "0.0.0-nightly-20251216024726",
55
- "@backstage/plugin-catalog-node": "0.0.0-nightly-20251216024726",
54
+ "@backstage/plugin-auth-node": "0.6.10",
55
+ "@backstage/plugin-catalog-node": "1.20.1",
56
56
  "@backstage/types": "1.2.2",
57
57
  "@google-cloud/firestore": "^7.0.0",
58
58
  "connect-session-knex": "^4.0.0",
@@ -70,11 +70,11 @@
70
70
  "uuid": "^11.0.0"
71
71
  },
72
72
  "devDependencies": {
73
- "@backstage/backend-defaults": "0.0.0-nightly-20251216024726",
74
- "@backstage/backend-test-utils": "0.0.0-nightly-20251216024726",
75
- "@backstage/cli": "0.0.0-nightly-20251216024726",
76
- "@backstage/plugin-auth-backend-module-google-provider": "0.0.0-nightly-20251216024726",
77
- "@backstage/plugin-auth-backend-module-guest-provider": "0.0.0-nightly-20251216024726",
73
+ "@backstage/backend-defaults": "0.0.0-nightly-20260109025055",
74
+ "@backstage/backend-test-utils": "0.0.0-nightly-20260109025055",
75
+ "@backstage/cli": "0.0.0-nightly-20260109025055",
76
+ "@backstage/plugin-auth-backend-module-google-provider": "0.3.10",
77
+ "@backstage/plugin-auth-backend-module-guest-provider": "0.2.15",
78
78
  "@types/cookie-parser": "^1.4.2",
79
79
  "@types/express": "^4.17.6",
80
80
  "@types/express-session": "^1.17.2",