Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,10 @@

## [Unreleased]

## [v1.17.1]

- Remove Sentry integration
- Increase required CLI version to 3.9.2
- Increase required CLI version to 3.9.3

## [v1.17.0]

Expand Down Expand Up @@ -152,6 +154,8 @@

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

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

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

[v1.16.0]: https://github.com/cycodehq/vscode-extension/releases/tag/v1.16.0
Expand Down Expand Up @@ -208,4 +212,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.15.0...HEAD
[Unreleased]: https://github.com/cycodehq/vscode-extension/compare/v1.17.1...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.17.0",
"version": "1.17.1",
"publisher": "cycode",
"description": "Boost security in your dev lifecycle via SAST, SCA, Secrets & IaC scanning.",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ export const getScanTypeDisplayName = (scanType: string): string => {
return _SCAN_TYPE_TO_DISPLAY_NAME[scanType];
};

export const REQUIRED_CLI_VERSION = '3.9.2';
export const REQUIRED_CLI_VERSION = '3.9.3';

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