Skip to content

Commit f8cb874

Browse files
authored
fix(sbom-tools): allow BlueOak license (#614)
Confirmed by legal on Slack that this is acceptable.
1 parent 6a55275 commit f8cb874

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

packages/sbom-tools/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,7 @@ The following licenses are allowed:
129129
- `WTFPL`
130130
- `OFL-1.1`
131131
- `Unlicense`
132+
- `BlueOak-1.0.0`
132133

133134
The validation can be tweaked with a configuration file (by default `${cwd}/licenses.json`). The configuration allows ignoring certain orgs and packages, and overriding licenses for specific dependencies.
134135

packages/sbom-tools/src/commands/generate-third-party-notices.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ const ALLOWED_LICENSES = [
2828
'WTFPL',
2929
'OFL-1.1',
3030
'Unlicense',
31+
'BlueOak-1.0.0',
3132
];
3233

3334
function checkOverrides(packagesToCheck: string[], dependencies: Package[]) {

0 commit comments

Comments
 (0)