From b4b67f28f3fdf21ebc4ab3d14911e0157ec50a39 Mon Sep 17 00:00:00 2001 From: Arvyd Date: Tue, 12 Mar 2024 16:45:24 +0100 Subject: [PATCH] fix: shortened plugin name to just Snyk Security --- CHANGELOG.md | 9 +++++++-- package.json | 4 ++-- src/snyk/common/constants/general.ts | 2 +- 3 files changed, 10 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4e1013e4a..b667c71c4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,11 @@ -# Snyk Security - Code and Open Source Dependencies Changelog +# Snyk Security Changelog -## [2.3.6 +## [2.3.7] + +### Fixes +- fix: shortened plugin name to just Snyk Security + +## [2.3.6] ### Changes - Removed Amplitude telemetry and corresponding setting from VSCode diff --git a/package.json b/package.json index 363fd082d..fbe46e848 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "snyk-vulnerability-scanner", "//": "Changing display name requires change in general.ts", - "displayName": "Snyk Security - Code, Open Source Dependencies, IaC Configurations", + "displayName": "Snyk Security", "version": "0.0.0", "description": "Easily find and fix vulnerabilities in your code, open source dependencies, infrastructure as code configurations with fast and accurate scans.", "icon": "media/images/readme/snyk_extension_icon.png", @@ -52,7 +52,7 @@ "contributes": { "configuration": [ { - "title": "Snyk Security - Code and Open Source Dependencies", + "title": "Snyk Security", "properties": { "snyk.yesCrashReport": { "//": "Name starts with y to put it at the end, as configs are sorted alphbetically", diff --git a/src/snyk/common/constants/general.ts b/src/snyk/common/constants/general.ts index 17ac8fe7a..c8b596a64 100644 --- a/src/snyk/common/constants/general.ts +++ b/src/snyk/common/constants/general.ts @@ -1,5 +1,5 @@ // Changing this requires changing display name in package.json. -export const SNYK_NAME = 'Snyk Security - Code, Open Source Dependencies, IaC Configurations'; +export const SNYK_NAME = 'Snyk Security'; export const SNYK_TOKEN_KEY = 'snyk.token'; export const SNYK_UNIQUE_EXTENSION_NAME = 'Snyk Vulnerability Scanner'; export const SNYK_PUBLISHER = 'snyk-security';