Skip to content

Commit

Permalink
SLI-1778 Update SonarIaC analyzer to 1.40.0.13983
Browse files Browse the repository at this point in the history
  • Loading branch information
nquinquenel authored and eray-felek-sonarsource committed Jan 9, 2025
1 parent 6788807 commit 77cba52
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ sonar-html = "3.18.0.5605"
sonar-xml = "2.12.0.5749"
sonar-omnisharp = "1.25.0.100242"
sonar-text = "2.20.0.5038"
sonar-iac = "1.39.0.13718"
sonar-iac = "1.40.0.13983"
sonar-cpp = "6.62.0.78645"
sonar-dotnet = "10.3.0.106239"

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
2 changes: 1 addition & 1 deletion src/main/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@

<change-notes><![CDATA[
<ul>
<li>10.15 - 1 new QuickFix for Java</li>
<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

0 comments on commit 77cba52

Please sign in to comment.