Skip to content

Commit 3d86693

Browse files
Update all non-major dependencies (#1340)
1 parent d347570 commit 3d86693

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

gradle/libs.versions.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ sonar-plugin-api = "10.14.0.2599"
44
sonarqube = "24.12.0.100206"
55
sonar-scanner-gradle = "6.0.1.5171"
66
sonar-orchestrator = "5.1.0.2254"
7-
sonarlint = "10.10.0.79572"
7+
sonarlint = "10.12.0.79820"
88
slf4j = "2.0.16"
99
sslr = "1.24.0.633"
10-
junit = "5.11.3"
10+
junit = "5.11.4"
1111
assertj = "3.26.3"
1212
mockito = "5.14.2"
1313
jfrog-gradle = "5.2.5"
@@ -17,7 +17,7 @@ commons-io = "2.18.0"
1717
commons-lang = "3.17.0"
1818
jsr305 = "3.0.2"
1919
maven-project = "2.2.1"
20-
junit-platform = "1.11.3"
20+
junit-platform = "1.11.4"
2121
staxmate = "2.0.1"
2222
awaitility = "4.2.2"
2323

its/plugin/src/integrationTest/java/com/sonar/it/php/SonarLintTest.java

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,8 +132,10 @@ private static List<Path> provideTestFiles() {
132132
private static AnalyzeFilesResponse analyzeFile(String configScopeId, Path filePath, String... properties) {
133133
var fileUri = filePath.toUri();
134134
backend.getFileService().didUpdateFileSystem(
135-
new DidUpdateFileSystemParams(List.of(), List.of(
136-
new ClientFileDto(fileUri, filePath, configScopeId, false, null, filePath.toAbsolutePath(), null, null, true))));
135+
new DidUpdateFileSystemParams(
136+
List.of(new ClientFileDto(fileUri, filePath, configScopeId, false, null, filePath.toAbsolutePath(), null, null, true)),
137+
List.of(),
138+
List.of()));
137139

138140
return backend.getAnalysisService().analyzeFiles(
139141
new AnalyzeFilesParams(configScopeId, UUID.randomUUID(), List.of(fileUri), toMap(properties), System.currentTimeMillis()))

0 commit comments

Comments
 (0)