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

fix(deps): update dependency com.palantir.javaformat:palantir-java-format to v2 #1836

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Sep 28, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
com.palantir.javaformat:palantir-java-format 1.1.0 -> 2.38.0 age adoption passing confidence

⚠ Dependency Lookup Warnings ⚠

Warnings were logged while processing this repo. Please check the Dependency Dashboard for more information.


Release Notes

palantir/palantir-java-format (com.palantir.javaformat:palantir-java-format)

v2.38.0

Compare Source

Automated release, no documented user facing changes

v2.37.0

Compare Source

Automated release, no documented user facing changes

v2.36.0

Compare Source

Type Description Link
Feature Add option to format javadoc https://github.com/palantir/palantir-java-format/pull/921

v2.35.0

Compare Source

Automated release, no documented user facing changes

v2.34.0

Compare Source

Type Description Link
Fix Ensure imports are optimised on save, as well as formatting. https://github.com/palantir/palantir-java-format/pull/906

v2.33.0

Compare Source

Automated release, no documented user facing changes

v2.32.0

Compare Source

Type Description Link
Fix Update intellij compatibility range in IntelliJ plugin plugin.xml metadata file, but hopefully correctly this time. https://github.com/palantir/palantir-java-format/pull/875

v2.31.0

Compare Source

Type Description Link
Fix Update intellij compatibility range in IntelliJ plugin plugin.xml metadata file. https://github.com/palantir/palantir-java-format/pull/874

v2.30.0

Compare Source

No documented user facing changes

v2.29.0

Compare Source

Type Description Link
Fix Stop using the Save Actions plugin (broken in IntelliJ 2023.1) and use native format on save (requires IntelliJ >=2021.2) https://github.com/palantir/palantir-java-format/pull/862

v2.28.0

Compare Source

Type Description Link
Fix Write configuration to IPR file if it exists, as well as the .idea directory, to avoid errors in legacy projects https://github.com/palantir/palantir-java-format/pull/810

v2.27.0

Compare Source

Type Description Link
Improvement Use bootstrapping formatter starting from Intellij 2022.2 https://github.com/palantir/palantir-java-format/pull/798

v2.26.0

Compare Source

Type Description Link
Improvement Support ea versions of Java https://github.com/palantir/palantir-java-format/pull/784

v2.25.0

Compare Source

Type Description Link
Fix Fix problems on windows https://github.com/palantir/palantir-java-format/pull/772

v2.24.0

Compare Source

Type Description Link
Improvement Publish gradle plugin to gradle plugin portal https://github.com/palantir/palantir-java-format/pull/731

v2.23.0

Compare Source

Type Description Link
Improvement Fix lambda compactness regression https://github.com/palantir/palantir-java-format/pull/728

v2.22.0

Compare Source

Type Description Link
Fix Only apply line break to lambdas with statements

## Before this PR
Previous PR #​707 was a little aggressive and inserted line breaks for non-statement lambdas.

## After this PR
Only multi-line lambdas cause a line-break in the method chain.
https://github.com/palantir/palantir-java-format/pull/708

v2.21.0

Compare Source

Type Description Link
Improvement Break on lambda argument in method chain

## Before this PR
Chained calls involving lambda expressions don't line break, which conflicts with checkstyle (at least the gradle-baseline checkstyle config)

java<br>class PalantirLambdaInliningPrefersBreak {<br> void foo() {<br> return hello.read(txn -> {<br> doSomeWork();<br> doSomeMoreWork();<br> })<br> .chainedCall(() -> {<br> doSomeWork();<br> });<br> }<br>}<br><br>

## After this PR

java<br>class PalantirLambdaInliningPrefersBreak {<br> void foo() {<br> return hello<br> .read(txn -> {<br> doSomeWork();<br> doSomeMoreWork();<br> })<br> .chainedCall(() -> {<br> doSomeWork();<br> });<br> }<br>}<br>

## Possible downsides?
🤷‍♂️ I've also added a test to show that non-chained lambda calls don't include a line break
https://github.com/palantir/palantir-java-format/pull/707

v2.20.0

Compare Source

Automated release, no documented user facing changes

v2.19.0

Compare Source

Type Description Link
Fix Handle non-sealed modifier https://github.com/palantir/palantir-java-format/pull/671

v2.18.0

Compare Source

Type Description Link
Improvement bump jackson to 2.13.2 https://github.com/palantir/palantir-java-format/pull/676

v2.17.0

Compare Source

Type Description Link
Fix Handle empty implementation version https://github.com/palantir/palantir-java-format/pull/644

v2.16.0

Compare Source

Type Description Link
Fix Fix idea plugin failures due to slf4j references https://github.com/palantir/palantir-java-format/pull/636

v2.15.0

Compare Source

Automated release, no documented user facing changes

v2.14.0

Compare Source

Type Description Link
Fix Handle empty format response replacements https://github.com/palantir/palantir-java-format/pull/622

v2.13.0

Compare Source

Type Description Link
Improvement Fix Idea plugin regression self-bootstrapping for jdk17 https://github.com/palantir/palantir-java-format/pull/620

v2.12.0

Compare Source

Type Description Link
Fix Fix the intellij plugin when the bundled formatter is used https://github.com/palantir/palantir-java-format/pull/619

v2.11.0

Compare Source

Type Description Link
Fix palantir-java-format intellij plugin supports the new PLUGIN_DIR/lib/*.jar structure in addition to the old PLUGIN_DIR/impl/*.jar location https://github.com/palantir/palantir-java-format/pull/617

v2.10.0

Compare Source

Type Description Link
Improvement Cherry-pick upstream changes. https://github.com/palantir/palantir-java-format/pull/615

v2.9.0

Compare Source

Type Description Link
Fix Fix deadlock trying to format large input https://github.com/palantir/palantir-java-format/pull/583

v2.8.0

Compare Source

Type Description Link
Fix Revert using bootstrapping formatter for Java 15 https://github.com/palantir/palantir-java-format/pull/582

v2.7.0

Compare Source

Type Description Link
Improvement Enable bootstrapping formatter on java 15+ https://github.com/palantir/palantir-java-format/pull/580

v2.6.0

Compare Source

Type Description Link
Fix Idea plugin: Fix NumberFormatException: For input string: "15.0.5" https://github.com/palantir/palantir-java-format/pull/575

v2.5.0

Compare Source

Type Description Link
Improvement Add required exports to the jar manifest https://github.com/palantir/palantir-java-format/pull/566

v2.4.0

Compare Source

Type Description Link
Improvement Bootstrap new jvm for running formatter with flags https://github.com/palantir/palantir-java-format/pull/562

v2.3.0

Compare Source

Type Description Link
Improvement Fix java 16 compatibility https://github.com/palantir/palantir-java-format/pull/559

v2.2.0

Compare Source

Type Description Link
Improvement Convert InitialConfigurationComponent from project component to postStartupActivity https://github.com/palantir/palantir-java-format/pull/503

v2.1.0

Compare Source

Type Description Link
Fix Support Intellij 212 API level (2021.2 EAP). The type signature changed from Collection<TextRange> to Collection<? extends TextRange>. This is inspired by same fix in bazel intellij plugin to avoid compiling multiple versions https://github.com/palantir/palantir-java-format/pull/502

v2.0.1

Compare Source

Type Description Link
Fix Fix line breaks in switch expression https://github.com/palantir/palantir-java-format/pull/394

v2.0.0

Compare Source

Type Description Link
Break * Add support for java 14 language features.
* Break: Increase minimum source compatibility from java 8 to java 11.
* To use version 2.x of the formatter, you need to run on java 11 or higher.
* If you require the formatter to run on java 8, you won't be able to upgrade past version 1.x. Note that you can still produce java 8 jars from your repo but need to use at least java 11 to run the formatter.
https://github.com/palantir/palantir-java-format/pull/3655

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.

@nedtwigg
Copy link
Member

dupe of #1822

@nedtwigg nedtwigg closed this Sep 28, 2023
@nedtwigg nedtwigg deleted the renovate/com.palantir.javaformat-palantir-java-format-2.x branch September 28, 2023 17:48
@renovate
Copy link
Contributor Author

renovate bot commented Sep 28, 2023

Renovate Ignore Notification

Because you closed this PR without merging, Renovate will ignore this update. You will not get PRs for any future 2.x releases. But if you manually upgrade to 2.x then Renovate will re-enable minor and patch updates automatically.

If you accidentally closed this PR, or if you changed your mind: rename this PR to get a fresh replacement PR.

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.

1 participant