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 #1692

Merged
merged 4 commits into from
Apr 7, 2023

Conversation

svc-excavator-bot
Copy link
Collaborator

@svc-excavator-bot svc-excavator-bot commented Apr 5, 2023

excavator is a bot for automating changes across repositories.

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

Release Notes

5.4.0

Type Description Link
Feature Add check: Use InvocationTargetException.getCause instead of getTargetException. palantir/gradle-baseline#2541

5.5.0

Type Description Link
Fix No longer suggest the "Save Actions" IntelliJ plugin which does not work in IntelliJ 2023.1 for use with Palantir Java Format. Instead, Palantir Java Format will support the IntelliJ native "Actions on save" reformat capability in a future release. palantir/gradle-baseline#2547

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

@@ -140,7 +141,7 @@ public void run() {
try {
task.run();
} finally {
duration.update(System.nanoTime() - startNanos, TimeUnit.NANOSECONDS);
duration.update(Duration.ofNanos(System.nanoTime() - startNanos));
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't think we want this allocation

@@ -175,7 +176,7 @@ public T call() throws Exception {
try {
return task.call();
} finally {
duration.update(System.nanoTime() - startNanos, TimeUnit.NANOSECONDS);
duration.update(Duration.ofNanos(System.nanoTime() - startNanos));
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same, should suppress to avoid allocation

@bulldozer-bot bulldozer-bot bot merged commit b757242 into develop Apr 7, 2023
@bulldozer-bot bulldozer-bot bot deleted the roomba/latest-baseline-oss branch April 7, 2023 03:03
@svc-autorelease
Copy link
Collaborator

Released 0.65.0

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

3 participants