@backstage/plugin-auth-backend 0.14.1-next.1 → 0.14.2-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.
Files changed (2) hide show
  1. package/CHANGELOG.md +35 -0
  2. package/package.json +10 -10
package/CHANGELOG.md CHANGED
@@ -1,5 +1,40 @@
1
1
  # @backstage/plugin-auth-backend
2
2
 
3
+ ## 0.14.2-next.0
4
+
5
+ ### Patch Changes
6
+
7
+ - 859346bfbb: Updated dependency `google-auth-library` to `^8.0.0`.
8
+ - Updated dependencies
9
+ - @backstage/backend-common@0.14.1-next.0
10
+ - @backstage/catalog-model@1.1.0-next.0
11
+ - @backstage/plugin-auth-node@0.2.3-next.0
12
+ - @backstage/catalog-client@1.0.4-next.0
13
+
14
+ ## 0.14.1
15
+
16
+ ### Patch Changes
17
+
18
+ - 5e055079f0: Increased key field size for signing_keys table to account for larger signature keys
19
+ - f6aae90e4e: Added configurable algorithm field for TokenFactory
20
+ - 8f7b1835df: Updated dependency `msw` to `^0.41.0`.
21
+ - bc6fb57094: Updated dependency `passport` to `^0.6.0`.
22
+ - 467facc6ea: Fix improper binding of 'this' in ALB Auth provider
23
+ - Updated dependencies
24
+ - @backstage/backend-common@0.14.0
25
+ - @backstage/plugin-auth-node@0.2.2
26
+ - @backstage/catalog-client@1.0.3
27
+ - @backstage/catalog-model@1.0.3
28
+
29
+ ## 0.14.1-next.2
30
+
31
+ ### Patch Changes
32
+
33
+ - bc6fb57094: Updated dependency `passport` to `^0.6.0`.
34
+ - Updated dependencies
35
+ - @backstage/backend-common@0.14.0-next.2
36
+ - @backstage/plugin-auth-node@0.2.2-next.2
37
+
3
38
  ## 0.14.1-next.1
4
39
 
5
40
  ### Patch Changes
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.14.1-next.1",
4
+ "version": "0.14.2-next.0",
5
5
  "main": "dist/index.cjs.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "license": "Apache-2.0",
@@ -33,12 +33,12 @@
33
33
  "clean": "backstage-cli package clean"
34
34
  },
35
35
  "dependencies": {
36
- "@backstage/backend-common": "^0.13.6-next.1",
37
- "@backstage/catalog-client": "^1.0.3-next.0",
38
- "@backstage/catalog-model": "^1.0.3-next.0",
36
+ "@backstage/backend-common": "^0.14.1-next.0",
37
+ "@backstage/catalog-client": "^1.0.4-next.0",
38
+ "@backstage/catalog-model": "^1.1.0-next.0",
39
39
  "@backstage/config": "^1.0.1",
40
40
  "@backstage/errors": "^1.0.0",
41
- "@backstage/plugin-auth-node": "^0.2.2-next.1",
41
+ "@backstage/plugin-auth-node": "^0.2.3-next.0",
42
42
  "@backstage/types": "^1.0.0",
43
43
  "@google-cloud/firestore": "^5.0.2",
44
44
  "@types/express": "^4.17.6",
@@ -50,7 +50,7 @@
50
50
  "express-promise-router": "^4.1.0",
51
51
  "express-session": "^1.17.1",
52
52
  "fs-extra": "10.1.0",
53
- "google-auth-library": "^7.6.1",
53
+ "google-auth-library": "^8.0.0",
54
54
  "jose": "^4.6.0",
55
55
  "jwt-decode": "^3.1.0",
56
56
  "knex": "^1.0.2",
@@ -61,7 +61,7 @@
61
61
  "node-cache": "^5.1.2",
62
62
  "node-fetch": "^2.6.7",
63
63
  "openid-client": "^5.1.3",
64
- "passport": "^0.5.2",
64
+ "passport": "^0.6.0",
65
65
  "passport-bitbucket-oauth2": "^0.1.2",
66
66
  "passport-github2": "^0.1.12",
67
67
  "passport-gitlab2": "^5.0.0",
@@ -76,8 +76,8 @@
76
76
  "yn": "^4.0.0"
77
77
  },
78
78
  "devDependencies": {
79
- "@backstage/backend-test-utils": "^0.1.25-next.1",
80
- "@backstage/cli": "^0.17.2-next.1",
79
+ "@backstage/backend-test-utils": "^0.1.26-next.0",
80
+ "@backstage/cli": "^0.17.3-next.0",
81
81
  "@types/body-parser": "^1.19.0",
82
82
  "@types/cookie-parser": "^1.4.2",
83
83
  "@types/express-session": "^1.17.2",
@@ -97,5 +97,5 @@
97
97
  "config.d.ts"
98
98
  ],
99
99
  "configSchema": "config.d.ts",
100
- "gitHead": "e15c24ddb5d14034629ced8a5a5d8f12b8f1a7dd"
100
+ "gitHead": "6d8bf5b9cf494815c0916e18daa226fb8186ba5f"
101
101
  }