@backstage/plugin-auth-backend 0.0.0-nightly-20220307022304 → 0.0.0-nightly-20220310022859

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,15 +1,32 @@
1
1
  # @backstage/plugin-auth-backend
2
2
 
3
- ## 0.0.0-nightly-20220307022304
3
+ ## 0.0.0-nightly-20220310022859
4
4
 
5
5
  ### Patch Changes
6
6
 
7
+ - ab7cd7d70e: Do some groundwork for supporting the `better-sqlite3` driver, to maybe eventually replace `@vscode/sqlite3` (#9912)
8
+ - e0a69ba49f: build(deps): bump `fs-extra` from 9.1.0 to 10.0.1
7
9
  - bf95bb806c: Remove usages of now-removed `CatalogApi.getEntityByName`
10
+ - 3c2bc73901: Use `setupRequestMockHandlers` from `@backstage/backend-test-utils`
8
11
  - Updated dependencies
9
- - @backstage/catalog-model@0.0.0-nightly-20220307022304
10
- - @backstage/backend-common@0.0.0-nightly-20220307022304
11
- - @backstage/catalog-client@0.0.0-nightly-20220307022304
12
- - @backstage/plugin-auth-node@0.0.0-nightly-20220307022304
12
+ - @backstage/backend-common@0.0.0-nightly-20220310022859
13
+ - @backstage/catalog-model@0.0.0-nightly-20220310022859
14
+ - @backstage/catalog-client@0.0.0-nightly-20220310022859
15
+ - @backstage/plugin-auth-node@0.0.0-nightly-20220310022859
16
+
17
+ ## 0.12.1-next.0
18
+
19
+ ### Patch Changes
20
+
21
+ - ab7cd7d70e: Do some groundwork for supporting the `better-sqlite3` driver, to maybe eventually replace `@vscode/sqlite3` (#9912)
22
+ - e0a69ba49f: build(deps): bump `fs-extra` from 9.1.0 to 10.0.1
23
+ - bf95bb806c: Remove usages of now-removed `CatalogApi.getEntityByName`
24
+ - 3c2bc73901: Use `setupRequestMockHandlers` from `@backstage/backend-test-utils`
25
+ - Updated dependencies
26
+ - @backstage/backend-common@0.13.0-next.0
27
+ - @backstage/catalog-model@0.13.0-next.0
28
+ - @backstage/catalog-client@0.9.0-next.0
29
+ - @backstage/plugin-auth-node@0.1.5-next.0
13
30
 
14
31
  ## 0.12.0
15
32
 
@@ -21,7 +21,7 @@
21
21
  */
22
22
  exports.up = async function up(knex) {
23
23
  // Sqlite does not support alter column.
24
- if (knex.client.config.client !== 'sqlite3') {
24
+ if (knex.client.config.client.includes('sqlite3')) {
25
25
  await knex.schema.alterTable('signing_keys', table => {
26
26
  table
27
27
  .timestamp('created_at', { useTz: true, precision: 0 })
@@ -38,7 +38,7 @@ exports.up = async function up(knex) {
38
38
  */
39
39
  exports.down = async function down(knex) {
40
40
  // Sqlite does not support alter column.
41
- if (knex.client.config.client !== 'sqlite3') {
41
+ if (knex.client.config.client.includes('sqlite3')) {
42
42
  await knex.schema.alterTable('signing_keys', table => {
43
43
  table
44
44
  .timestamp('created_at', { useTz: false, precision: 0 })
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-20220307022304",
4
+ "version": "0.0.0-nightly-20220310022859",
5
5
  "main": "dist/index.cjs.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "license": "Apache-2.0",
@@ -33,10 +33,10 @@
33
33
  "clean": "backstage-cli package clean"
34
34
  },
35
35
  "dependencies": {
36
- "@backstage/plugin-auth-node": "^0.0.0-nightly-20220307022304",
37
- "@backstage/backend-common": "^0.0.0-nightly-20220307022304",
38
- "@backstage/catalog-client": "^0.0.0-nightly-20220307022304",
39
- "@backstage/catalog-model": "^0.0.0-nightly-20220307022304",
36
+ "@backstage/plugin-auth-node": "^0.0.0-nightly-20220310022859",
37
+ "@backstage/backend-common": "^0.0.0-nightly-20220310022859",
38
+ "@backstage/catalog-client": "^0.0.0-nightly-20220310022859",
39
+ "@backstage/catalog-model": "^0.0.0-nightly-20220310022859",
40
40
  "@backstage/config": "^0.1.15",
41
41
  "@backstage/errors": "^0.2.2",
42
42
  "@backstage/types": "^0.1.3",
@@ -49,7 +49,7 @@
49
49
  "express": "^4.17.1",
50
50
  "express-promise-router": "^4.1.0",
51
51
  "express-session": "^1.17.1",
52
- "fs-extra": "9.1.0",
52
+ "fs-extra": "10.0.1",
53
53
  "google-auth-library": "^7.6.1",
54
54
  "jose": "^1.27.1",
55
55
  "jwt-decode": "^3.1.0",
@@ -76,8 +76,8 @@
76
76
  "yn": "^4.0.0"
77
77
  },
78
78
  "devDependencies": {
79
- "@backstage/cli": "^0.0.0-nightly-20220307022304",
80
- "@backstage/test-utils": "^0.3.0",
79
+ "@backstage/backend-test-utils": "^0.0.0-nightly-20220310022859",
80
+ "@backstage/cli": "^0.0.0-nightly-20220310022859",
81
81
  "@types/body-parser": "^1.19.0",
82
82
  "@types/cookie-parser": "^1.4.2",
83
83
  "@types/express-session": "^1.17.2",