Skip to content

Commit 67df89e

Browse files
Prepare release 1.25
1 parent fb67945 commit 67df89e

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

its/src/test/java/org/sonarsource/sonarlint/omnisharp/its/OmnisharpIntegrationTests.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -414,7 +414,7 @@ private void testAnalyzeNewFileAddedAfterOmnisharpStartup(Path tmpDir, boolean l
414414

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

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

956956
var propertiesMap = new HashMap<String, String>();
957957
for (int i=0; i<properties.length; i+=2) {

pom.xml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.sonarsource.parent</groupId>
88
<artifactId>parent</artifactId>
9-
<version>75.0.0.1943</version>
9+
<version>82.0.0.2314</version>
1010
</parent>
1111

1212
<groupId>org.sonarsource.sonarlint.omnisharp</groupId>
@@ -42,10 +42,11 @@
4242
<gitRepositoryName>sonarlint-omnisharp</gitRepositoryName>
4343
<artifactsToPublish>${project.groupId}:sonarlint-omnisharp-plugin:jar</artifactsToPublish>
4444
<junit.version>5.9.1</junit.version>
45-
<sonarlint-core.version>10.10.0.79500</sonarlint-core.version>
45+
<sonarlint-core.version>10.11.0.79687</sonarlint-core.version>
4646
<jdk.min.version>11</jdk.min.version>
4747
<omnisharp.version>1.39.10</omnisharp.version>
4848
<analyzer.version>10.3.0.106239</analyzer.version>
49+
<license.name>GNU LGPL v3</license.name>
4950
</properties>
5051

5152
<dependencyManagement>

0 commit comments

Comments
 (0)