Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

## 13.6
* Deprecate `org.sonar.api.config.PropertyDefinitions`. Use `PropertyDefinition.builder(String)` to declare properties instead.

## 13.5
* Introduce support for issue resolution from sensors:
* Introduce `org.sonar.api.batch.sensor.issue.NewIssueResolution`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,9 @@
* Metadata of all the properties declared by plugins
*
* @since 2.12
* @deprecated since 13.6. Use {@link PropertyDefinition#builder(String)} to declare properties instead.
*/
@Deprecated(since = "13.6", forRemoval = true)
@ScannerSide
@ServerSide
@ComputeEngineSide
Expand Down
Loading