| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
Renovate Ignore NotificationBecause 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. |
Sorry, something went wrong.
| Back | FazBrowse Home | New Git URL |
This PR contains the following updates:
⚠ 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
v2.35.0
Compare Source
Automated release, no documented user facing changes
v2.34.0
Compare Source
v2.33.0
Compare Source
Automated release, no documented user facing changes
v2.32.0
Compare Source
v2.31.0
Compare Source
v2.30.0
Compare Source
No documented user facing changes
v2.29.0
Compare Source
v2.28.0
Compare Source
v2.27.0
Compare Source
v2.26.0
Compare Source
v2.25.0
Compare Source
v2.24.0
Compare Source
v2.23.0
Compare Source
v2.22.0
Compare Source
## 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.
v2.21.0
Compare Source
## 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
v2.20.0
Compare Source
Automated release, no documented user facing changes
v2.19.0
Compare Source
v2.18.0
Compare Source
v2.17.0
Compare Source
v2.16.0
Compare Source
v2.15.0
Compare Source
Automated release, no documented user facing changes
v2.14.0
Compare Source
v2.13.0
Compare Source
v2.12.0
Compare Source
v2.11.0
Compare Source
v2.10.0
Compare Source
v2.9.0
Compare Source
v2.8.0
Compare Source
v2.7.0
Compare Source
v2.6.0
Compare Source
v2.5.0
Compare Source
v2.4.0
Compare Source
v2.3.0
Compare Source
v2.2.0
Compare Source
v2.1.0
Compare Source
v2.0.1
Compare Source
v2.0.0
Compare Source
* 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.
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.
This PR has been generated by Mend Renovate. View repository job log here.