Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[IDE-189] fix: shortened plugin's name to just Snyk Security #440

Merged
merged 1 commit into from
Mar 13, 2024
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
10 changes: 8 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
# Snyk Security - Code and Open Source Dependencies Changelog
# Snyk Security Changelog

## [2.3.7]

### Fixes
- fix: shortened plugin name to just Snyk Security

## [2.3.6]

## [2.3.6
### Changes
- Removed Amplitude telemetry and corresponding setting from VSCode

Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion src/snyk/common/constants/general.ts
Original file line number Diff line number Diff line change
@@ -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';
Expand Down
Loading