Skip to content

Releases: SonarSource/sonarlint-eclipse

11.1.0.82589

18 Feb 15:21
Compare
Choose a tag to compare

For full release notes, see Jira.

11.0.0.82545

04 Feb 12:52
Compare
Choose a tag to compare

For full release notes, see Jira.

Changes to the SonarLint for Eclipse extension points

This release features changes to one extension point.

SonarLint Project Configurators

The org.sonarlint.eclipse.core.projectConfigurators was removed entirely as it was long deprecated including its related Java classes.

If you have any questions regarding these changes, then please reach out to us via the Community Forum directly!

10.12.0.82500

20 Jan 15:33
Compare
Choose a tag to compare

For full release notes, see Jira.

10.11.0.82462

17 Dec 12:37
Compare
Choose a tag to compare

For full release notes, see Jira.

10.10.0.82440

09 Dec 16:12
Compare
Choose a tag to compare

For full release notes, see Jira.

10.9.1.82333

08 Nov 08:51
Compare
Choose a tag to compare

For full release notes, see Jira.

10.9.0.82319

06 Nov 08:51
Compare
Choose a tag to compare

For full release notes, see Jira.

10.8.0.82289

07 Oct 12:54
Compare
Choose a tag to compare

For full release notes, see Jira.

10.7.0.82276

01 Oct 07:43
Compare
Choose a tag to compare

For full release notes, see Jira.

10.6.0.82217

03 Sep 13:12
Compare
Choose a tag to compare

For full release notes, see JIRA.

Changes to the SonarLint for Eclipse extension points

This release features changes to two specific extension points.

SonarLint Syntax Highlighting Provider

The org.sonarlint.eclipse.core.syntaxHighlightingProvider was moved from the CORE bundle to org.sonarlint.eclipse.ui.syntaxHighlightingProvider in the UI bundle. Therefore, the interface of the extension point can now be found at org.sonarlint.eclipse.ui.rule.ISyntaxHighlightingProvider.

The reasoning behind this was to decouple the CORE bundle from anything UI related, as the extension point is only built around it. Additionally, additions to it made in this release made it necessary.

Extension point Method Removed or added? Why?
org.sonarlint.eclipse.ui.syntaxHighlightingProvider org.sonarlint.eclipse.ui.rule.ISyntaxHighlightingProvider#getEditorLanguage() Added To get the corresponding SonarLint-related language of an editor
org.sonarlint.eclipse.ui.syntaxHighlightingProvider org.sonarlint.eclipse.ui.rule.ISyntaxHighlightingProvider#getTextMergeViewer() Added Get a language-specific diff viewer

SonarLint Project Scope Provider

This release features an additional extension point provided by SonarLint for Eclipse that can be used by third parties in order to narrow down the focus for SonarLint in terms of what is indexed and taken into account for analysis. The idea behind these changes is to improve the performance and lower the memory footprint of the plug-in.

As an example, see the current implementation in the sub-plugin for Maven. There we exclude the output directories as well as possible sub-modules as these are technically still available as resources in the parent project, even when the sub-modules are imported into Eclipse as well.

Extension point Method Removed or added? Why?
org.sonarlint.eclipse.core.projectScopeProvider org.sonarlint.eclipse.core.resource.IProjectScopeProvider#getExclusions() Added Get exclusions to narrow down the focus for SonarLint

If you have any questions regarding these changes, then please reach out to us via the Community Forum directly!