@backstage/plugin-auth-backend 0.29.2 → 0.30.0-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 +15 -0
  2. package/package.json +13 -13
package/CHANGELOG.md CHANGED
@@ -1,5 +1,20 @@
1
1
  # @backstage/plugin-auth-backend
2
2
 
3
+ ## 0.30.0-next.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 274acc5: **BREAKING**: The OAuth redirect URI and client ID metadata document allowlists now match patterns against each URL component separately instead of against the full URL string. Wildcards no longer match across the host and path boundary, patterns must include an explicit protocol and are otherwise rejected as invalid configuration instead of being silently ignored, and redirect URIs that contain embedded credentials are always rejected.
8
+
9
+ A wildcard port also no longer implicitly matches every path: a pattern such as `http://localhost:*` now only matches the root path. Use `http://localhost:*/*` to allow any port and any path. The built-in loopback defaults have been updated accordingly, so this only affects explicitly configured patterns.
10
+
11
+ ### Patch Changes
12
+
13
+ - Updated dependencies
14
+ - @backstage/plugin-auth-node@0.7.4-next.0
15
+ - @backstage/backend-plugin-api@1.10.0-next.0
16
+ - @backstage/plugin-catalog-node@2.2.4-next.0
17
+
3
18
  ## 0.29.2
4
19
 
5
20
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-auth-backend",
3
- "version": "0.29.2",
3
+ "version": "0.30.0-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": "^1.9.3",
51
- "@backstage/catalog-model": "^1.9.0",
52
- "@backstage/config": "^1.3.8",
53
- "@backstage/errors": "^1.3.1",
54
- "@backstage/plugin-auth-node": "^0.7.3",
55
- "@backstage/plugin-catalog-node": "^2.2.3",
56
- "@backstage/types": "^1.2.2",
50
+ "@backstage/backend-plugin-api": "1.10.0-next.0",
51
+ "@backstage/catalog-model": "1.9.0",
52
+ "@backstage/config": "1.3.8",
53
+ "@backstage/errors": "1.3.1",
54
+ "@backstage/plugin-auth-node": "0.7.4-next.0",
55
+ "@backstage/plugin-catalog-node": "2.2.4-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",
@@ -72,11 +72,11 @@
72
72
  "zod-validation-error": "^5.0.0"
73
73
  },
74
74
  "devDependencies": {
75
- "@backstage/backend-defaults": "^0.17.5",
76
- "@backstage/backend-test-utils": "^1.11.5",
77
- "@backstage/cli": "^0.36.4",
78
- "@backstage/plugin-auth-backend-module-google-provider": "^0.3.17",
79
- "@backstage/plugin-auth-backend-module-guest-provider": "^0.2.21",
75
+ "@backstage/backend-defaults": "0.17.6-next.0",
76
+ "@backstage/backend-test-utils": "1.11.6-next.0",
77
+ "@backstage/cli": "0.36.4",
78
+ "@backstage/plugin-auth-backend-module-google-provider": "0.3.18-next.0",
79
+ "@backstage/plugin-auth-backend-module-guest-provider": "0.2.22-next.0",
80
80
  "@types/cookie-parser": "^1.4.2",
81
81
  "@types/express": "^4.17.6",
82
82
  "@types/express-session": "^1.17.2",