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 sonar-plugin-api from 9.14.0.375 to 10.0.0.695 #2550

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jul 14, 2023

Bumps sonar-plugin-api from 9.14.0.375 to 10.0.0.695.

Release notes

Sourced from sonar-plugin-api's releases.

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

Improvement

PLUGINAPI-14 Remove mentions of SonarQube in rule repositories

9.17.0.587

What's Changed

  • PLUGINAPI-40 LogTester doesn't intercept logged exceptions
  • PLUGINAPI-41 LogTester can throw 'ConcurrentModificationException' if logs are written and asserted concurrently
  • PLUGINAPI-47 Add code variants to issues

9.16.0.560

What's Changed

9.15.0.435

What's Changed

Added

  • PLUGINAPI-35 Expose file content hash in plugin API
  • PLUGINAPI-36 Remove dependency on logback
  • PLUGINAPI-39 Add woff2 to static resource filter list
Changelog

Sourced from sonar-plugin-api's changelog.

Changelog

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
  • Remove org.sonar.api.notifications.NotificationChannel and org.sonar.api.notifications.Notification. No replacement
  • Remove org.sonar.api.scan.filesystem.PathResolver.RelativePath and org.sonar.api.scan.filesystem.PathResolver.relativePath(java.util.Collection<java.io.File>, java.io.File). No replacement
  • Remove org.sonar.api.platform.Server.getPermanentServerId(). Use org.sonar.api.platform.Server.getId() instead
  • Remove org.sonar.api.rules.RulePriority.valueOfString(String). Use org.sonar.api.rules.RulePriority.valueOf(String) instead
  • 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.

9.17

... (truncated)

Commits
  • 7c902ff Add Leo to codeowners
  • e4be6b5 PLUGINAPI-33 Revert removal of 'org.sonar.api.config.Settings'
  • eafa66f PLUGINAPI-33 Revert removal of QP metric
  • 37f4ebf PLUGINAPI-33 Remove deprecated classes and methods
  • 30c002b Add missing versions on Deprecated elements
  • ede09f7 Update changelog
  • bc0113b PLUGINAPI-10 Deprecate Plugin.getSonarQubeVersion() and SensorContext.getSona...
  • cdcdda5 PLUGINAPI-10 Remove product related APIs
  • bc9c5ff [NO JIRA] Change version to 10.0-SNAPSHOT
  • dc3fb1e PLUGINAPI-14 Rename default repository from "SonarQube" to "Sonar" (#109)
  • 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 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 [sonar-plugin-api](https://github.com/SonarSource/sonar-plugin-api) from 9.14.0.375 to 10.0.0.695.
- [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.0.0.695)

---
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] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Jul 14, 2023
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Aug 10, 2023

Superseded by #2554.

@dependabot dependabot bot closed this Aug 10, 2023
@dependabot dependabot bot deleted the dependabot/maven/org.sonarsource.api.plugin-sonar-plugin-api-10.0.0.695 branch August 10, 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