From 56344f8461bbed46b700fc209adee854c806085f Mon Sep 17 00:00:00 2001 From: Hadar Shpivak <108788499+hadarshjfrog@users.noreply.github.com> Date: Tue, 27 Aug 2024 11:19:14 +0300 Subject: [PATCH 1/3] Promoted version to 2.0.0 (#33) --- JFrogVSExtension/source.extension.vsixmanifest | 2 +- RELEASE.md | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/JFrogVSExtension/source.extension.vsixmanifest b/JFrogVSExtension/source.extension.vsixmanifest index 8fc4864..6491955 100644 --- a/JFrogVSExtension/source.extension.vsixmanifest +++ b/JFrogVSExtension/source.extension.vsixmanifest @@ -1,7 +1,7 @@  - + JFrog V2 Visual Studio extension to integrate with JFrog Xray for scanning solution components. Resources\Icon.png diff --git a/RELEASE.md b/RELEASE.md index d3e70f5..d5770f4 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -1,4 +1,9 @@ # Release Notes +## 2.0.0 (October 19, 2022) +- Add support for Xray's Watches. +- Add support for npm projects. +- Add support for connection to JFrog Platform with AccessToken. +- Add Fixed versions field display. ## 1.0.8 (July 18, 2021) - Fix marketplace icon. From f8d17159b8b0eb2f787dce7b5c36931ea0b3b7d9 Mon Sep 17 00:00:00 2001 From: Hadar Shpivak <108788499+hadarshjfrog@users.noreply.github.com> Date: Tue, 27 Aug 2024 11:27:20 +0300 Subject: [PATCH 2/3] Extend wait timeout (#32) Extend Timeout for scans --- JFrogVSExtension/Utils/Util.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/JFrogVSExtension/Utils/Util.cs b/JFrogVSExtension/Utils/Util.cs index cd7bdf8..d5cd568 100644 --- a/JFrogVSExtension/Utils/Util.cs +++ b/JFrogVSExtension/Utils/Util.cs @@ -171,8 +171,8 @@ public static async Task GetProcessOutputAsync(string pathToExe, string pProcess.Start(); pProcess.BeginOutputReadLine(); pProcess.BeginErrorReadLine(); - // Waits for maximal 100 seconds. - pProcess.WaitForExit(100000); + // Waits for maximal 1 hour + pProcess.WaitForExit(60*60*1000); // Wait for the entire output to be written if (outputWaitHandle.WaitOne(1) && From 1b23aea6c0a3e94709ffdb1f03968fe56ed54813 Mon Sep 17 00:00:00 2001 From: Hadar Shpivak <108788499+hadarshjfrog@users.noreply.github.com> Date: Tue, 27 Aug 2024 11:39:25 +0300 Subject: [PATCH 3/3] Release 2.0.1 (#34) * Promoted version to 2.0.1 --- JFrogVSExtension/source.extension.vsixmanifest | 2 +- RELEASE.md | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/JFrogVSExtension/source.extension.vsixmanifest b/JFrogVSExtension/source.extension.vsixmanifest index 6491955..b4c5038 100644 --- a/JFrogVSExtension/source.extension.vsixmanifest +++ b/JFrogVSExtension/source.extension.vsixmanifest @@ -1,7 +1,7 @@  - + JFrog V2 Visual Studio extension to integrate with JFrog Xray for scanning solution components. Resources\Icon.png diff --git a/RELEASE.md b/RELEASE.md index d5770f4..933492e 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -1,4 +1,7 @@ # Release Notes +## 2.0.1 (Aug 27, 2024) +- Change Scan Timeout + ## 2.0.0 (October 19, 2022) - Add support for Xray's Watches. - Add support for npm projects.