Skip to content

Commit ac5eab1

Browse files
authored
Merge pull request #565 from ForgeRock/fix-release
fix: webauthn-parsed-credentials-type
2 parents f9d571b + db5c441 commit ac5eab1

File tree

5 files changed

+302
-3012
lines changed

5 files changed

+302
-3012
lines changed

.changeset/jolly-signs-think.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@forgerock/javascript-sdk': patch
3+
---
4+
5+
remove shared array buffer type from webauthn ParsedCredentials.

.whitesource

Lines changed: 30 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,31 @@
1+
12
{
23
"scanSettings": {
34
"configMode": "AUTO",
5+
"enableCST": true,
6+
"enableScan": true,
7+
"enableVulnerabilityScanning": true,
48
"configExternalURL": "",
59
"projectToken": "",
6-
"baseBranches": ["develop"],
10+
"baseBranches": [
11+
"develop", "master"
12+
],
713
"enableLicenseViolations": true
814
},
15+
"scanSettingsSAST": {
16+
"enableScan": true,
17+
"scanPullRequests": true,
18+
"incrementalScan": false,
19+
"baseBranches": ["develop", "master"]
20+
},
21+
"checkRunSettingsSAST": {
22+
"checkRunConclusionLevel": "failure",
23+
"severityThreshold": "high"
24+
},
25+
"issueSettingsSAST": {
26+
"issueType": "repo",
27+
"minSeverityLevel": "high"
28+
},
929
"checkRunSettings": {
1030
"vulnerableCheckRunConclusionLevel": "failure",
1131
"displayMode": "diff",
@@ -19,5 +39,14 @@
1939
"workflowRules": {
2040
"enabled": true
2141
}
42+
},
43+
"sca": {
44+
"enableLicenseScanning": true,
45+
"enableVulnerabilityScanning": true,
46+
"severityLevels": [
47+
"high",
48+
"medium",
49+
"low"
50+
]
2251
}
2352
}

package.json

Lines changed: 3 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,8 @@
3737
},
3838
"homepage": "https://github.com/ForgeRock/forgerock-javascript-sdk#readme",
3939
"devDependencies": {
40+
"@changesets/changelog-github": "^0.5.0",
41+
"@changesets/cli": "^2.27.9",
4042
"@commitlint/cli": "^19.1.0",
4143
"@commitlint/config-conventional": "^19.1.0",
4244
"@commitlint/prompt": "^19.1.0",
@@ -125,28 +127,5 @@
125127
"nx": {
126128
"includedScripts": []
127129
},
128-
"packageManager": "[email protected]+sha256.09a8fe31a34fda706354680619f4002f4ccef6dadff93240d24ef6c831f0fd28",
129-
"dependencies": {
130-
"@changesets/changelog-github": "^0.5.0",
131-
"@changesets/cli": "^2.27.9",
132-
"browserstack-node-sdk": "1.34.17",
133-
"nx-cloud": "19.1.0"
134-
},
135-
"pnpm": {
136-
"overrides": {
137-
"jsonpath-plus@<=7.2.0": ">=10.2.0",
138-
"nanoid@<=3.3.7": ">=3.3.8",
139-
"cross-spawn@<=7.0.3": ">=7.0.5",
140-
"ssri@>=5.2.2 <6.0.2": ">=6.0.2",
141-
"express@<4.19.2": ">=4.19.2",
142-
"tough-cookie@<4.1.3": ">=4.1.3",
143-
"micromatch@<4.0.8": ">=4.0.8",
144-
"body-parser@<1.20.3": ">=1.20.3",
145-
"send@<0.19.0": ">=0.19.0",
146-
"serve-static@<1.16.0": ">=1.16.0",
147-
"express@<4.20.0": ">=4.20.0",
148-
"path-to-regexp@<0.1.10": ">=0.1.10",
149-
"rollup@<2.79.2": ">=2.79.2"
150-
}
151-
}
130+
"packageManager": "[email protected]+sha256.09a8fe31a34fda706354680619f4002f4ccef6dadff93240d24ef6c831f0fd28"
152131
}

packages/javascript-sdk/src/fr-webauthn/interfaces.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ interface WebAuthnCallbacks {
9595
type WebAuthnTextOutputRegistration = string;
9696

9797
interface ParsedCredential {
98-
id: ArrayBuffer | SharedArrayBuffer;
98+
id: ArrayBuffer;
9999
type: 'public-key';
100100
}
101101

0 commit comments

Comments
 (0)