@backstage/plugin-auth-backend 0.0.0-nightly-20220208022044 → 0.0.0-nightly-20220209022121
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.
|
@@ -28,7 +28,7 @@ exports.up = async function up(knex) {
|
|
|
28
28
|
.notNullable()
|
|
29
29
|
.defaultTo(knex.fn.now())
|
|
30
30
|
.comment('The creation time of the key')
|
|
31
|
-
.alter();
|
|
31
|
+
.alter({ alterType: true });
|
|
32
32
|
});
|
|
33
33
|
}
|
|
34
34
|
};
|
|
@@ -45,7 +45,7 @@ exports.down = async function down(knex) {
|
|
|
45
45
|
.notNullable()
|
|
46
46
|
.defaultTo(knex.fn.now())
|
|
47
47
|
.comment('The creation time of the key')
|
|
48
|
-
.alter();
|
|
48
|
+
.alter({ alterType: true });
|
|
49
49
|
});
|
|
50
50
|
}
|
|
51
51
|
};
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-auth-backend",
|
|
3
3
|
"description": "A Backstage backend plugin that handles authentication",
|
|
4
|
-
"version": "0.0.0-nightly-
|
|
4
|
+
"version": "0.0.0-nightly-20220209022121",
|
|
5
5
|
"main": "dist/index.cjs.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"clean": "backstage-cli clean"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@backstage/backend-common": "^0.0.0-nightly-
|
|
33
|
+
"@backstage/backend-common": "^0.0.0-nightly-20220209022121",
|
|
34
34
|
"@backstage/catalog-client": "^0.5.5",
|
|
35
35
|
"@backstage/catalog-model": "^0.9.10",
|
|
36
36
|
"@backstage/config": "^0.1.13",
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
"helmet": "^4.0.0",
|
|
51
51
|
"jose": "^1.27.1",
|
|
52
52
|
"jwt-decode": "^3.1.0",
|
|
53
|
-
"knex": "^0.
|
|
53
|
+
"knex": "^1.0.2",
|
|
54
54
|
"lodash": "^4.17.21",
|
|
55
55
|
"luxon": "^2.0.2",
|
|
56
56
|
"minimatch": "^3.0.3",
|
|
@@ -73,7 +73,7 @@
|
|
|
73
73
|
"yn": "^4.0.0"
|
|
74
74
|
},
|
|
75
75
|
"devDependencies": {
|
|
76
|
-
"@backstage/cli": "^0.0.0-nightly-
|
|
76
|
+
"@backstage/cli": "^0.0.0-nightly-20220209022121",
|
|
77
77
|
"@backstage/test-utils": "^0.2.4",
|
|
78
78
|
"@types/body-parser": "^1.19.0",
|
|
79
79
|
"@types/cookie-parser": "^1.4.2",
|