@boxyhq/saml-jackson 1.3.3 → 1.3.5

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.
@@ -382,7 +382,7 @@ class OAuthController {
382
382
  oidcCodeVerifier = openid_client_1.generators.codeVerifier();
383
383
  const code_challenge = openid_client_1.generators.codeChallenge(oidcCodeVerifier);
384
384
  ssoUrl = oidcClient.authorizationUrl({
385
- scope: [...requestedScopes, 'openid', 'email', 'profile', 'groups']
385
+ scope: [...requestedScopes, 'openid', 'email', 'profile']
386
386
  .filter((value, index, self) => self.indexOf(value) === index) // filter out duplicates
387
387
  .join(' '),
388
388
  code_challenge,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@boxyhq/saml-jackson",
3
- "version": "1.3.3",
3
+ "version": "1.3.5",
4
4
  "description": "SAML Jackson library",
5
5
  "keywords": [
6
6
  "SAML 2.0"
@@ -42,14 +42,14 @@
42
42
  "@opentelemetry/api": "1.0.4",
43
43
  "@opentelemetry/api-metrics": "0.27.0",
44
44
  "axios": "1.1.3",
45
- "jose": "4.10.3",
46
- "marked": "4.1.1",
45
+ "jose": "4.10.4",
46
+ "marked": "4.2.2",
47
47
  "mongodb": "4.11.0",
48
48
  "mysql2": "2.3.3",
49
- "openid-client": "5.1.10",
49
+ "openid-client": "5.2.1",
50
50
  "node-forge": "1.3.1",
51
51
  "pg": "8.8.0",
52
- "redis": "4.3.1",
52
+ "redis": "4.4.0",
53
53
  "reflect-metadata": "0.1.13",
54
54
  "ripemd160": "2.0.2",
55
55
  "typeorm": "0.3.10",
@@ -58,13 +58,13 @@
58
58
  },
59
59
  "devDependencies": {
60
60
  "@faker-js/faker": "7.6.0",
61
- "@types/node": "18.11.5",
61
+ "@types/node": "18.11.9",
62
62
  "@types/sinon": "10.0.13",
63
63
  "@types/tap": "15.0.7",
64
- "@typescript-eslint/eslint-plugin": "5.40.0",
65
- "@typescript-eslint/parser": "5.41.0",
64
+ "@typescript-eslint/eslint-plugin": "5.42.0",
65
+ "@typescript-eslint/parser": "5.42.0",
66
66
  "cross-env": "7.0.3",
67
- "eslint": "8.26.0",
67
+ "eslint": "8.27.0",
68
68
  "eslint-config-prettier": "8.5.0",
69
69
  "prettier": "2.7.1",
70
70
  "sinon": "14.0.1",
@@ -74,6 +74,6 @@
74
74
  "typescript": "4.8.4"
75
75
  },
76
76
  "engines": {
77
- "node": ">=14.18.1 <=16.x"
77
+ "node": ">=14.18.1 <=18.x"
78
78
  }
79
79
  }