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

Update dependency com.github.spotbugs.snom:spotbugs-gradle-plugin to v6 #123

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Dec 2, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
com.github.spotbugs.snom:spotbugs-gradle-plugin 5.2.5 -> 6.0.15 age adoption passing confidence

Release Notes

spotbugs/spotbugs-gradle-plugin (com.github.spotbugs.snom:spotbugs-gradle-plugin)

v6.0.15

Compare Source

Bug Fixes
  • deps: update dependency com.android.tools.build:gradle to v8.4.1 (#​1173) (20c1f04)

v6.0.14

Compare Source

Bug Fixes
  • deps: update dependency com.github.spotbugs:spotbugs to v4.8.5 (c9f4056)

v6.0.13

Compare Source

Bug Fixes
  • deps: update dependency com.android.tools.build:gradle to v8.4.0 (#​1164) (34b1032)

v6.0.12

Compare Source

Bug Fixes
  • deps: update dependency com.tngtech.archunit:archunit to v1.3.0 (#​1157) (1fcdd2d)

v6.0.11

Compare Source

Bug Fixes
  • deps: update dependency com.android.tools.build:gradle to v8.3.2 (54b4f95)

v6.0.10

Compare Source

Bug Fixes
  • deps: update dependency com.github.spotbugs:spotbugs to v4.8.4 (#​1150) (fe0d14a)

v6.0.9

Compare Source

Bug Fixes
  • deps: update dependency com.android.tools.build:gradle to v8.3.1 (#​1138) (ca6eb33)

v6.0.8

Compare Source

Bug Fixes
  • deps: update dependency com.android.tools.build:gradle to v8.3.0 (#​1128) (20a9ecb)

v6.0.7

Compare Source

Bug Fixes
  • deps: update dependency com.android.tools.build:gradle to v8.2.2 (#​1101) (31852e4)

v6.0.6

Compare Source

Bug Fixes

v6.0.5

Compare Source

Bug Fixes
  • deps: update dependency com.android.tools.build:gradle to v8.2.1 (#​1085) (6f74150)

v6.0.4

Compare Source

Bug Fixes
  • Gradle plugin should require JVM 8 but require JVM 11 (#​1074) (7710423)

v6.0.3

Compare Source

Bug Fixes
  • deps: update dependency com.github.spotbugs:spotbugs to v4.8.3 (ae878ee)

v6.0.2

Compare Source

Bug Fixes
  • deps: update dependency com.tngtech.archunit:archunit to v1.2.1 (#​1056) (5500c71)

v6.0.1

Compare Source

Bug Fixes
  • deps: update dependency com.android.tools.build:gradle to v8.2.0 (8ffba8e)

v6.0.0

Compare Source

BREAKING CHANGES

a. This plugin is now built to Java 11 class file format. It requires Gradle to run on Java 11 or later. (1c1955e)
b. Enable Java Tool Chain support by default (c94b886). To disable it, set useJavaToolchains = false in the spotbugs extension.
c. Drop support for Gradle 7.0 (4b0f800). The convention API provides replacement from 7.1 and later, so we use 7.1 as minimal required version.
d. Remove deprecated methods SpotBugsTask.getEnabledReports() and SpotBugsTask.getFirstEnabledReport (2ab3c45)
e. The effort and reportLevel properties of SpotBugsTask and SpotBugsExtension now accept enum values instead of String instances. Read the following notes for detail.

Note for Groovy buildscripts

Groovy buildscripts should use use valueOf(String) method explicitly for effort and reportLevel properties of SpotBugsTask and SpotBugsExtension. For example:

// before (v5)
spotbugs {
    effort = 'default'
    reportLevel = 'default'
}

// after (v6)
spotbugs {
    effort = Effort.valueOf('DEFAULT')
    reportLevel = Confidence.valueOf('DEFAULT')
}

This limitation is caused by a known issue of the Groovy language.

Note for Kotlin buildscripts

It is recommended to use Gradle 8.2 or later, then you can enjoy the simple property assignment feature by default.

// legacy (Gradle 8.1 and older)
import com.github.spotbugs.snom.Confidence
import com.github.spotbugs.snom.Effort

spotbugs {
    effort.set(Effort.DEFAULT)
    reportLevel.set(Confidence.DEFAULT)
}

// new (Gradle 8.2 and later)
import com.github.spotbugs.snom.Confidence
import com.github.spotbugs.snom.Effort

spotbugs {
    effort = Effort.DEFAULT
    reportLevel = Confidence.DEFAULT
}

It is also possible to use string values, however, it is not recommended due to lack of type-safety:

// new (Gradle 8.2 and later)
import com.github.spotbugs.snom.assign

spotbugs {
    effort = "DEFAULT"
    reportLevel = "DEFAULT"
}

Internal Changes

  • Remove the deplicated SpotBugsRunnerForWorker API (aa75fbc)
  • Replace the usage of duplicated project.buildDir API (5abbf2d)
  • Rewrite the implementation into Kotlin (#​924) (bcf4706)

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot force-pushed the renovate/com.github.spotbugs.snom-spotbugs-gradle-plugin-6.x branch 2 times, most recently from d73166c to 8400cd9 Compare December 5, 2023 05:07
@renovate renovate bot force-pushed the renovate/com.github.spotbugs.snom-spotbugs-gradle-plugin-6.x branch from 8400cd9 to 9d77eff Compare December 15, 2023 07:18
@renovate renovate bot force-pushed the renovate/com.github.spotbugs.snom-spotbugs-gradle-plugin-6.x branch 2 times, most recently from 37f8b76 to d2d9508 Compare January 8, 2024 07:04
@renovate renovate bot force-pushed the renovate/com.github.spotbugs.snom-spotbugs-gradle-plugin-6.x branch from d2d9508 to 1c82389 Compare January 24, 2024 00:01
@renovate renovate bot force-pushed the renovate/com.github.spotbugs.snom-spotbugs-gradle-plugin-6.x branch 6 times, most recently from 60677bd to 82d6eea Compare February 2, 2024 04:47
@renovate renovate bot changed the title Update dependency com.github.spotbugs.snom:spotbugs-gradle-plugin to v6 Update dependency com.github.spotbugs.snom:spotbugs-gradle-plugin to v6 - autoclosed Feb 2, 2024
@renovate renovate bot closed this Feb 2, 2024
@renovate renovate bot deleted the renovate/com.github.spotbugs.snom-spotbugs-gradle-plugin-6.x branch February 2, 2024 10:15
@renovate renovate bot changed the title Update dependency com.github.spotbugs.snom:spotbugs-gradle-plugin to v6 - autoclosed Update dependency com.github.spotbugs.snom:spotbugs-gradle-plugin to v6 Feb 2, 2024
@renovate renovate bot reopened this Feb 2, 2024
@renovate renovate bot restored the renovate/com.github.spotbugs.snom-spotbugs-gradle-plugin-6.x branch February 2, 2024 12:55
@renovate renovate bot force-pushed the renovate/com.github.spotbugs.snom-spotbugs-gradle-plugin-6.x branch 3 times, most recently from caf4978 to 790b701 Compare February 2, 2024 18:09
@renovate renovate bot changed the title Update dependency com.github.spotbugs.snom:spotbugs-gradle-plugin to v6 Update dependency com.github.spotbugs.snom:spotbugs-gradle-plugin to v6 - autoclosed Feb 2, 2024
@renovate renovate bot closed this Feb 2, 2024
@renovate renovate bot deleted the renovate/com.github.spotbugs.snom-spotbugs-gradle-plugin-6.x branch February 2, 2024 22:19
@renovate renovate bot changed the title Update dependency com.github.spotbugs.snom:spotbugs-gradle-plugin to v6 - autoclosed Update dependency com.github.spotbugs.snom:spotbugs-gradle-plugin to v6 Feb 3, 2024
@renovate renovate bot restored the renovate/com.github.spotbugs.snom-spotbugs-gradle-plugin-6.x branch February 3, 2024 03:44
@renovate renovate bot reopened this Feb 3, 2024
@renovate renovate bot force-pushed the renovate/com.github.spotbugs.snom-spotbugs-gradle-plugin-6.x branch 3 times, most recently from f172293 to 7559f55 Compare February 3, 2024 09:51
@renovate renovate bot force-pushed the renovate/com.github.spotbugs.snom-spotbugs-gradle-plugin-6.x branch from 7559f55 to 74fdac3 Compare February 3, 2024 14:14
@renovate renovate bot changed the title Update dependency com.github.spotbugs.snom:spotbugs-gradle-plugin to v6 Update dependency com.github.spotbugs.snom:spotbugs-gradle-plugin to v6 - autoclosed Feb 3, 2024
@renovate renovate bot closed this Feb 3, 2024
@renovate renovate bot deleted the renovate/com.github.spotbugs.snom-spotbugs-gradle-plugin-6.x branch February 3, 2024 17:25
@renovate renovate bot changed the title Update dependency com.github.spotbugs.snom:spotbugs-gradle-plugin to v6 - autoclosed Update dependency com.github.spotbugs.snom:spotbugs-gradle-plugin to v6 Feb 3, 2024
@renovate renovate bot restored the renovate/com.github.spotbugs.snom-spotbugs-gradle-plugin-6.x branch February 3, 2024 18:13
@renovate renovate bot reopened this Feb 3, 2024
@renovate renovate bot force-pushed the renovate/com.github.spotbugs.snom-spotbugs-gradle-plugin-6.x branch from 74fdac3 to a485c1d Compare February 3, 2024 18:14
@renovate renovate bot changed the title Update dependency com.github.spotbugs.snom:spotbugs-gradle-plugin to v6 Update dependency com.github.spotbugs.snom:spotbugs-gradle-plugin to v6 - autoclosed Feb 3, 2024
@renovate renovate bot closed this Feb 3, 2024
@renovate renovate bot deleted the renovate/com.github.spotbugs.snom-spotbugs-gradle-plugin-6.x branch February 3, 2024 21:48
@renovate renovate bot changed the title Update dependency com.github.spotbugs.snom:spotbugs-gradle-plugin to v6 - autoclosed Update dependency com.github.spotbugs.snom:spotbugs-gradle-plugin to v6 Feb 4, 2024
@renovate renovate bot reopened this Feb 4, 2024
@renovate renovate bot restored the renovate/com.github.spotbugs.snom-spotbugs-gradle-plugin-6.x branch February 4, 2024 04:46
@renovate renovate bot force-pushed the renovate/com.github.spotbugs.snom-spotbugs-gradle-plugin-6.x branch 2 times, most recently from 940a3be to 5771616 Compare February 5, 2024 09:22
@renovate renovate bot force-pushed the renovate/com.github.spotbugs.snom-spotbugs-gradle-plugin-6.x branch from 5771616 to 1fedfbd Compare March 1, 2024 02:29
@renovate renovate bot force-pushed the renovate/com.github.spotbugs.snom-spotbugs-gradle-plugin-6.x branch from 1fedfbd to db36916 Compare March 21, 2024 02:08
@renovate renovate bot force-pushed the renovate/com.github.spotbugs.snom-spotbugs-gradle-plugin-6.x branch 3 times, most recently from 6ca4cf2 to 73b0397 Compare April 12, 2024 05:10
@renovate renovate bot force-pushed the renovate/com.github.spotbugs.snom-spotbugs-gradle-plugin-6.x branch 2 times, most recently from e4582f5 to 63e887c Compare May 5, 2024 14:12
@renovate renovate bot force-pushed the renovate/com.github.spotbugs.snom-spotbugs-gradle-plugin-6.x branch 2 times, most recently from 33ac7ac to fa755c5 Compare May 15, 2024 09:30
@renovate renovate bot force-pushed the renovate/com.github.spotbugs.snom-spotbugs-gradle-plugin-6.x branch from fa755c5 to ed253a2 Compare May 21, 2024 21:02
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

0 participants