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

Bump org.sonarsource.api.plugin:sonar-plugin-api from 9.14.0.375 to 10.1.0.809 #2554

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Aug 10, 2023

Bumps org.sonarsource.api.plugin:sonar-plugin-api from 9.14.0.375 to 10.1.0.809.

Release notes

Sourced from org.sonarsource.api.plugin:sonar-plugin-api's releases.

10.1.0.809

What's Changed

Bug

PLUGINAPI-61 Fix description for sqale_index metric

New Feature

PLUGINAPI-56 Allow to define Clean Code Attribute on Rule Definition

PLUGINAPI-57 Allow to define Clean Code Attribute on ExternalRule and AdHocRule

PLUGINAPI-58 Allow to define default Impact on Rule Definition and override Impact on issue

PLUGINAPI-60 Allow to define Impact on ExternalIssue and AdHocRule

Task

PLUGINAPI-59 Deprecate RuleType and Severity

PLUGINAPI-62 Revert Rule Characteristics

PLUGINAPI-63 Changes on Clean Code taxonomy

PLUGINAPI-64 Mark external issue cleanCodeAttribute and impacts as @​Beta

10.0.0.695

What's Changed

Bug

PLUGINAPI-24 Invalid module-info.class file in the jar

Documentation

PLUGINAPI-28 Add Javadoc to ServletFilter and HttpFilter

Task

PLUGINAPI-10 Deprecate or remove product related APIs

PLUGINAPI-33 Remove deprecated classes and methods

PLUGINAPI-44 Move test utilities to the test-fixtures module

PLUGINAPI-48 Deprecate 'ServletFilter.Builder#staticResourcePatterns'

PLUGINAPI-50 Deprecate CWE years

... (truncated)

Changelog

Sourced from org.sonarsource.api.plugin:sonar-plugin-api's changelog.

Changelog

10.1

  • Remove @​Beta Code Characteristics org.sonar.api.code.CodeCharacteristic
  • Introduce org.sonar.api.issue.impact.SoftwareQuality and org.sonar.api.issue.impact.Severity to define impacts of rules and issues
  • Introduce org.sonar.api.rules.CleanCodeAttribute to define clean code attribute on rules.
  • Deprecate org.sonar.api.rules.RuleType, org.sonar.api.batch.rule.Severity and org.sonar.api.rule.Severity. Use impacts with org.sonar.api.issue.impact.SoftwareQuality and org.sonar.api.issue.impact.Severity instead
  • Deprecate org.sonar.api.server.rule.RuleTagsToTypeConverter

10.0

  • Moved out tester classes to the dedicated test-fixtures artifact
  • Remove org.sonar.api.SonarQubeVersion.
  • Deprecate org.sonar.api.Plugin.Context.getSonarQubeVersion(). The name is confusing: the API version is different from the SonarQube version since the extraction. Use org.sonar.api.SonarRuntime.getApiVersion() instead.
  • Remove org.sonar.api.SonarPlugin. Use org.sonar.api.Plugin instead
  • Remove org.sonar.api.SonarQubeVersion. No replacement
  • Remove org.sonar.api.security.LoginPasswordAuthenticator and org.sonar.api.CoreProperties.CORE_AUTHENTICATOR_CLASS. Use org.sonar.api.security.Authenticator instead. Make org.sonar.api.security.SecurityRealm.doGetAuthenticator() abstract
  • Remove org.sonar.api.web.UserRole.VIEWER. Use org.sonar.api.web.UserRole.USER instead
  • Remove org.sonar.api.measures.Metric constructors. Use org.sonar.api.measures.Metric.Builder.create instead
  • Remove org.sonar.api.rules.Rule constructors. Use the org.sonar.api.rules.Rule.create() methods instead
  • Remove org.sonar.api.rules.RuleParam constructors. Use the org.sonar.api.rules.Rule.createParameter() methods instead
  • Remove org.sonar.api.rules.AnnotationRuleParser. Use org.sonar.api.server.rule.RulesDefinitionAnnotationLoader instead
  • Remove org.sonar.api.PropertyType.METRIC, org.sonar.api.PropertyType.METRIC_LEVEL, org.sonar.api.PropertyType.LICENSE and org.sonar.api.PropertyType.LONG. There is no replacement as those settings are not used anymore
  • Remove org.sonar.api.profiles.XMLProfileSerializer and org.sonar.api.profiles.XMLProfileParser. No replacement
  • Remove org.sonar.api.utils.ZipUtils.ZipEntryFilter. Use java.util.function.Predicate<ZipEntry> instead
  • Remove org.sonar.api.Property.propertySetKey(). No replacement
  • Remove org.sonar.api.platform.Server.isSecured(). Use org.sonar.api.server.http.HttpRequest.isSecure() instead
  • Remove org.sonar.api.resources.ResourceType.Builder.availableForFilters(). Use org.sonar.api.resources.ResourceType.Builder.setProperty(java.lang.String, java.lang.String) instead
  • Remove org.sonar.api.ce.posttask.QualityGate.Condition.getWarningThreshold() and org.sonar.api.ce.posttask.QualityGate.Condition.isOnLeakPeriod(). No replacement
  • Remove org.sonar.api.ce.posttask.QualityGate.Operator.EQUALS and org.sonar.api.ce.posttask.QualityGate.Operator.NOT_EQUALS. No replacement
  • Remove org.sonar.api.ce.posttask.QualityGate.EvaluationStatus.WARN. No replacement
  • Remove org.sonar.api.ce.posttask.QualityGate.Status.WARN. No replacement
  • Remove org.sonar.api.measures.Metric.Level.WARN. No replacement
  • Remove org.sonar.api.measures.CoreMetrics.DOMAIN_DUPLICATION. Use org.sonar.api.measures.CoreMetrics.DOMAIN_DUPLICATIONS instead
  • Remove org.sonar.api.measures.CoreMetrics.DIRECTORIES_KEY and org.sonar.api.measures.CoreMetrics.DIRECTORIES. No replacement
  • Remove org.sonar.api.utils.HttpDownloader.TIMEOUT_MILLISECONDS. Use org.sonar.api.utils.HttpDownloader.DEFAULT_READ_TIMEOUT_IN_MILLISECONDS or org.sonar.api.utils.HttpDownloader.DEFAULT_CONNECT_TIMEOUT_IN_MILLISECONDS instead
  • Remove org.sonar.api.resources.Qualifiers.LIBRARY. No replacement
  • Remove org.sonar.api.resources.Scopes.PROGRAM_UNIT and org.sonar.api.resources.Scopes.BLOCK_UNIT. No replacement
  • Remove org.sonar.api.CoreProperties.CORE_AUTHENTICATOR_CREATE_USERS, org.sonar.api.CoreProperties.CORE_AUTHENTICATOR_UPDATE_USER_ATTRIBUTES, org.sonar.api.CoreProperties.CORE_AUTHENTICATOR_REALM, org.sonar.api.CoreProperties.LINKS_SOURCES_DEV and org.sonar.api.CoreProperties.CORE_AUTHENTICATOR_IGNORE_STARTUP_FAILURE. No replacement
  • Remove org.sonar.api.issue.IssueComment and org.sonar.api.issue.Issue.comments(). No replacement
  • Remove org.sonar.api.batch.rule.Rules. No replacement

... (truncated)

Commits
  • 341a16c PLUGINAPI-63 added mappings for impacts to plugin api when creating a rule
  • 3900fea PLUGINAPI-64 Mark external issue impacts and cleanCodeAttribute as @​Beta
  • 1dc1674 Add entries to CHANGELOG.md
  • bcea7a2 Update version to 10.1-SNAPSHOT
  • 81c1ae2 PLUGINAPI-63 Update @​CheckForNull on type and severity for rule and add defau...
  • e756f1b NO-JIRA Fix code smell
  • 6785fea PLUGINAPI-59 Deprecate issue type and severity in favor of impact
  • 1fdce7a PLUGINAPI-56 PLUGINAPI-57 Add Clean Code Attribute to plugin-api
  • 4baf8f9 PLUGINAPI-58 PLUGINAPI-60 Add impacts to plugin API
  • 85f662f PLUGINAPI-62 Revert code characteristics
  • Additional commits viewable in compare view

Dependabot compatibility score

You can trigger a rebase of this PR by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

This change is Reviewable

Note
Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

Bumps [org.sonarsource.api.plugin:sonar-plugin-api](https://github.com/SonarSource/sonar-plugin-api) from 9.14.0.375 to 10.1.0.809.
- [Release notes](https://github.com/SonarSource/sonar-plugin-api/releases)
- [Changelog](https://github.com/SonarSource/sonar-plugin-api/blob/master/CHANGELOG.md)
- [Commits](SonarSource/sonar-plugin-api@9.14.0.375...10.1.0.809)

---
updated-dependencies:
- dependency-name: org.sonarsource.api.plugin:sonar-plugin-api
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Aug 10, 2023
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Oct 23, 2023

Superseded by #2583.

@dependabot dependabot bot closed this Oct 23, 2023
@dependabot dependabot bot deleted the dependabot/maven/org.sonarsource.api.plugin-sonar-plugin-api-10.1.0.809 branch October 23, 2023 16:45
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Development

Successfully merging this pull request may close these issues.

0 participants