Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SLI-1778 SLI-1779 SLI-1780 SLI-1785 SLI-1787 SLI-1789 SLI-1793 Analyzer updates for 10.15 #1276

Merged
merged 7 commits into from
Jan 9, 2025
Merged
14 changes: 7 additions & 7 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
[versions]
sonarlint-core = "10.12.1.79852"

sonar-java = "8.7.0.37452"
sonar-javascript = "10.19.0.29100"
sonar-php = "3.40.0.12590"
sonar-java = "8.8.0.37665"
sonar-javascript = "10.20.0.29356"
sonar-php = "3.41.0.12692"
sonar-python = "4.25.0.19056"
sonar-kotlin = "2.22.0.5972"
sonar-ruby = "1.18.0.234"
sonar-go = "1.18.0.240"
sonar-html = "3.17.0.5548"
sonar-html = "3.18.0.5605"
sonar-xml = "2.12.0.5749"
sonar-omnisharp = "1.25.0.100242"
sonar-text = "2.19.0.4883"
sonar-iac = "1.39.0.13718"
sonar-cpp = "6.61.0.77816"
sonar-text = "2.20.0.5038"
sonar-iac = "1.40.0.13983"
sonar-cpp = "6.62.0.78645"
sonar-dotnet = "10.3.0.106239"

sonarqube = "4.4.1.3373"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ class IdeaUltimateTests : BaseUiTest() {
verifyCurrentFileTabContainsMessages(
"Found 1 issue in 1 file",
"Dockerfile",
"Replace `from` with upper case format `FROM`."
"Replace \"from\" with upper case format \"FROM\"."
)

openFile("kubernetes.yaml")
Expand Down
1 change: 1 addition & 0 deletions src/main/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@

<change-notes><![CDATA[
<ul>
<li>10.15 - 1 new QuickFix for Java. Bug fixes, fewer FPs and improvements for many languages.</li>
<li>10.14.1 - Fix unwanted loading bar appearance for computing branch information. Fix connection issue for SonarQube Server versions 10.0 - 10.4.</li>
<li>10.14 - Support analysis of Jupyter Notebook files. Increase JS/TS analysis speed and fix an issue where many temporary files would be created. Drop support for username/password authentication.</li>
<li>10.13.1 - Include a transparent and dark version of the plugin icon. Fix a noisy log error about a missing ProgressIndicator. Improve the tool window icon behavior to reflect the current number of issues in the file.</li>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ class StandaloneModeMediumTests : AbstractSonarLintLightTests() {
{ it.message },
{ issue -> issue.range?.let { Pair(it.startOffset, it.endOffset) } })
.containsExactly(
tuple("docker:S6476", "Replace `from` with upper case format `FROM`.", Pair(0, 4))
tuple("docker:S6476", "Replace \"from\" with upper case format \"FROM\".", Pair(0, 4))
)

assertThat(highlightInfos).hasSize(1)
Expand Down
Loading