Skip to content

Commit

Permalink
CM-41489 - Increase default sync scans timeout; add Swift support for…
Browse files Browse the repository at this point in the history
… SCA (#116)
  • Loading branch information
MarshalX authored Nov 13, 2024
1 parent 3048bd6 commit d8829cd
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

## [Unreleased]

## [v1.12.0]

- Add support for Swift Package Manager in SCA
- Increase default sync scans timeout

## [v1.11.2]

- Add support for Theia IDE
Expand Down Expand Up @@ -114,6 +119,8 @@

The first stable release with the support of Secrets, SCA, TreeView, Violation Card, and more.

[v1.12.0]: https://github.com/cycodehq/vscode-extension/releases/tag/v1.12.0

[v1.11.2]: https://github.com/cycodehq/vscode-extension/releases/tag/v1.11.2

[v1.11.1]: https://github.com/cycodehq/vscode-extension/releases/tag/v1.11.1
Expand Down Expand Up @@ -156,4 +163,4 @@ The first stable release with the support of Secrets, SCA, TreeView, Violation C

[v1.0.0]: https://github.com/cycodehq/vscode-extension/releases/tag/v1.0.0

[Unreleased]: https://github.com/cycodehq/vscode-extension/compare/v1.11.2...HEAD
[Unreleased]: https://github.com/cycodehq/vscode-extension/compare/v1.12.0...HEAD
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "cycode",
"displayName": "Cycode",
"version": "1.11.2",
"version": "1.12.0",
"publisher": "cycode",
"description": "Boost security in your dev lifecycle via SAST, SCA, Secrets & IaC scanning.",
"repository": {
Expand Down
5 changes: 4 additions & 1 deletion src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@ const _SCA_CONFIGURATION_SCAN_SUPPORTED_FILES: readonly string[] = [
'setup.py',
'mix.exs',
'mix.lock',
'package.swift',
'package.resolved',
];

// keep in lowercase. based on _SCA_CONFIGURATION_SCAN_SUPPORTED_FILES
Expand All @@ -59,6 +61,7 @@ const _SCA_CONFIGURATION_SCAN_LOCK_FILE_TO_PACKAGE_FILE: Record<string, string>
'poetry.lock': 'pyproject.toml',
'pipfile.lock': 'pipfile',
'mix.lock': 'mix.exs',
'package.resolved': 'package.swift',
};

const _SCA_CONFIGURATION_SCAN_SUPPORTED_LOCK_FILES: readonly string[]
Expand Down Expand Up @@ -125,7 +128,7 @@ export const getScanTypeDisplayName = (scanType: string): string => {
return _SCAN_TYPE_TO_DISPLAY_NAME[scanType];
};

export const REQUIRED_CLI_VERSION = '1.11.0';
export const REQUIRED_CLI_VERSION = '2.0.0';

export const CLI_GITHUB = {
OWNER: 'cycodehq',
Expand Down

0 comments on commit d8829cd

Please sign in to comment.