@backstage/plugin-auth-backend-module-oauth2-proxy-provider 0.1.7-next.2 → 0.1.8

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,5 +1,26 @@
1
1
  # @backstage/plugin-auth-backend-module-oauth2-proxy-provider
2
2
 
3
+ ## 0.1.8
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+ - @backstage/plugin-auth-node@0.4.10
9
+ - @backstage/backend-plugin-api@0.6.15
10
+ - @backstage/errors@1.2.4
11
+
12
+ ## 0.1.7
13
+
14
+ ### Patch Changes
15
+
16
+ - 2af5354: Bump dependency `jose` to v5
17
+ - e77d7a9: Internal refactor to avoid deprecated method.
18
+ - b1b012d: Fix issue with `providerInfo` not being set properly for some proxy providers, by making `providerInfo` an explicit optional return from `authenticate`
19
+ - Updated dependencies
20
+ - @backstage/plugin-auth-node@0.4.9
21
+ - @backstage/errors@1.2.4
22
+ - @backstage/backend-plugin-api@0.6.14
23
+
3
24
  ## 0.1.7-next.2
4
25
 
5
26
  ### Patch Changes
package/dist/index.cjs.js CHANGED
@@ -90,6 +90,6 @@ const authModuleOauth2ProxyProvider = backendPluginApi.createBackendModule({
90
90
  });
91
91
 
92
92
  exports.OAUTH2_PROXY_JWT_HEADER = OAUTH2_PROXY_JWT_HEADER;
93
- exports["default"] = authModuleOauth2ProxyProvider;
93
+ exports.default = authModuleOauth2ProxyProvider;
94
94
  exports.oauth2ProxyAuthenticator = oauth2ProxyAuthenticator;
95
95
  //# sourceMappingURL=index.cjs.js.map
package/dist/index.d.ts CHANGED
@@ -58,4 +58,4 @@ declare const oauth2ProxyAuthenticator: _backstage_plugin_auth_node.ProxyAuthent
58
58
  accessToken: string;
59
59
  }>;
60
60
 
61
- export { OAUTH2_PROXY_JWT_HEADER, OAuth2ProxyResult, authModuleOauth2ProxyProvider as default, oauth2ProxyAuthenticator };
61
+ export { OAUTH2_PROXY_JWT_HEADER, type OAuth2ProxyResult, authModuleOauth2ProxyProvider as default, oauth2ProxyAuthenticator };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@backstage/plugin-auth-backend-module-oauth2-proxy-provider",
3
3
  "description": "The oauth2-proxy-provider backend module for the auth plugin.",
4
- "version": "0.1.7-next.2",
4
+ "version": "0.1.8",
5
5
  "main": "dist/index.cjs.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "license": "Apache-2.0",
@@ -28,14 +28,14 @@
28
28
  "postpack": "backstage-cli package postpack"
29
29
  },
30
30
  "dependencies": {
31
- "@backstage/backend-plugin-api": "^0.6.14-next.2",
32
- "@backstage/errors": "^1.2.4-next.0",
33
- "@backstage/plugin-auth-node": "^0.4.9-next.2",
31
+ "@backstage/backend-plugin-api": "^0.6.15",
32
+ "@backstage/errors": "^1.2.4",
33
+ "@backstage/plugin-auth-node": "^0.4.10",
34
34
  "jose": "^5.0.0"
35
35
  },
36
36
  "devDependencies": {
37
- "@backstage/backend-test-utils": "^0.3.4-next.2",
38
- "@backstage/cli": "^0.25.3-next.2"
37
+ "@backstage/backend-test-utils": "^0.3.5",
38
+ "@backstage/cli": "^0.26.1"
39
39
  },
40
40
  "files": [
41
41
  "dist"