@backstage/plugin-auth-backend-module-oidc-provider 0.3.2-next.2 → 0.3.2

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,15 @@
1
1
  # @backstage/plugin-auth-backend-module-oidc-provider
2
2
 
3
+ ## 0.3.2
4
+
5
+ ### Patch Changes
6
+
7
+ - 5d74716: Remove unused backend-common dependency
8
+ - Updated dependencies
9
+ - @backstage/plugin-auth-backend@0.24.0
10
+ - @backstage/plugin-auth-node@0.5.4
11
+ - @backstage/backend-plugin-api@1.0.2
12
+
3
13
  ## 0.3.2-next.2
4
14
 
5
15
  ### Patch Changes
package/dist/index.d.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  import * as _backstage_plugin_auth_node from '@backstage/plugin-auth-node';
2
2
  import { PassportOAuthAuthenticatorHelper } from '@backstage/plugin-auth-node';
3
3
  import * as openid_client from 'openid-client';
4
- import { TokenSet, UserinfoResponse, Strategy } from 'openid-client';
4
+ import { Strategy, TokenSet, UserinfoResponse } from 'openid-client';
5
5
  import * as _backstage_backend_plugin_api from '@backstage/backend-plugin-api';
6
6
 
7
7
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-auth-backend-module-oidc-provider",
3
- "version": "0.3.2-next.2",
3
+ "version": "0.3.2",
4
4
  "description": "The oidc-provider backend module for the auth plugin.",
5
5
  "backstage": {
6
6
  "role": "backend-plugin-module",
@@ -34,19 +34,18 @@
34
34
  "test": "backstage-cli package test"
35
35
  },
36
36
  "dependencies": {
37
- "@backstage/backend-common": "^0.25.0",
38
- "@backstage/backend-plugin-api": "1.0.2-next.2",
39
- "@backstage/plugin-auth-backend": "0.24.0-next.2",
40
- "@backstage/plugin-auth-node": "0.5.4-next.2",
37
+ "@backstage/backend-plugin-api": "^1.0.2",
38
+ "@backstage/plugin-auth-backend": "^0.24.0",
39
+ "@backstage/plugin-auth-node": "^0.5.4",
41
40
  "express": "^4.18.2",
42
41
  "openid-client": "^5.5.0",
43
42
  "passport": "^0.7.0"
44
43
  },
45
44
  "devDependencies": {
46
- "@backstage/backend-defaults": "0.5.3-next.2",
47
- "@backstage/backend-test-utils": "1.1.0-next.2",
48
- "@backstage/cli": "0.29.0-next.2",
49
- "@backstage/config": "1.2.0",
45
+ "@backstage/backend-defaults": "^0.5.3",
46
+ "@backstage/backend-test-utils": "^1.1.0",
47
+ "@backstage/cli": "^0.29.0",
48
+ "@backstage/config": "^1.3.0",
50
49
  "cookie-parser": "^1.4.6",
51
50
  "express-promise-router": "^4.1.1",
52
51
  "express-session": "^1.17.3",
@@ -54,5 +53,12 @@
54
53
  "msw": "^1.3.1",
55
54
  "supertest": "^7.0.0"
56
55
  },
57
- "configSchema": "config.d.ts"
56
+ "configSchema": "config.d.ts",
57
+ "typesVersions": {
58
+ "*": {
59
+ "index": [
60
+ "dist/index.d.ts"
61
+ ]
62
+ }
63
+ }
58
64
  }