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.3.0.1951 #2590

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 7, 2023

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

Release notes

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

10.3.0.1951

PLUGINAPI-70 Add new resolution 'Accepted' and default transition 'Accept' PLUGINAPI-71 Replace won't fix metric with accepted

10.2.0.1908

What's Changed

Task

PLUGINAPI-65 Change order of selection for best impact selection for backmapping

PLUGINAPI-67 Remove CCT and Impacts from security hotspots

Improvement

PLUGINAPI-68 Introduce email property type

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

... (truncated)

Changelog

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

Changelog

10.3

  • Deprecate org.sonar.api.measures.CoreMetrics.WONT_FIX_ISSUES metric and related key.
  • Introduce org.sonar.api.measures.CoreMetrics.ACCEPTED_ISSUES which effectively replaces org.sonar.api.measures.CoreMetrics.WONT_FIX_ISSUES
  • Introduce org.sonar.api.issue.DefaultTransitions.ACCEPT which effectively replaces org.sonar.api.issue.DefaultTransitions.WONT_FIX.
  • Deprecate org.sonar.api.issue.DefaultTransitions.WONT_FIX. Use org.sonar.api.issue.DefaultTransitions.ACCEPT instead.

10.2

  • Introduce email property type: org.sonar.api.PropertyType.EMAIL

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

... (truncated)

Commits
  • e8f81b1 PLUGINAPI-70 remove new resolution ACCEPTED and remove deprecation on WONT_FIX
  • 6697ae9 PLUGINAPI-71 introduced 'accepted issues' metric as a core metric
  • c250b3d [NO-JIRA] Remove dbmeneses as codeowner
  • edbd52e NO-JIRA fixed an issue where one of the test was not invoked
  • dd05a09 NO-JIRA fixing SonarQube quality gate on new code. Adding tests that cover in...
  • badc811 PLUGINAPI-70 added new transition and resolution
  • 0aaf635 Prepare for next development iteration
  • 13db9ed [NO-JIRA] Update SonarCloud version
  • ba0b1e7 PLUGINAPI-68 Introduce email property type
  • a62314c PLUGINAPI-67 Remove CCT and Impacts from rules that have the deprecated type ...
  • 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.3.0.1951.
- [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.3.0.1951)

---
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 Nov 7, 2023
Copy link
Contributor Author

dependabot bot commented on behalf of github Jan 16, 2024

Superseded by #2609.

@dependabot dependabot bot closed this Jan 16, 2024
@dependabot dependabot bot deleted the dependabot/maven/org.sonarsource.api.plugin-sonar-plugin-api-10.3.0.1951 branch January 16, 2024 16:30
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