Skip to content

Commit d8829cd

Browse files
authored
CM-41489 - Increase default sync scans timeout; add Swift support for SCA (#116)
1 parent 3048bd6 commit d8829cd

File tree

3 files changed

+13
-3
lines changed

3 files changed

+13
-3
lines changed

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
## [Unreleased]
44

5+
## [v1.12.0]
6+
7+
- Add support for Swift Package Manager in SCA
8+
- Increase default sync scans timeout
9+
510
## [v1.11.2]
611

712
- Add support for Theia IDE
@@ -114,6 +119,8 @@
114119

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

122+
[v1.12.0]: https://github.com/cycodehq/vscode-extension/releases/tag/v1.12.0
123+
117124
[v1.11.2]: https://github.com/cycodehq/vscode-extension/releases/tag/v1.11.2
118125

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

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

159-
[Unreleased]: https://github.com/cycodehq/vscode-extension/compare/v1.11.2...HEAD
166+
[Unreleased]: https://github.com/cycodehq/vscode-extension/compare/v1.12.0...HEAD

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "cycode",
33
"displayName": "Cycode",
4-
"version": "1.11.2",
4+
"version": "1.12.0",
55
"publisher": "cycode",
66
"description": "Boost security in your dev lifecycle via SAST, SCA, Secrets & IaC scanning.",
77
"repository": {

src/constants.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,8 @@ const _SCA_CONFIGURATION_SCAN_SUPPORTED_FILES: readonly string[] = [
4242
'setup.py',
4343
'mix.exs',
4444
'mix.lock',
45+
'package.swift',
46+
'package.resolved',
4547
];
4648

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

6467
const _SCA_CONFIGURATION_SCAN_SUPPORTED_LOCK_FILES: readonly string[]
@@ -125,7 +128,7 @@ export const getScanTypeDisplayName = (scanType: string): string => {
125128
return _SCAN_TYPE_TO_DISPLAY_NAME[scanType];
126129
};
127130

128-
export const REQUIRED_CLI_VERSION = '1.11.0';
131+
export const REQUIRED_CLI_VERSION = '2.0.0';
129132

130133
export const CLI_GITHUB = {
131134
OWNER: 'cycodehq',

0 commit comments

Comments
 (0)