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

Excavator: Upgrades Baseline to the latest version #548

Closed
wants to merge 1 commit into from

Conversation

svc-excavator-bot
Copy link
Collaborator

@svc-excavator-bot svc-excavator-bot commented Nov 16, 2021

excavator is a bot for automating changes across repositories.

Changes produced by the roomba/latest-baseline-oss check.

Release Notes

3.0.0

Type Description Link
Break baseline-circleci no longer applies the (deprecated) configuration resolver plugin which provided the ./gradlew resolveConfigurations task. We no longer run this on CI, but if you want to keep using it, feel free to depend on the plugin directly. palantir/gradle-baseline#1184
Break The deprecated com.palantir.baseline-versions plugin has been deleted, as we recommended using gradle-consistent-versions instead. (Alternatively, you can still manually set up nebula.dependency-recommender). palantir/gradle-baseline#1169

3.1.0

Type Description Link
Improvement Replace the checkstyle UnnecessaryParentheses check with error-prone. The existing upstream UnnecessaryParentheses check covers most cases, a new UnnecessaryLambdaArgumentParentheses check covers the rest. palantir/gradle-baseline#1186

3.1.1

Type Description Link
Fix Fix UnnecessaryLambdaArgumentParentheses handling explicitly typed primitive lambda args palantir/gradle-baseline#1192

3.2.0

Type Description Link
Improvement Add an ErrorProne check for raw types palantir/gradle-baseline#1197

3.2.1

Type Description Link
Fix Checkstyle's ParenPad rule is turned off when using palantir-java-format, to avoid disagreements that can't be fixed by the user. palantir/gradle-baseline#1205

3.2.2

Type Description Link
Fix Turn off UnnecessaryLambda in tests where it doesn't provide value because there is a ubiquitous use case that is painful to fix. palantir/gradle-baseline#1210

3.3.0

Type Description Link
Improvement ./gradlew compileJava -Pcom.palantir.baseline-error-prone.disable turns off error-prone, to allow compilation on Java 13 which is not yet supported by error-prone. palantir/gradle-baseline#1213

3.4.0

Type Description Link
Improvement Enforcing copyright based on the first file (lexicographically) found in .baseline/copyright. palantir/gradle-baseline#1217
Improvement For repos that use snapshot-style testing, ./gradlew test -Drecreate=true will ensure the "recreate" system property is passed through to Java correctly. palantir/gradle-baseline#1220

3.4.1

Type Description Link
Fix Auto-fixing license headers will attempt to preserve the existing year of creation. palantir/gradle-baseline#1227

3.4.2

Type Description Link
Fix Copyright header enforcement now includes any leading and trailing whitespace on lines palantir/gradle-baseline#1228

3.4.3

Type Description Link
Fix checkClassUniqueness should now behave consistently when asked to analyze configurations that are builtBy other tasks (e.g. gradle-conjure, gradle-atlas) palantir/gradle-baseline#1250

3.5.0

Type Description Link
Improvement A new com.palantir.baseline-fix-gradle-java plugin fixes up the deprecated configurations of java source sets so they cannot be resolved or depended on. palantir/gradle-baseline#1254

3.5.1

Type Description Link
Fix Fix regression from 3.5.0 with baseline-exact-dependencies. palantir/gradle-baseline#1260

3.6.0

Type Description Link
Improvement Migrate VisibleForTesting validation from checkstyle to errorprone palantir/gradle-baseline#1253

3.7.0

This release has been aborted because of a bug, don't use

Type Description Link
Improvement BaselineExactDependencies applies to all source sets palantir/gradle-baseline#1262

3.7.1

Type Description Link
Fix Fix checkUnusedDependencies regression introduced in 3.7.0 where it was failing when finding a dependency on another project that applies java-library. palantir/gradle-baseline#1267

3.7.2

Type Description Link
Fix Bring back the ignore(String, String) method on the checkUnusedDependencies and checkImplicitDependencies tasks. This now ignores the coordinate for all source sets. palantir/gradle-baseline#1273

3.7.3

Type Description Link
Fix Fix regression in 3.5.0 where people's idea{} configuration code would now crash, by not applying com.palantir.baseline-fix-gradle-java by default. palantir/gradle-baseline#1274
Fix Fix baseline 3.7.0-3.7.2 regression in baseline-exact-dependencies causing ConcurrentModificationException. palantir/gradle-baseline#1275

3.7.4

Type Description Link
Fix Disable LeftCurly CheckStyle rule when Palantir-Java-Format is applied palantir/gradle-baseline#1278

3.7.5

Type Description Link
Fix The checkClassUniqueness task will no longer spuriously fail due to inconsistent ordering in the baseline-class-uniqueness.lock file. palantir/gradle-baseline#1283

3.8.0

Type Description Link
Improvement Disable CatchSpecificity errorprone check by default palantir/gradle-baseline#1292

3.9.0

Type Description Link
Improvement RedundantModifier check validates and fixes final parameters in abstract methods palantir/gradle-baseline#1303

3.10.0

No documented user facing changes

3.11.0

Type Description Link
Improvement The threshold for automatic on demand imports (.* imports) in IntelliJ and Eclipse formatter configurations has been increased from 99 to 999. Ideally on demands imports would be disabled completely as they are not allowed in the baseline Checkstyle configuration. Given that's not possible, the threshold is being icreased as a workaround. palantir/gradle-baseline#1323
Improvement New OptionalFlatmapOfNullable check with automatic fix. palantir/gradle-baseline#1328

3.12.0

Type Description Link
Improvement Baseline no longer provides a SwitchStatementDefaultCase error-prone check. palantir/gradle-baseline#1309

3.12.1

Type Description Link
Fix Fix task dependencies onto other subprojects for com.palantir.baseline-exact-dependencies tasks (checkUnusedDependencies, checkImplicitDependencies), so they work with gradle 6.4. palantir/gradle-baseline#1338

3.13.0

Type Description Link
Improvement Intellij is now configured to import inner classes. palantir/gradle-baseline#1341

3.14.0

Automated release, no documented user facing changes

3.14.1

Type Description Link
Fix Classes in common shaded packages are no longer for autocompletion/auto-import recommended by IntelliJ. palantir/gradle-baseline#1350

3.15.0

Type Description Link
Improvement StrictUnusedVariable checks for unused lambda parameters palantir/gradle-baseline#1355

3.15.1

Type Description Link
Fix Correctly handle converting lambda parameters from unused (_param) to used (param`), fixing a regression from 5.18.0. palantir/gradle-baseline#1358

3.16.0

Type Description Link
Improvement Rewrite single parameter lambdas that only invoke an zero param instance method to a method reference palantir/gradle-baseline#1359

3.17.0

Type Description Link
Feature Forbid implicit toString of Gradle Providers. palantir/gradle-baseline#1322

3.18.0

Type Description Link
Improvement checkUnusedDependencies works with JDK14 palantir/gradle-baseline#1367

3.19.0

Type Description Link
Improvement Convert multi param lambdas and local method invokations to method references palantir/gradle-baseline#1365
Improvement Upgarde error-prone to 2.4.0 to support latest jdks palantir/gradle-baseline#1370
Improvement Upgrade gradle-errorprone palantir/gradle-baseline#1371

3.20.0

Type Description Link
Improvement The baseline-error-prone plugin no longer applies SUGGESTION checks by default. palantir/gradle-baseline#1380

3.21.0

Type Description Link
Improvement Add an explicit dependency on org.ow2.asm:asm to ensure consumers can use JDK14 source compat palantir/gradle-baseline#1374

3.22.0

Type Description Link
Improvement Add error-prone check that forbids extending java.lang.Error (reports ERROR). Provides a fix to replace extends Error with extends RuntimeException for clearer contract to the consumers. palantir/gradle-baseline#1379

3.23.0

Type Description Link
Improvement The PreferCollectionConstructors error-prone check is now enabled by default. palantir/gradle-baseline#1386

3.24.0

Type Description Link
Improvement Running ./gradlew --write-locks should be faster now, as it doesn't update your baseline-class-uniqueness.lock file implicitly anymore. To update this, you need to run ./gradlew checkClassUniqueness --write-locks. palantir/gradle-baseline#1389
Improvement Add errorprone check to avoid accidentally undoing immutables Style meta-annotations. palantir/gradle-baseline#1396

3.25.0

Type Description Link
Improvement Upgrade checkstyle to 8.33 palantir/gradle-baseline#1404

3.25.1

Type Description Link
Fix Fix checkstyle config to conform to breaks made between 8.13 and 8.33 palantir/gradle-baseline#1409

3.26.0

Type Description Link
Improvement StrictUnusedVariable handles Java 14 records palantir/gradle-baseline#1412

3.27.0

Type Description Link
Improvement When using Eclipse's built-in formatter, method declarations are now wrapped on parameters, not on modifiers and return type. palantir/gradle-baseline#1416

3.28.0

Type Description Link
Improvement Adds the proper configuration files upon IntelliJ import of a gradle project for checkstyle and copyright.

This generates the following additional files:
- .idea/copyright/profiles_settings.xml
- an xml file under .idea/copyright/ per copyright file under .baseline/copyright
- .idea/checkstyle-idea.xml (and adds Checkstyle-IDEA to the external dependencies) if baseline-checkstyle is applied
- Either .idea/codeStyleSettings.xml or a .idea/codeStyles/ folder with the contents being copied from .baseline/idea
- If .baseline/idea/codeStyles is present, it will copy its contents, otherwise, it will fall back to .baseline/idea/intellij-java-palantir-style.xml as currently
- The fallback is using a legacy IntelliJ format and requires closing and reopening the project to be taken into account
palantir/gradle-baseline#1411

3.29.0

Type Description Link
Improvement The Slf4jLogsafeArgs ErrorProne rule now allows object arrays be passed as vararg argument to logging methods. palantir/gradle-baseline#1394
Improvement Adds OptionalOrElseGetValue error prone rule which recommends using Optional.orElse(value) over Optional.orElseGet(() -> value). palantir/gradle-baseline#1401

3.30.0

Type Description Link
Improvement Check unused dependencies task can be up to date palantir/gradle-baseline#1426

3.31.0

Type Description Link
Improvement check junit dependencies task can be skipped palantir/gradle-baseline#1427

3.32.0

Type Description Link
Improvement Disable UnnecessaryParentheses on Java 14 source to avoid false positives palantir/gradle-baseline#1413

3.32.1

Type Description Link
Fix Avoid rewriting lambdas into ambiguous references palantir/gradle-baseline#1432

3.33.0

Type Description Link
Improvement Disable FallThrough on Java 14 source to avoid false positives palantir/gradle-baseline#1442

3.34.0

Type Description Link
Feature Add TooManyArguments errorprone rule which prevents interfaces from having more than 10 arguments palantir/gradle-baseline#1447

3.35.0

Type Description Link
Improvement Implement PreferStaticLoggers error-prone check palantir/gradle-baseline#1446
Improvement Fix typo in TooManyArguments check palantir/gradle-baseline#1449
Fix When checkClassUniqueness fails, it will show the difference between the actual and expected lock file. palantir/gradle-baseline#1452

3.36.0

Type Description Link
Improvement Make TODO checkstyle rule case insensitive to catch lowercase TODO comments palantir/gradle-baseline#1456
Feature add LogsafeArgName errorprone rule which allows users to specify a list of argument names that must always be tagged as unsafe. palantir/gradle-baseline#1459

3.36.1

Type Description Link
Fix The LogsafeArgName now ignores arg names that are not literals. palantir/gradle-baseline#1465

3.36.2

Type Description Link
Fix baseline-exact-dependencies ensures compileCopy configuration it creates is not resolvable, so it can't be resolved accidentally. palantir/gradle-baseline#1469

3.37.0

Type Description Link
Improvement Error-prone DnsLookup check to prevent unintentional resolution palantir/gradle-baseline#1472

3.37.1

Type Description Link
Fix Fix com.palantir.baseline-exact-dependencies to work with GCV 1.26.0+. palantir/gradle-baseline#1487

3.38.0

Type Description Link
Improvement ImplicitPublicBuilderConstructor error prone rule palantir/gradle-baseline#1492

3.39.0

Type Description Link
Improvement checkstyle 8.33 -> 8.36.1, which enables support for new language features like records. palantir/gradle-baseline#1496

3.39.1

Type Description Link
Fix Fix InvocationHandlerDelegation false positive palantir/gradle-baseline#1499

3.40.0

Type Description Link
Improvement Add an Errorprone rule to check that all fields in Immutables builders have been initialized palantir/gradle-baseline#1504

3.40.1

Type Description Link
Fix Fix ImmutablesBuilderMissingInitialization in java15 palantir/gradle-baseline#1507

3.41.0

Type Description Link
Improvement error-prone UnnecessarilyQualified palantir/gradle-baseline#1510

3.42.0

Type Description Link
Improvement Disable intellij's missing slf4j placeholders inspection by default. palantir/gradle-baseline#1513

3.43.0

Type Description Link
Improvement Error-prone's BoxedPrimitiveEquality and ReferenceEquality checks will now fail the build, as we consider them errors not just warnings. palantir/gradle-baseline#1514

3.43.1

Type Description Link
Fix Fix null pointer exception when checking immutables builders that are returned from abstract methods palantir/gradle-baseline#1519

3.44.0

Type Description Link
Improvement Implement DeprecatedGuavaObjects error-prone migration palantir/gradle-baseline#1521
Improvement Implement error-prone ObjectsHashCodeUnnecessaryVarargs migration palantir/gradle-baseline#1522

3.45.0

Type Description Link
Improvement Automatically fix occurrences of ObjectsHashCodePrimitive palantir/gradle-baseline#1523

3.45.1

Type Description Link
Fix Always set target version for Scala compiler to JVM 8. palantir/gradle-baseline#1524

3.45.2

Type Description Link
Fix Use old version-string scheme for Scala compiler target (jvm-1.8 instead of jvm-8). palantir/gradle-baseline#1528

3.45.3

Type Description Link
Fix Fix baseline-idea inspection configuration palantir/gradle-baseline#1530

3.46.0

Type Description Link
Improvement Idea highlights calls to incubating conjure endpoints palantir/gradle-baseline#1529

3.47.0

Type Description Link
Feature Adds a JavaTimeSystemDefaultTimeZone error-prone check to prevent uses of the system default time zone. palantir/gradle-baseline#1531

3.48.0

Automated release, no documented user facing changes

3.49.0

Type Description Link
Improvement Update spotless to 5.7.0 palantir/gradle-baseline#1534

3.50.0

Type Description Link
Improvement Disable --release flag when --add-exports is used palantir/gradle-baseline#1542

3.51.0

Type Description Link
Improvement checkstyle 8.36 -> 8.37, to benefit from some bugfixes to do with new java language features (e.g. records) palantir/gradle-baseline#1546

3.52.0

Type Description Link
Feature Add the apply plugin: 'com.palantir.baseline-enable-preview-flag' to your subprojects block to enable the usage of unreleased java features (e.g. records, switch expressions, var keyword etc).

Note, this plugin is a no-op on any project where you have a low sourceCompatibility.
palantir/gradle-baseline#1549

3.52.1

Type Description Link
Fix Fix regression in ./gradlew idea introduced in baseline 3.51.0 palantir/gradle-baseline#1551

3.53.0

Type Description Link
Improvement Add IncubatingMethod errorprone check, which prevents usage of conjure incubating APIs unless explicitly annotated. palantir/gradle-baseline#1554

3.53.1

Type Description Link
Fix Improve the DangerousJsonTypeInfoUsage check palantir/gradle-baseline#1557

3.54.0

Type Description Link
Improvement The baseline-class-unqiueness plugin is now applied by default. palantir/gradle-baseline#1553

3.55.0

Type Description Link
Feature com.palantir.baseline-format now understands how to format build.gradle files. This is opt-in by default, so you need to run ./gradlew format -Pcom.palantir.baseline-format.gradle-files=true to try it, or add this property to your gradle.properties if you want to lock it in. palantir/gradle-baseline#1561

3.56.0

Re-release after 3.55.0 failed to publish

3.57.0

Type Description Link
Improvement Add error-prone CompileTimeConstantViolatesLiskovSubstitution check to require consistent application of the @CompileTimeConstant annotation. palantir/gradle-baseline#1559

3.57.1

Type Description Link
Fix JavaCompile tasks should now get more build cache hits irrespective of the location of your repo on disk, as baseline-errorprone no longer injects an absolute path into errorproneOptions.excludedPaths. palantir/gradle-baseline#1568

3.58.0

Type Description Link
Fix Exclude generated sources from error-prone palantir/gradle-baseline#1571
Feature baseline-reproducibility validates that sourceCompatibility is set explicitly palantir/gradle-baseline#1574

3.58.1

Type Description Link
Fix Print more test logging output to avoid builds with long running tests getting terminated by circle ("context deadline exceeded"). palantir/gradle-baseline#1576

3.58.2

Type Description Link
Fix baseline-reproducibility no longer requires people to set sourceCompatibility if the publishing plugin is applied but nothing is published. (NOTE this requires Gradle 6.7+) palantir/gradle-baseline#1577

3.59.0

Automated release, no documented user facing changes

3.59.1

Type Description Link
Fix Eclipse formatting rules now match the spotless format for line wrapped asserts. palantir/gradle-baseline#1582

3.60.0

Type Description Link
Improvement checkExplicitSourceCompatabilityTask ignores projects without java source palantir/gradle-baseline#1584

3.61.0

Type Description Link
Improvement The checkImplicitDependencies suggestion message now includes the implementation configuration name. palantir/gradle-baseline#1591

3.62.0

Type Description Link
Improvement Implement error-prone ClassInitializationDeadlock check palantir/gradle-baseline#1598

3.63.0

Type Description Link
Feature Baseline now provides a com.palantir.baseline-encoding plugin to force UTF-8 in compilation tasks. palantir/gradle-baseline#1600

3.63.1

Type Description Link
Fix Disable WhitespaceAround Checkstyle rule when palantir-java-format is applied. palantir/gradle-baseline#1603

3.63.2

Type Description Link
Fix Let StrictUnusedVariable ignore record fields palantir/gradle-baseline#1602

3.63.3

Type Description Link
Fix Baseline correctly preserves the DOCTYPE when generating checkstyle.xml. palantir/gradle-baseline#1606

3.64.0

Automated release, no documented user facing changes

3.65.0

Type Description Link
Improvement Automatically fix the new ZoneIdOfZ check palantir/gradle-baseline#1621

3.66.0

Automated release, no documented user facing changes

3.67.0

Type Description Link
Improvement Disable inner import on classes that cause ErrorProne to fail palantir/gradle-baseline#1617
Fix Fix error message to reflect correct static constant palantir/gradle-baseline#1630

3.68.0

Type Description Link
Feature Add consistent logging errorprone rule palantir/gradle-baseline#1644

3.68.1

Type Description Link
Fix Fix false positive ClassInitializationDeadlock on .class access palantir/gradle-baseline#1654

3.69.0

Type Description Link
Improvement Improve the StrictUnusedVariable failure message palantir/gradle-baseline#1656

3.70.0

Type Description Link
Improvement Internal ImmutablesStyle annotations are now excluded from Intellij auto-imports and completion. palantir/gradle-baseline#1668

3.71.0

Type Description Link
Improvement A new error-prone rule PreferImmutableStreamExCollections converts the StreamEx toMap() -> toImmutableMap(), toImmutableList() and toImmutableSet() palantir/gradle-baseline#1670

3.72.0

Type Description Link
Improvement A new suggested error-prone rule AutoCloseableMustBeClosed annotates methods and constructors that return an AutoCloseable type as @MustBeClosed to allow for MustBeClosedChecker to perform analysis that resources are appropriately closed.

See https://errorprone.info/bugpattern/MustBeClosedChecker
palantir/gradle-baseline#1673

3.73.0

Type Description Link
Improvement Disable AutoCloseableMustBeClosed by default

Projects can choose to manually opt-in by enabling the AutoCloseableMustBeClosed check as part of their baseline configuration and running ./gradlew compileJava compileTestJava -PerrorProneApply=AutoCloseableMustBeClosed && ./gradlew format to apply the automated fixes.
palantir/gradle-baseline#1677

3.73.1

Type Description Link
Fix PreferImmutableStreamExCollections is disabled by default palantir/gradle-baseline#1681

3.74.0

Type Description Link
Improvement AutoCloseableMustBeClosed doesn't match method overrides palantir/gradle-baseline#1685

3.75.0

Type Description Link
Improvement Baseline applies the -parameters javac option for method parameter metadata palantir/gradle-baseline#1690

3.75.1

Type Description Link
Fix Fix IncubatingMethod check

The check was non-functional; the test did not catch this since it was using the wrong @Test annotation. Fixed both issues.
palantir/gradle-baseline#1698

3.76.0

Automated release, no documented user facing changes

3.77.0

Type Description Link
Improvement DangerousIdentityKey identifies key types which do not override equals or hashCode thus rely on reference comparison. palantir/gradle-baseline#1731

3.78.0

Type Description Link
Improvement DangerousIdentityKey validates additional hash-based collections palantir/gradle-baseline#1735

3.79.0

Type Description Link
Feature Add ConsistentInterfaceImplementation errorprone rule palantir/gradle-baseline#1712

3.80.0

Type Description Link
Improvement Upgrade gradle-errorprone-plugin to 2.0.1 palantir/gradle-baseline#1742

3.81.0

Type Description Link
Feature Adds the baseline-immutables plugin to enable incremental compilation for Immutables. palantir/gradle-baseline#1750

3.81.1

Type Description Link
Fix Build compiler args for com.palantir.baseline-immutables plugin lazily to avoid afterEvaluate ordering issues. palantir/gradle-baseline#1752

3.82.0

Automated release, no documented user facing changes

3.83.0

Type Description Link
Improvement Error prone check to ensure that Gradle CommandLineArgumentProviders are not written as lambdas, which causes them not to be cached. palantir/gradle-baseline#1757

3.84.0

Automated release, no documented user facing changes

3.85.0

Type Description Link
Improvement Replace our BracesRequired check+fix with upstream MissingBraces added in v2.7.0 palantir/gradle-baseline#1766

3.86.0

Type Description Link
Improvement Allow other plugins to register tasks to produce junit reports palantir/gradle-baseline#1764

3.87.0

Type Description Link
Improvement Feature/avoid hashmapint palantir/gradle-baseline#1773

3.88.0

Automated release, no documented user facing changes

3.88.1

Type Description Link
Fix Correctly expose junit-reports plugin palantir/gradle-baseline#1778

3.89.0

Type Description Link
Improvement Update ImmutablesStyleCollision check to require meta-annotations with source retention. palantir/gradle-baseline#1727

3.90.0

Automated release, no documented user facing changes

3.91.0

Type Description Link
Improvement Ban the var keyword via error-prone VarUsage palantir/gradle-baseline#1788

3.92.0

Type Description Link
Fix Fix VarUsage false positives in lambdas palantir/gradle-baseline#1789

3.93.0

Type Description Link
Improvement Implement ProxyNonConstantType palantir/gradle-baseline#1799

3.94.0

Type Description Link
Improvement Introduce BadAssert to ban assert statements in favor of better alternatives. palantir/gradle-baseline#1810

3.95.0

Type Description Link
Improvement Increase default test heap from 512m to 2g unless otherwise specified palantir/gradle-baseline#1813

3.96.0

Type Description Link
Improvement Upgrade ProxyNonConstantType to WARNING (from suggestion) palantir/gradle-baseline#1816

3.97.0

Type Description Link
Improvement Enable ConsistentOverrides by default palantir/gradle-baseline#1820

3.98.0

Type Description Link
Improvement ProxyNonConstantType documents describe suppression cases and steps palantir/gradle-baseline#1827

3.99.0-rc1

Type Description Link
Improvement Add Gradle 7 support palantir/gradle-baseline#1824

4.0.0

Type Description Link
Break Add Gradle 7 support. Increase minimum required Gradle version to 6.7. palantir/gradle-baseline#1824

4.1.0

Type Description Link
Fix Replace deprecated Report.enabled property palantir/gradle-baseline#1839

4.2.0

Type Description Link
Improvement Support the new SafeLogger API palantir/gradle-baseline#1834
Improvement Fix the formatting of baseline-class-uniqueness.lock files when more than one configuration is listed. A newline was missing. This may require running ./gradlew checkClassUniqueness --write-locks to update the files. palantir/gradle-baseline#1838

4.3.0

Type Description Link
Fix Allow PreferSafeLogger to migrate logger uses which include level-checks palantir/gradle-baseline#1842

4.4.0

Type Description Link
Fix Fix NPE from StrictUnusedVarible check for unused lambda parameters in static initializers. palantir/gradle-baseline#1843

4.5.0

Type Description Link
Improvement Implement automatic fixes for ImmutablesStyle palantir/gradle-baseline#1846

4.6.0

Type Description Link
Improvement Suppress existing ProxyNonConstantType failures to ease rollout palantir/gradle-baseline#1850

4.7.0

Type Description Link
Fix Fix PreferSafeLogger edge case that produced suggested fixes that didn't compile without human interaction. palantir/gradle-baseline#1851

4.8.0

Automated release, no documented user facing changes

4.9.0

Type Description Link
Improvement Add a StrictUnusedVariable exception for SafeLogger matching the existing exception for slf4j. Update CatchBlockLogException to be SafeLogger aware as well. palantir/gradle-baseline#1853

4.10.0

Type Description Link
Improvement Recommend the Witchcraft logging plugin when the sls-packaging distribution plugin is detected palantir/gradle-baseline#1863

4.11.0

Type Description Link
Improvement PreferSafeLogger produces suggestions which compile with >10 args palantir/gradle-baseline#1866

4.12.0

Automated release, no documented user facing changes

4.13.0

Type Description Link
Improvement witchcraft-logging functionality has been migrated to https://github.com/palantir/witchcraft-java-logging#gradle-plugin palantir/gradle-baseline#1870

4.14.0

Automated release, no documented user facing changes

4.15.0

Type Description Link
Improvement Automatically fix upstream LoopOverCharArray palantir/gradle-baseline#1873

4.16.0

Type Description Link
Improvement JavaDoc uses UTF-8 encoding by default palantir/gradle-baseline#1879

4.17.0

Type Description Link
Improvement Enforce PreferSafeLogger at WARNING level matching Slf4jLogsafeArgs and PreferSafeLoggingPreconditions. This doesn't apply to gradle plugins. palantir/gradle-baseline#1876

4.18.0

No documented user facing changes

4.19.0

Type Description Link
Fix Re-add null check for exclude rule palantir/gradle-baseline#1883

4.20.0

Type Description Link
Fix Fix missing setProperty error when using Gradle 6 palantir/gradle-baseline#1884

4.21.0

Type Description Link
Improvement error-prone LoggerInterpolationConsumesThrowable: Flag as an ERROR when logging statements fail to produce a stack trace due to excessive slf4j-style interpolation placeholders. palantir/gradle-baseline#1886

4.22.0

Type Description Link
Improvement Java compilation warnings and errors are no longer limited to the first 100 palantir/gradle-baseline#1890

4.23.0

Type Description Link
Improvement allow trailing comma in annotation arrays palantir/gradle-baseline#1904

4.24.0

Type Description Link
Improvement Increase the speed of the checkClassUniqueness task, especially in large repos, by adding caching of jar information.

Fix class names listed in the baseline-class-uniqueness.lock when the class or package name contains the substring class. In rare cases, this may require running ./gradlew checkClassUniqueness --write-locks to update the files.
palantir/gradle-baseline#1837

4.25.0

Type Description Link
Feature Scalastyle is not maintained anymore and config we had wasn't that useful anyway. palantir/gradle-baseline#1912

4.26.0

Type Description Link
Improvement CheckExplicitSourceCompatibilityTask accepts toolchains as a mechanism to specify a release version palantir/gradle-baseline#1915

4.27.0

Type Description Link
Fix Ensure nebula-test 10/Spock 2 test run by automatically setting useJUnitPlatform() on test tasks. Add extra verification to the checkJUnitDependencies task for nebula-test 10/Spock 2 tests. palantir/gradle-baseline#1929

4.28.0

Type Description Link
Fix Fix MalformedInputException when checking non-utf8 files for correct junit dependencies. palantir/gradle-baseline#1932

4.29.0

Type Description Link
Fix Fix jdk17 incompatibility of ClassInitializationDeadlock palantir/gradle-baseline#1936

4.30.0

Automated release, no documented user facing changes

4.31.0-rc1

Type Description Link
Improvement BaselineJavaVersions consistent JDK control via gradle toolchains on an opt-in basis palantir/gradle-baseline#1920

4.31.0

Type Description Link
Improvement BaselineJavaVersions consistent JDK control via gradle toolchains on an opt-in basis palantir/gradle-baseline#1920

4.32.0

Type Description Link
Feature Zero Warmup Guava RateLimiter palantir/gradle-baseline#1950

4.33.0

Type Description Link
Improvement Plumb Add-Exports through to execution and annotation processing sites palantir/gradle-baseline#1944

4.34.0

Type Description Link
Fix Module export discovery handles jars with no manifest gracefully palantir/gradle-baseline#1954

4.35.0

Type Description Link
Improvement Support --add-opens in addition to --add-exports palantir/gradle-baseline#1956

4.36.0

Type Description Link
Fix Revert "Feature: Zero Warmup Guava RateLimiter (#1950)" which results in no rate limiting palantir/gradle-baseline#1957

4.37.0

Type Description Link
Fix Replace out instances of RateLimiter.create(rate, Duration.ZERO) which do not rate limit at all. See guava#2730 palantir/gradle-baseline#1958

4.38.0

Type Description Link
Improvement Improve Zero Warmup Rate Limiter to Catch Int Literals palantir/gradle-baseline#1960

4.39.0

Type Description Link
Fix The com.palantir.baseline-java-versions plugin requires gradle 7 and fails eagerly on older versions. Previously it would cause non-obvious failures later depending on task execution. palantir/gradle-baseline#1965
Feature Add Error Prone check to prefer hasNoArgs on service exception asserts and loggable exception asserts. palantir/gradle-baseline#1966

4.40.0

Type Description Link
Improvement Automatically fix AssertNoArgs palantir/gradle-baseline#1967

4.41.0

Type Description Link
Fix Stop idea recommending autocompletions from org.junit.jupiter.params.shadow palantir/gradle-baseline#1972

4.42.0

Type Description Link
Fix Fix errors setting test framework due to finalized property palantir/gradle-baseline#1974

4.43.0

Type Description Link
Fix BaselineJavaVersions handles the lazy 'nebula.maven-publish' plugin palantir/gradle-baseline#1986

4.44.0

Type Description Link
Fix baseline-error-prone supports java8 palantir/gradle-baseline#1992

4.45.0

Automated release, no documented user facing changes

4.46.0

Automated release, no documented user facing changes

4.47.0

Type Description Link
Fix Gradle plugins don't enforce PublicConstructorForAbstractClass which can break gradle injection palantir/gradle-baseline#2009

4.48.0

Type Description Link
Improvement Disable errorprone in intellij palantir/gradle-baseline#2010

4.49.0

Type Description Link
Improvement Allow projects to override library auto-detection palantir/gradle-baseline#2011

4.50.0

Type Description Link
Improvement Improve coordination between java-versions and idea ipr allowing project iprs to be successfully imported palantir/gradle-baseline#2012

4.51.0

Type Description Link
Fix Idea integration results in correct copyright xml files without duplicate entries palantir/gradle-baseline#2016

4.52.0

Type Description Link
Improvement It's no longer necessary to import an ipr before using gradle integration, code styles are imported correctly out of the box. palantir/gradle-baseline#2015

4.53.0

No documented user facing changes

4.54.0

Type Description Link
Improvement If a subclass of FilterOutputStream implements void write(int), they
should also override void write(byte[], int, int), otherwise the
performance of the stream is likely to be slow.

See https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/FilterOutputStream.html#write(byte%5B%5D,int,int)
> Subclasses of FilterOutputStream should provide a more efficient implementation of this method.

Similar in concept to https://errorprone.info/bugpattern/InputStreamSlowMultibyteRead
palantir/gradle-baseline#2024

4.55.0

Type Description Link
Improvement Enable FilterOutputStreamSlowMultibyteWrite at warning level to identify
inefficient FilterOuputStream implementations.

Subclasses of FilterOutputStream should provide a more efficient
implementation of write(byte[], int, int) to avoid slow writes.
palantir/gradle-baseline#2026

4.56.0

Type Description Link
Improvement Add BugCheckerAutoService

Concrete BugChecker implementations should be annotated
@AutoService(BugChecker.class) for auto registration with error-prone.
palantir/gradle-baseline#2028

4.57.0

Type Description Link
Improvement Upon missing jupiter on classpath, suggest putting it on runtime rather than implementation to avoid making checkUnusedDependenciesTest fail in return. palantir/gradle-baseline#2021
Fix Refine FilterOutputStreamSlowMultibyteWrite findings

Avoid warning FilterOutputStreamSlowMultibyteWrite when intermediate
type overrides both single and multibyte write methods.
palantir/gradle-baseline#2031
Improvement Ban AfterburnerModule to reduce JDK-17 risk palantir/gradle-baseline#2032

4.58.0

Type Description Link
Fix DangerousIdentityKey now allows Class to be used as a map or set key. palantir/gradle-baseline#2036

4.59.0

No documented user facing changes

4.60.0

Automated release, no documented user facing changes

4.61.0

Automated release, no documented user facing changes

4.62.0

Automated release, no documented user facing changes

4.63.0

Type Description Link
Improvement Prefer project modules on dependency resolution per default palantir/gradle-baseline#2056

4.64.0

Type Description Link
Improvement Use lazy task initialization for the compileRefaster task for improved performance when it is not needed. palantir/gradle-baseline#2052

4.65.0

Type Description Link
Fix Handle java 17 removal of :com/sun/tools/javac/util/Filter in DangerousIdentityKey palantir/gradle-baseline#2058

4.66.0

Type Description Link
Feature Error Prone can be explicitly enabled using the com.palantir.baseline-error-prone.disable=false Gradle property. palantir/gradle-baseline#2042

4.67.0

Automated release, no documented user facing changes

4.68.0

Type Description Link
Improvement Remove support for running errorprone witth java 8 target compatibility palantir/gradle-baseline#2061
Improvement StrictUnusedVariable no longer flags parameters of default methods. palantir/gradle-baseline#2070

4.69.0

Type Description Link
Improvement enable annotation processing in eclipse by default palantir/gradle-baseline#2076

4.70.0

Automated release, no documented user facing changes

4.71.0

Automated release, no documented user facing changes

4.72.0

Automated release, no documented user facing changes

4.73.0

Type Description Link
Improvement Validate that jqwik tests are run palantir/gradle-baseline#2099

4.74.0

No documented user facing changes

4.75.0

Type Description Link
Improvement Finalize java-versions extension values on read to prevent changes due to interactions from other plugins palantir/gradle-baseline#2107
Improvement baseline-java-versions uses library presets for projects using shadow-jar to prevent resolution/mutation ordering failures palantir/gradle-baseline#2108

4.76.0

Type Description Link
Improvement Prevent instance methods of auth tokens from getting called in logging args palantir/gradle-baseline#2113

4.77.0

Type Description Link
Fix RawTypes no longer flags implicit raw types from lambdas palantir/gradle-baseline#2119

4.78.0

Type Description Link
Improvement Implement IllegalSafeLoggingArgument check palantir/gradle-baseline#2127

4.79.0

Type Description Link
Improvement suggested fixes for IllegalSafeLoggingArgument check palantir/gradle-baseline#2133

4.80.0

Type Description Link
Improvement Compilation supports add-exports/add-opens with toolchains palantir/gradle-baseline#2136

4.81.0

Type Description Link
Improvement Javadoc tasks supporty BaselineModuleJvmArgs palantir/gradle-baseline#2137

4.82.0

Automated release, no documented user facing changes

4.83.0

Type Description Link
Improvement Fix BaselineModuleJvmArgs without toolchains palantir/gradle-baseline#2148

4.84.0

Type Description Link
Improvement Implement Safety flow checks palantir/gradle-baseline#2143

4.85.0

Type Description Link
Improvement Throwable.getMessage is unsafe by default palantir/gradle-baseline#2151

4.86.0

Type Description Link
Improvement Ban java deserialization palantir/gradle-baseline#2152

4.87.0

Type Description Link
Improvement Array assignment merges safety rather than replacing it palantir/gradle-baseline#2154

4.88.0

Type Description Link
Improvement Fix switch expression handling palantir/gradle-baseline#2157

4.89.0

Type Description Link
Improvement Add known safety-passthrough methods palantir/gradle-baseline#2159

4.90.0

Type Description Link
Improvement Validate annotated variable and field assignment safety palantir/gradle-baseline#2160

4.91.0

Type Description Link
Fix Fix SerializationUtils matcher palantir/gradle-baseline#2164

4.92.0

Type Description Link
Fix Avoid nulls in safety analysis palantir/gradle-baseline#2169

4.93.0

Type Description Link
Improvement prevent using logsafe Args with guava Preconditions palantir/gradle-baseline#2139

4.94.0

Type Description Link
Improvement Compilation uses 'opens' values as 'exports' palantir/gradle-baseline#2167

4.95.0

Type Description Link
Improvement Validate that safety var annotations and type annotations agree palantir/gradle-baseline#2161

4.96.0

Type Description Link
Improvement Support safety passthrough on several streamlike methods palantir/gradle-baseline#2174

4.97.0

Type Description Link
Fix Fix errorprone excluded-path regex on Windows palantir/gradle-baseline#2178

4.98.0

Type Description Link
Improvement Upgrade errorprone to 2.12.1 (from 2.11.0) palantir/gradle-baseline#2181, https://github.com/google/error-prone/releases/tag/v2.12.0, https://github.com/google/error-prone/releases/tag/v2.12.1

4.99.0

Type Description Link
Feature prevent exceptions from being passed into Args palantir/gradle-baseline#2140

4.100.0

Type Description Link
Improvement Lambdas/Anon-classes follow captured local variable safety palantir/gradle-baseline#2177

4.101.0

Type Description Link
Improvement Support safety annotations on type-use e.g. Collection<@Safe String> palantir/gradle-baseline#2187

4.102.0

Type Description Link
Fix Fix the com.palantir.baseline-circleci plugin so that compilation failures are once again parsed as XML and can be surfaced at the top of CircleCI builds. palantir/gradle-baseline#2189

4.103.0

Type Description Link
Fix Fix TypeArgumentHandler NPE on wildcard types palantir/gradle-baseline#2190

4.104.0

Type Description Link
Fix Fix index-out-of-bounds analyzing type parameters on raw types palantir/gradle-baseline#2197

4.105.0

Type Description Link
Improvement Automatically fix upstream LongDoubleConversion palantir/gradle-baseline#2199, https://errorprone.info/bugpattern/LongDoubleConversion

4.106.0

Type Description Link
Improvement Implement RID safety passthrough based on the locator component palantir/gradle-baseline#2202

4.107.0

Type Description Link
Improvement Upgrade error-prone to 2.13.1 (from 2.12.1)

Use non-deprecated isSuppressed methods
palantir/gradle-baseline#2203

4.108.0

Type Description Link
Improvement LoggingDoNotLog check ensures credentials aren't logged in any form palantir/gradle-baseline#2205

4.109.0

Type Description Link
Improvement Add ImmutablesReferenceEquality check that checks for comparison of Immutables values using reference equality. palantir/gradle-baseline#2210

4.110.0

Type Description Link
Fix Include mocktio-errorprone after it has picked up new errorprone palantir/gradle-baseline#2215

4.111.0

Type Description Link
Improvement Rename LogsafeArgument to LogsafeThrowableArgument palantir/gradle-baseline#2216

4.112.0

Type Description Link
Improvement SafeLoggingPropagation error-prone check propages log-safety annotations from getters and superclasses/superinterfaces to the type level palantir/gradle-baseline#2218

4.113.0

Type Description Link
Improvement Streamline Throwable safety handling palantir/gradle-baseline#2224

4.114.0

Type Description Link
Improvement Disable intellij's ClassCanBeRecord inspection palantir/gradle-baseline#2225

4.115.0

Type Description Link
Fix SafeLoggingPropagation doesn't attempt to annotate anonymous classes palantir/gradle-baseline#2227

4.116.0

Automated release, no documented user facing changes

4.117.0

Type Description Link
Improvement Propagate additional safety information in the SafeLoggingPropagation check and automated fixes:
1. Method return statements are analyzed to determine safety of unmarked methods
2. Types are annotated based on the safety of their toString method, which is a reasonable heuristic for value types that may be logged.
palantir/gradle-baseline#2230

4.118.0

Type Description Link
Fix Results of boolean logic are considered safe palantir/gradle-baseline#2232

4.119.0

Type Description Link
Feature Add a configuration point for providing your own JDKs to all java requiring tasks. palantir/gradle-baseline#2193

4.120.0

Type Description Link
Fix Fix intellij gradle integration copyright configuration palantir/gradle-baseline#2234

4.121.0

Type Description Link
Improvement Safety propagation ignores utility methods on immutables definitions palantir/gradle-baseline#2237

4.122.0

Type Description Link
Improvement Automatically fix upstream NarrowCalculation palantir/gradle-baseline#2240

4.123.0

Type Description Link
Improvement Fix safety evaluation requiring lhs of an assignment to be safe unnecessarily palantir/gradle-baseline#2242

4.124.0

Type Description Link
Fix VarUsage failures reference a real tree palantir/gradle-baseline#2244

4.125.0

Type Description Link
Improvement Implement safety tracking through StringBuilder/StringBuffer palantir/gradle-baseline#2245

4.126.0

Type Description Link
Improvement Safety propagation takes immutables redaction into account palantir/gradle-baseline#2251

4.127.0

Type Description Link
Improvement Implement class-level type variable safety validation palantir/gradle-baseline#2254

4.128.0

Type Description Link
Improvement Implement method type argument validation palantir/gradle-baseline#2255

4.129.0

Automated release, no documented user facing changes

4.130.0

Type Description Link
Fix Make interactions with gradle java toolchains more lazy, so StackOverflowErrors do not occur palantir/gradle-baseline#2260

4.131.0

Type Description Link
Fix Stream.collect safety no longer incorrectly includes map collectors palantir/gradle-baseline#2264

4.132.0

Type Description Link
Improvement Safety analysis checks superinterfaces (in addition to superclasses) palantir/gradle-baseline#2267

4.133.0

Type Description Link
Fix More lazily acquire JDK storage locations palantir/gradle-baseline#2263

4.134.0

Type Description Link
Fix Fix concurrency issue in LazilyConfiguredMapping palantir/gradle-baseline#2268

4.135.0

Type Description Link
Improvement Safety analysis detects annotations on superclasses and their interfaces palantir/gradle-baseline#2271

4.136.0

Type Description Link
Fix Use LazilyConfiguredMapping that was extracted out to gradle-utils. palantir/gradle-baseline#2276

4.137.0

Type Description Link
Improvement Immutables redactions may be unsafe (previously forced do-not-log) palantir/gradle-baseline#2277

4.138.0

Type Description Link
Fix Removed built in support for eclipse annotation processor configurations - please use gradle-processors instead if using eclipse. palantir/gradle-baseline#2279

4.139.0

Type Description Link
Fix Rerelease due to failed publish palantir/gradle-baseline#2280

4.140.0

Type Description Link
Improvement Update AvoidNewHashMapInt to warn on uses of new HashSet(int). palantir/gradle-baseline#2292

4.141.0

Type Description Link
Improvement Trust type safety on cast results, based on validation that occurred when the type was created. palantir/gradle-baseline#2289

4.142.0

Type Description Link
Fix Fix class hierarchy safe-logging error message agreement palantir/gradle-baseline#2295

4.143.0

Type Description Link
Improvement Avoid configuring many gradle tasks palantir/gradle-baseline#2290

4.144.0

Type Description Link
Improvement Avoid creating and configuring gradle tasks palantir/gradle-baseline#2299

4.145.0

Type Description Link
Improvement The mockito error-prone library is no longer included by default palantir/gradle-baseline#2302

4.146.0

Automated release, no documented user facing changes

4.147.0

Automated release, no documented user facing changes

4.148.0

Type Description Link
Fix Handle safety flow through instanceof pattern matching palantir/gradle-baseline#2331

4.149.0

Type Description Link
Feature Users of the com.palantir.baseline-java-versions plugin can now set javaVersions { distributionTarget = '17_PREVIEW' } to opt-in to Java's --enable-preview flag at compile time. palantir/gradle-baseline#2322

4.150.0

Type Description Link
Fix Fix the BaselineModuleJvmArgs plugin to once again work as intended in multi-project builds palantir/gradle-baseline#2336

4.151.0

Type Description Link
Fix javadoc tasks are now properly configured when --enable-preview is used palantir/gradle-baseline#2338

4.152.0

Type Description Link
Feature Add DefaultLocale check

Related to google/error-prone issues 632

Adds a DefaultLocale check that replaces uses of String.toLowerCase() and String.toUpperCase() with the overloads that take a Locale, using Locale.ROOT.
palantir/gradle-baseline#2343

4.153.0

Type Description Link
Fix Set the java launcher for Checkstyle tasks, too palantir/gradle-baseline#2351

4.154.0

Type Description Link
Improvement The JUnits reports plugin is no longer applied by default. Test reports now use the standard output locations from Gradle conventions. palantir/gradle-baseline#2355

4.155.0

Automated release, no documented user facing changes

4.156.0

Type Description Link
Fix Fix BaselineJavaVersion checkstyle configuration on gradle < 7.5 palantir/gradle-baseline#2360

4.157.0

Type Description Link
Improvement Make task initialization lazier in the junit-reports plugin. palantir/gradle-baseline#2364

4.158.0

Type Description Link
Fix Make the checkUnusedDependencies tasks added by baseline-exact-dependencies compatible with Gradle's configure-on-demand feature. palantir/gradle-baseline#2363

4.159.0

Type Description Link
Improvement Add an errorprone check and typed annotation for Javax -> Jakarta

There is a certain class of very problematic cases whereby if you have
a method such as the following:

<br>myJerseyResource.register(/* this is of type Object */ object);<br>

Then if you supply a resource which includes any javax.ws.rs
annotations on it, then those will not be registered if your Jersey
version is 3.x or later (and you'll only find this out at runtime).

The opposite is also true if you try to supply resources annotated
with jakarta.ws.rs to Jersey 2.x.

To address this, this commit attempts to add an errorprone check
which lets implementors add an annotation @ForbidJavax to methods
which have been knowingly migrated to Jakarta EE9 and cannot
accept legacy javax types.
palantir/gradle-baseline#2366

4.160.0

Type Description Link
Fix Workaround to IDEA-301084 palantir/gradle-baseline#2368

4.161.0

Type Description Link
Fix Reverts a change introduced to baseline-java-version 4.160.0, which was causing failures on multi-project builds. palantir/gradle-baseline#2369

4.162.0

Type Description Link
Feature java versions preview enhancements

+ support setting preview on a project-by-project basis.
+ Fixes #2340
+ fails more elegantly if javaVersions is set on not-the-root.
palantir/gradle-baseline#2376

4.163.0

Type Description Link
Fix Fix interface visibility bug palantir/gradle-baseline#2379

4.164.0

Type Description Link
Improvement The CyclomaticComplexity check is now configured with switchBlockAsSingleDecisionPoint. palantir/gradle-baseline#2383

4.165.0

Type Description Link
Improvement Implement a simple nullaway wrapper plugin com.palantir.baseline-null-away which registers the NullAway check at WARNING. Projects which fail on warnings will require this to pass pre-merge. palantir/gradle-baseline#2382

4.166.0

Automated release, no documented user facing changes

4.167.0

Automated release, no documented user facing changes

4.168.0

Type Description Link
Fix Roll back nullaway+checkerframework for jdk15 support palantir/gradle-baseline#2389

4.169.0

Type Description Link
Improvement Exclude Spark UnusedStubClass from class uniqueness palantir/gradle-baseline#2390

4.170.0

Type Description Link
Fix lazily configure NullAway dependencies to successfully apply NullAway without ordering issues palantir/gradle-baseline#2393

4.171.0

Type Description Link
Fix com.palantir.baseline-null-away no longer enables the CheckOptionalEmptiness checker by default. palantir/gradle-baseline#2396

4.172.0

Automated release, no documented user facing changes

4.173.0

Type Description Link
Fix Nullaway is not enabled in test sources palantir/gradle-baseline#2402

4.174.0

Type Description Link
Improvement Allow projects which don't use jdk-15 to resolve latest nullaway palantir/gradle-baseline#2400

4.175.0

Type Description Link
Fix Fix GitHub issues navigation Idea config palantir/gradle-baseline#2403

4.176.0

Type Description Link
Improvement Error-prone is enabled in idea for uniformity with CLI compilation palantir/gradle-baseline#2405

4.177.0

Type Description Link
Fix baseline-immutables adds required exports to the java compiler for compatibility with jdk-17+ palantir/gradle-baseline#2406

4.178.0

Type Description Link
Fix Refaster compilation uses exports matching error-prone compilation palantir/gradle-baseline#2407

4.179.0

Type Description Link
Improvement Implement ImmutableMapDuplicateKeyStrategy for obvious map construction. By default we suggest replacing build() with the more descriptive buildOrThrow(), however buildKeepingLast() may be the original intent in some cases. palantir/gradle-baseline#2416

4.180.0

Type Description Link
Improvement exempt @link javadoc comment from LineLength check palantir/gradle-baseline#2414

4.181.0

Type Description Link
Fix Fix ConcurrentModificationExceptions thrown from BaselineNullAway palantir/gradle-baseline#2427

4.182.0

Type Description Link
Improvement Upgrade error-prone to 2.16, removing support for compilation with a jdk-15 target palantir/gradle-baseline#2432

4.183.0

Automated release, no documented user facing changes

4.184.0

Type Description Link
Fix Bring IntelliJ in sync with ErrorProne on bad inner static class names palantir/gradle-baseline#2447
Fix Suppress the JavaxInjectOnAbstractMethod check for projects that apply java-gradle-plugin. palantir/gradle-baseline#2460

To enable or disable this check, please contact the maintainers of Excavator.

@policy-bot policy-bot bot requested a review from tpetracca November 16, 2021 22:26
@svc-excavator-bot svc-excavator-bot force-pushed the roomba/latest-baseline-oss branch 4 times, most recently from 5f5d374 to 4c32cae Compare November 30, 2021 17:26
@svc-excavator-bot svc-excavator-bot force-pushed the roomba/latest-baseline-oss branch 2 times, most recently from a01382a to da461cc Compare December 8, 2021 01:08
@svc-excavator-bot svc-excavator-bot force-pushed the roomba/latest-baseline-oss branch 2 times, most recently from 37342bf to 084c36c Compare December 11, 2021 20:09
@policy-bot policy-bot bot requested a review from CRogers December 18, 2021 21:43
@svc-excavator-bot svc-excavator-bot force-pushed the roomba/latest-baseline-oss branch 4 times, most recently from 29b2df9 to 92f2ac9 Compare January 8, 2022 01:09
@svc-excavator-bot svc-excavator-bot force-pushed the roomba/latest-baseline-oss branch 5 times, most recently from 0043b16 to 1608bb3 Compare January 18, 2022 14:36
@svc-excavator-bot svc-excavator-bot force-pushed the roomba/latest-baseline-oss branch 5 times, most recently from 789cf0e to 0e41410 Compare January 25, 2022 16:17
@svc-excavator-bot svc-excavator-bot force-pushed the roomba/latest-baseline-oss branch 2 times, most recently from 85a28f4 to 3de3830 Compare February 1, 2022 08:17
@svc-excavator-bot svc-excavator-bot force-pushed the roomba/latest-baseline-oss branch 7 times, most recently from 78ac3a7 to 0f7911b Compare September 16, 2022 16:01
@svc-excavator-bot svc-excavator-bot force-pushed the roomba/latest-baseline-oss branch 3 times, most recently from 31ba78a to 868897d Compare September 20, 2022 23:57
@svc-excavator-bot svc-excavator-bot force-pushed the roomba/latest-baseline-oss branch 4 times, most recently from 877adc7 to 72e7c52 Compare October 3, 2022 19:54
@svc-excavator-bot svc-excavator-bot force-pushed the roomba/latest-baseline-oss branch 2 times, most recently from 3519807 to f2d0ae8 Compare October 20, 2022 17:11
@svc-excavator-bot svc-excavator-bot force-pushed the roomba/latest-baseline-oss branch 2 times, most recently from 8cf7bed to ee8b5f7 Compare October 31, 2022 17:55
@svc-excavator-bot svc-excavator-bot force-pushed the roomba/latest-baseline-oss branch 2 times, most recently from 1555f82 to 6694b18 Compare December 7, 2022 16:09
@bmarcaur
Copy link
Member

bmarcaur commented Apr 9, 2024

Fixed by #614

@bmarcaur bmarcaur closed this Apr 9, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants