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

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,16 @@
1
1
  # @backstage/plugin-auth-backend-module-oauth2-proxy-provider
2
2
 
3
+ ## 0.1.12
4
+
5
+ ### Patch Changes
6
+
7
+ - 78a0b08: Internal refactor to handle `BackendFeature` contract change.
8
+ - d44a20a: Added additional plugin metadata to `package.json`.
9
+ - Updated dependencies
10
+ - @backstage/backend-plugin-api@0.6.19
11
+ - @backstage/plugin-auth-node@0.4.14
12
+ - @backstage/errors@1.2.4
13
+
3
14
  ## 0.1.12-next.2
4
15
 
5
16
  ### Patch Changes
package/dist/index.d.ts CHANGED
@@ -4,7 +4,7 @@ import * as _backstage_plugin_auth_node from '@backstage/plugin-auth-node';
4
4
  import { IncomingHttpHeaders } from 'http';
5
5
 
6
6
  /** @public */
7
- declare const authModuleOauth2ProxyProvider: () => _backstage_backend_plugin_api.BackendFeature;
7
+ declare const authModuleOauth2ProxyProvider: _backstage_backend_plugin_api.BackendFeatureCompat;
8
8
 
9
9
  /**
10
10
  * JWT header extraction result, containing the raw value and the parsed JWT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-auth-backend-module-oauth2-proxy-provider",
3
- "version": "0.1.12-next.2",
3
+ "version": "0.1.12",
4
4
  "description": "The oauth2-proxy-provider backend module for the auth plugin.",
5
5
  "backstage": {
6
6
  "role": "backend-plugin-module",
@@ -33,13 +33,13 @@
33
33
  "test": "backstage-cli package test"
34
34
  },
35
35
  "dependencies": {
36
- "@backstage/backend-plugin-api": "^0.6.19-next.3",
36
+ "@backstage/backend-plugin-api": "^0.6.19",
37
37
  "@backstage/errors": "^1.2.4",
38
- "@backstage/plugin-auth-node": "^0.4.14-next.3",
38
+ "@backstage/plugin-auth-node": "^0.4.14",
39
39
  "jose": "^5.0.0"
40
40
  },
41
41
  "devDependencies": {
42
- "@backstage/backend-test-utils": "^0.4.0-next.3",
43
- "@backstage/cli": "^0.26.7-next.3"
42
+ "@backstage/backend-test-utils": "^0.4.0",
43
+ "@backstage/cli": "^0.26.7"
44
44
  }
45
45
  }