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.4.0.2064 #2609

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 16, 2024

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

Release notes

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

10.4.0.2064

PLUGINAPI-74 - Update promotion step PLUGINAPI-76 - Javadoc for org.sonar.api.config.Configuration is wrong PLUGINAPI-77 - Deprecate Confirm transition PLUGINAPI-79 - Add new metric pull_request_fixed_issues PLUGINAPI-80 - Add new metrics new_accepted_issues and high_impact_accepted_issues

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

... (truncated)

Changelog

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

Changelog

10.4

  • Add new metrics org.sonar.api.measures.CoreMetrics.NEW_ACCEPTED_ISSUES and org.sonar.api.measures.CoreMetrics.HIGH_IMPACT_ACCEPTED_ISSUES.
  • Add new metric org.sonar.api.measures.CoreMetrics.PULL_REQUEST_FIXED_ISSUES to represent issues that would be fixed by the pull request.
  • Fixed misleading javadoc of org.sonar.api.config.Configuration to make it clear that at Compute Engine level project configuration is not provided.
  • Deprecate org.sonar.api.issue.DefaultTransitions.UNCOMFIRM. There is no replacement as org.sonar.api.issue.DefaultTransitions.CONFIRM is subject to removal in the future.
  • Deprecate org.sonar.api.issue.DefaultTransitions.CONFIRM. Use org.sonar.api.issue.DefaultTransitions.ACCEPT instead.

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().

... (truncated)

Commits
  • f7c8779 NO-JIRA Update license headers for 2024
  • d4c8de2 PLUGINAPI-80 Add metrics for new and high impact accepted issues
  • 81ebce3 fixup! PLUGINAPI-79 Introduced new metric 'pull_request_fixed_issues'
  • 39f4768 PLUGINAPI-79 Introduced new metric 'pull_request_fixed_issues'
  • db6dcd6 BUILD-4249 update cirrus config with JDK17
  • 0b6afc5 PLUGINAPI-77 deprecate fields in org.sonar.api.issue.DefaultTransitions
  • f5705df PLUGINAPI-76 fixed misleading javadoc of org.sonar.api.config.Configuration
  • 5778762 PLUGINAPI-74 updated cirrus.yml to move away from GCP
  • d237616 Update SonarQube versions in matrix compatibility
  • 0b86f12 Prepare for next development iteration
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually 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

Bumps [org.sonarsource.api.plugin:sonar-plugin-api](https://github.com/SonarSource/sonar-plugin-api) from 9.14.0.375 to 10.4.0.2064.
- [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.4.0.2064)

---
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 Jan 16, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Jan 19, 2024

Superseded by #2614.

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