chore(deps): Update dependency com.palantir.baseline:gradle-baseline-java to v6 - autoclosed #33
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
5.37.0
->6.4.0
Release Notes
palantir/gradle-baseline (com.palantir.baseline:gradle-baseline-java)
v6.4.0
Compare Source
💡 Improvements
v6.3.0
Compare Source
🐛 Fixes
v6.2.0
Compare Source
✨ Features
v6.1.0
Compare Source
💡 Improvements
If one has a
Stream<Optional<T>> stream
of sizeN
and doesstream.flatMap(Optional::stream)
, you’ll end up allocatingN
extra streams — one for eachOptional
input element. WhenN
is large, those allocations can cause extra GC cycles and pauses if allocation rate is high enough leading to issues with latency, throughput, and allocation sensitive code paths.Stream.filter(Optional::isPresent).map(Optional::get)
is more efficient thanStream.flatMap(Optional::stream)
as it does not allocate a newStream
for every element in the stream. (#2946)v6.0.0
Compare Source
💥 Breaks
v5.72.0
Compare Source
No documented user-facing changes
v5.71.0
Compare Source
💡 Improvements
v5.70.0
Compare Source
🐛 Fixes
💡 Improvements
InjectOnConstructorOfAbstractClass
errorprone for gradle plugin projects (#2913)v5.69.0
Compare Source
🐛 Fixes
IllegalSafeLoggingArgument
when usingMultimap
collectors. (#2891)v5.68.0
Compare Source
🐛 Fixes
checkUnusedDependencies
for multi-source projects (#2883)v5.67.0
Compare Source
💡 Improvements
v5.66.0
Compare Source
No documented user-facing changes
v5.65.0
Compare Source
🐛 Fixes
v5.64.0
Compare Source
No documented user-facing changes
v5.63.0
Compare Source
Automated release, no documented user facing changes
v5.62.0
Compare Source
No documented user facing changes
v5.61.0
Compare Source
Automated release, no documented user facing changes
v5.60.0
Compare Source
v5.59.0
Compare Source
v5.58.0
Compare Source
v5.57.0
Compare Source
Automated release, no documented user facing changes
v5.56.0
Compare Source
Automated release, no documented user facing changes
v5.55.0
Compare Source
Automated release, no documented user facing changes
v5.54.0
Compare Source
v5.53.0
Compare Source
v5.52.0
Compare Source
checkClasspathCompatible
v5.51.0
Compare Source
Automated release, no documented user facing changes
v5.50.0
Compare Source
v5.49.0
Compare Source
Automated release, no documented user facing changes
v5.48.0
Compare Source
checkUnusedDependencies
. This allowscheckUnusedDependencies
to be used with Gradle test fixtures even when the test fixtures are not used by the tests.v5.47.0
Compare Source
v5.46.0
Compare Source
Automated release, no documented user facing changes
v5.45.0
Compare Source
v5.44.0
Compare Source
Automated release, no documented user facing changes
v5.43.0
Compare Source
v5.42.0
Compare Source
v5.41.0
Compare Source
OptionalOrElseGetValue
.OptionalOrElseGetValue
no longer allows compile-time constants that are not literals or identifiers.v5.40.0
Compare Source
v5.39.0
Compare Source
com.palantir.external-publish-jar
is applied, the module should be considered a libraryv5.38.0
Compare Source
org.immutables:value::annotations
when deciding to add the annotation processor arg required by immutables to run incrementally.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 was generated by Mend Renovate. View the repository job log.