Skip to content

Commit

Permalink
feat: delta scan (#327)
Browse files Browse the repository at this point in the history
Co-authored-by: DariusZdroba <[email protected]>
  • Loading branch information
ShawkyZ and DariusZdroba authored Dec 4, 2024
1 parent 7d4e29e commit c9198ca
Show file tree
Hide file tree
Showing 95 changed files with 1,797 additions and 712 deletions.
8 changes: 0 additions & 8 deletions .github/workflows/build-project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,14 +55,6 @@ jobs:
else {
Write-Host "SECRET EXISTS"
}
- uses: microsoft/variable-substitution@v1
with:
files: '.\Snyk.Common\appsettings.json'
env:
SegmentAnalyticsWriteKey: ${{ secrets.SEGMENT_ANALYTICS_WRITE_KEY }}
SnykCodeApiEndpointUrl: ${{ secrets.SNYK_CODE_API_ENDPOINT_URL }}
SentryDsn: ${{ secrets.SENTRY_DSN }}
Environment: ${{ secrets.SENTRY_ENVIRONMENT }}
- uses: actions/cache@v4
with:
Expand Down
7 changes: 5 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

## [2.0.0]
### Changed
- Visual Studio extension is now fully integrated with Snyk Language Server protocol v16.
- Reported issues now are highlighted in directly in your editor.
- Visual Studio extension is now fully integrated with Snyk Language Server protocol.
- Reported issues now are highlighted directly in your editor.
- Reported issues are now shown in the Visual Studio Error Window.
- Code Actions in the editor to learn about the reported issue.
- Apply AI fixes from the text editor.
Expand All @@ -21,6 +21,8 @@
- Deleted Code Client Library.
- Improve memory footprint by loading issue desciption on demand.
- Add plugin installed event
- Remove Common Project
- Added Net new issues scan support.

### Fixed
- Fixed UI Freeze when changing authentication method.
Expand All @@ -33,6 +35,7 @@
- Fixed CLI downloader always attempting to download after extension starts.
- Fixed State transition when Automatic download for CLI is selected.
- Removed TLS enforcement from the extension.
- OSS TreeNode empty state.

## [1.1.63]

Expand Down
40 changes: 0 additions & 40 deletions Snyk.Common/FileUtil.cs

This file was deleted.

36 changes: 0 additions & 36 deletions Snyk.Common/Properties/AssemblyInfo.cs

This file was deleted.

27 changes: 0 additions & 27 deletions Snyk.Common/Service/SnykUser.cs

This file was deleted.

124 changes: 0 additions & 124 deletions Snyk.Common/Snyk.Common.csproj

This file was deleted.

23 changes: 0 additions & 23 deletions Snyk.Common/SnykAppSettings.cs

This file was deleted.

6 changes: 0 additions & 6 deletions Snyk.Common/appsettings.development.json

This file was deleted.

6 changes: 0 additions & 6 deletions Snyk.Common/appsettings.json

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Threading;
using System.Threading.Tasks;
using Microsoft.VisualStudio.Shell;
using Serilog;
using Snyk.Common;
using Snyk.Common.Settings;
using Snyk.VisualStudio.Extension.Language;
using Snyk.VisualStudio.Extension.Settings;

namespace Snyk.VisualStudio.Extension.Analytics
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System;

namespace Snyk.Common.Authentication
namespace Snyk.VisualStudio.Extension.Authentication
{
/// <summary>
/// Util for AuthenticationToken strings.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System.ComponentModel;

namespace Snyk.Common.Authentication
namespace Snyk.VisualStudio.Extension.Authentication
{
public enum AuthenticationType
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
using Newtonsoft.Json;
using System;
using Newtonsoft.Json;
using Newtonsoft.Json.Serialization;
using System;
namespace Snyk.Common.Authentication

namespace Snyk.VisualStudio.Extension.Authentication
{
[JsonObject(NamingStrategyType = typeof(SnakeCaseNamingStrategy))]
public class OAuthToken
Expand Down
Loading

0 comments on commit c9198ca

Please sign in to comment.