Skip to content

Commit

Permalink
Prepare release 1.25
Browse files Browse the repository at this point in the history
  • Loading branch information
sophio-japharidze-sonarsource committed Dec 3, 2024
1 parent fb67945 commit 67df89e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -414,7 +414,7 @@ private void testAnalyzeNewFileAddedAfterOmnisharpStartup(Path tmpDir, boolean l

var newFilePath = baseDir.resolve("ConsoleApp1/Program2.cs");
backend.getFileService().didUpdateFileSystem(new DidUpdateFileSystemParams(List.of(), List.of(new ClientFileDto(
baseDir.resolve("ConsoleApp1/Program2.cs").toUri(), newFilePath, SOLUTION1_MODULE_KEY, false, "UTF-8", newFilePath, "", Language.CS, false))));
baseDir.resolve("ConsoleApp1/Program2.cs").toUri(), newFilePath, SOLUTION1_MODULE_KEY, false, "UTF-8", newFilePath, "", Language.CS, false)), List.of()));

// Give time for Omnisharp to process the file event
Thread.sleep(1000);
Expand Down Expand Up @@ -951,7 +951,7 @@ private List<RawIssueDto> analyzeCSharpFile(String configScopeId, String baseDir
var filePath = Path.of("projects").resolve(baseDir).resolve(filePathStr);
var fileUri = filePath.toUri();
backend.getFileService().didUpdateFileSystem(new DidUpdateFileSystemParams(List.of(),
List.of(new ClientFileDto(fileUri, Path.of(filePathStr), configScopeId, false, "UTF-8", filePath.toAbsolutePath(), content, Language.CS, true))));
List.of(new ClientFileDto(fileUri, Path.of(filePathStr), configScopeId, false, "UTF-8", filePath.toAbsolutePath(), content, Language.CS, true)), List.of()));

var propertiesMap = new HashMap<String, String>();
for (int i=0; i<properties.length; i+=2) {
Expand Down
5 changes: 3 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>org.sonarsource.parent</groupId>
<artifactId>parent</artifactId>
<version>75.0.0.1943</version>
<version>82.0.0.2314</version>
</parent>

<groupId>org.sonarsource.sonarlint.omnisharp</groupId>
Expand Down Expand Up @@ -42,10 +42,11 @@
<gitRepositoryName>sonarlint-omnisharp</gitRepositoryName>
<artifactsToPublish>${project.groupId}:sonarlint-omnisharp-plugin:jar</artifactsToPublish>
<junit.version>5.9.1</junit.version>
<sonarlint-core.version>10.10.0.79500</sonarlint-core.version>
<sonarlint-core.version>10.11.0.79687</sonarlint-core.version>
<jdk.min.version>11</jdk.min.version>
<omnisharp.version>1.39.10</omnisharp.version>
<analyzer.version>10.3.0.106239</analyzer.version>
<license.name>GNU LGPL v3</license.name>
</properties>

<dependencyManagement>
Expand Down

0 comments on commit 67df89e

Please sign in to comment.