@backstage/plugin-auth-backend-module-cloudflare-access-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.
Files changed (3) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/config.d.ts +1 -1
  3. package/package.json +19 -12
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @backstage/plugin-auth-backend-module-cloudflare-access-provider
2
2
 
3
+ ## 0.3.2
4
+
5
+ ### Patch Changes
6
+
7
+ - d52d7f9: Support ISO and ms string forms of durations in config too
8
+ - 4e58bc7: Upgrade to uuid v11 internally
9
+ - Updated dependencies
10
+ - @backstage/config@1.3.0
11
+ - @backstage/plugin-auth-node@0.5.4
12
+ - @backstage/backend-plugin-api@1.0.2
13
+ - @backstage/errors@1.2.5
14
+
3
15
  ## 0.3.2-next.2
4
16
 
5
17
  ### Patch Changes
package/config.d.ts CHANGED
@@ -42,7 +42,7 @@ export interface Config {
42
42
  /**
43
43
  * The backstage token expiration.
44
44
  */
45
- backstageTokenExpiration?: HumanDuration;
45
+ backstageTokenExpiration?: HumanDuration | string;
46
46
  };
47
47
  };
48
48
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-auth-backend-module-cloudflare-access-provider",
3
- "version": "0.3.2-next.2",
3
+ "version": "0.3.2",
4
4
  "description": "The cloudflare-access-provider backend module for the auth plugin.",
5
5
  "backstage": {
6
6
  "role": "backend-plugin-module",
@@ -34,23 +34,30 @@
34
34
  "test": "backstage-cli package test"
35
35
  },
36
36
  "dependencies": {
37
- "@backstage/backend-plugin-api": "1.0.2-next.2",
38
- "@backstage/config": "1.2.0",
39
- "@backstage/errors": "1.2.4",
40
- "@backstage/plugin-auth-node": "0.5.4-next.2",
37
+ "@backstage/backend-plugin-api": "^1.0.2",
38
+ "@backstage/config": "^1.3.0",
39
+ "@backstage/errors": "^1.2.5",
40
+ "@backstage/plugin-auth-node": "^0.5.4",
41
41
  "express": "^4.18.2",
42
42
  "jose": "^5.0.0",
43
43
  "node-fetch": "^2.7.0"
44
44
  },
45
45
  "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/plugin-auth-backend": "0.24.0-next.2",
50
- "@backstage/types": "1.1.1",
46
+ "@backstage/backend-defaults": "^0.5.3",
47
+ "@backstage/backend-test-utils": "^1.1.0",
48
+ "@backstage/cli": "^0.29.0",
49
+ "@backstage/plugin-auth-backend": "^0.24.0",
50
+ "@backstage/types": "^1.2.0",
51
51
  "msw": "^2.0.0",
52
52
  "node-mocks-http": "^1.0.0",
53
- "uuid": "^9.0.0"
53
+ "uuid": "^11.0.0"
54
54
  },
55
- "configSchema": "config.d.ts"
55
+ "configSchema": "config.d.ts",
56
+ "typesVersions": {
57
+ "*": {
58
+ "index": [
59
+ "dist/index.d.ts"
60
+ ]
61
+ }
62
+ }
56
63
  }