Skip to content

Commit

Permalink
Update atom to get utf-8 and Ruby code length fix
Browse files Browse the repository at this point in the history
Signed-off-by: Prabhu Subramanian <[email protected]>
  • Loading branch information
prabhu committed Jan 15, 2025
1 parent 09ab307 commit e586956
Show file tree
Hide file tree
Showing 6 changed files with 34 additions and 28 deletions.
2 changes: 1 addition & 1 deletion deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
"gen-types": "npx -p typescript tsc"
},
"imports": {
"@appthreat/atom": "npm:@appthreat/[email protected].3",
"@appthreat/atom": "npm:@appthreat/[email protected].4",
"@appthreat/cdx-proto": "npm:@appthreat/[email protected]",
"@babel/parser": "npm:@babel/parser@^7.26.3",
"@babel/traverse": "npm:@babel/traverse@^7.26.4",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@
"@iarna/toml": "2.2.5"
},
"optionalDependencies": {
"@appthreat/atom": "2.1.3",
"@appthreat/atom": "2.1.4",
"@appthreat/cdx-proto": "1.0.1",
"@cyclonedx/cdxgen-plugins-bin": "1.6.9",
"@cyclonedx/cdxgen-plugins-bin-arm": "1.6.9",
Expand Down
46 changes: 23 additions & 23 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion types/lib/cli/index.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 7 additions & 1 deletion types/lib/helpers/utils.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -680,7 +680,13 @@ export function parseCargoDependencyData(cargoLockData: any): {
dependsOn: any[];
}[];
export function parseCargoAuditableData(cargoData: any): Promise<any[]>;
export function parsePubLockData(pubLockData: any): Promise<any[]>;
export function parsePubLockData(pubLockData: any): Promise<any[] | {
rootList: {
name: string;
version: any;
}[];
pkgList: any[];
}>;
export function parsePubYamlData(pubYamlData: any): any[];
export function parseHelmYamlData(helmData: any): any[];
export function recurseImageNameLookup(keyValueObj: any, pkgList: any, imgList: any): any;
Expand Down
Loading

0 comments on commit e586956

Please sign in to comment.