Skip to content

Commit 1dc1674

Browse files
committed
Add entries to CHANGELOG.md
1 parent bcea7a2 commit 1dc1674

File tree

1 file changed

+29
-1
lines changed

1 file changed

+29
-1
lines changed

CHANGELOG.md

Lines changed: 29 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,8 @@
5757

5858
## 9.17
5959

60-
* Introduce `org.sonar.api.batch.sensor.issue.NewIssue.setCodeVariants(Iterable<String>)` to contribute issues for given variants (e.g. different target platforms)
60+
* Introduce `org.sonar.api.batch.sensor.issue.NewIssue.setCodeVariants(Iterable<String>)` for analyzers to contribute issues for given variants (e.g. different target platforms)
61+
* Introduce 'org.sonar.api.issue.Issue.codeVariants()'
6162
* Improvements on `org.sonar.api.testfixtures.log.LogTester`:
6263
* intercepts logged exceptions
6364
* thread-safe
@@ -80,3 +81,30 @@
8081
* `org.sonar.api.utils.log.LogTester` &rarr; `org.sonar.api.testfixtures.log.LogTester`
8182
* `org.sonar.api.utils.log.LogTesterJUnit5` &rarr; `org.sonar.api.testfixtures.log.LogTesterJUnit5`
8283
* **Breaking change for tests**: the default log level when using `LogTester` is now `INFO`. This is consistent with the default behavior of Sonar products. If you want to assert `DEBUG` or `TRACE` logs in your tests, you should first change the log level by using for example `logTester.setLevel(Level.DEBUG)`.
84+
85+
## 9.14
86+
87+
* Properties `sonar.tests.inclusions` and `sonar.tests.exclusions` added to `org.sonar.api.CoreProperties` as alias for `sonar.test.inclusions` and `sonar.test.exclusion`
88+
89+
# 9.13
90+
91+
* Support for plugins to add messages to issue locations with formatting:
92+
* Added interface `org.sonar.api.batch.sensor.issue.MessageFormatting`
93+
* Added interface `org.sonar.api.batch.sensor.issue.NewMessageFormatting`
94+
* Added method `org.sonar.api.batch.sensor.issue.IssueLocation.messageFormattings()`
95+
* Added method `org.sonar.api.batch.sensor.issue.NewIssueLocation.message(String, List<NewMessageFormatting>)`
96+
* Added method `org.sonar.api.batch.sensor.issue.NewIssueLocation.newMessageFormatting`
97+
* Support for plugins to add quick fixes to issues:
98+
* Added interface `org.sonar.api.batch.sensor.issue.fix.InputFileEdit`
99+
* Added interface `org.sonar.api.batch.sensor.issue.fix.NewInputFileEdit`
100+
* Added interface `org.sonar.api.batch.sensor.issue.fix.NewQuickFix`
101+
* Added interface `org.sonar.api.batch.sensor.issue.fix.NewTextEdit`
102+
* Added interface `org.sonar.api.batch.sensor.issue.fix.QuickFix`
103+
* Added interface `org.sonar.api.batch.sensor.issue.fix.TextEdit`
104+
* Added method `org.sonar.api.batch.sensor.issue.Issue.quickFixes()`
105+
* Added method `org.sonar.api.batch.sensor.issue.NewIssue.newQuickFix()`
106+
* Added method `org.sonar.api.batch.sensor.issue.NewIssue.addQuickFix(NewQuickFix)`
107+
108+
## 9.12
109+
110+
* Added a new property type: `org.sonar.api.PropertyType.FORMATTED_TEXT`

0 commit comments

Comments
 (0)