Skip to content

Releases: palantir/gradle-baseline

6.1.0

09 Nov 01:52
6.1.0
5c0aeba
Compare
Choose a tag to compare

💡 Improvements

  • If one has a Stream<Optional<T>> stream of size N and does stream.flatMap(Optional::stream), you’ll end up allocating N extra streams — one for each Optional input element. When N 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 than Stream.flatMap(Optional::stream) as it does not allocate a new Stream for every element in the stream. (#2946)

6.0.0

04 Nov 16:58
6.0.0
4d8a0af
Compare
Choose a tag to compare

💥 Breaks

  • All modules now require Java 17. (#2898)

5.72.0

18 Oct 20:13
5.72.0
5228d66
Compare
Choose a tag to compare

No documented user-facing changes

5.71.0

18 Oct 13:53
5.71.0
c05f82b
Compare
Choose a tag to compare

💡 Improvements

  • Fix slow compilation for large pattern matching switch (#2851)

5.70.0

14 Oct 15:48
5.70.0
59e38c9
Compare
Choose a tag to compare

🐛 Fixes

  • migrate to newer plugin publish format (#2903)

💡 Improvements

  • Disable the InjectOnConstructorOfAbstractClass errorprone for gradle plugin projects (#2913)

5.69.0

27 Sep 00:27
5.69.0
22c4588
Compare
Choose a tag to compare

🐛 Fixes

  • Eliminate false positives produces by IllegalSafeLoggingArgument when using Multimap collectors. (#2891)

5.68.0

20 Sep 13:11
5.68.0
53927d8
Compare
Choose a tag to compare

🐛 Fixes

  • Fix checkUnusedDependencies for multi-source projects (#2883)

5.67.0

18 Sep 13:09
5.67.0
81084e5
Compare
Choose a tag to compare

💡 Improvements

  • disable PreferSafeLogger and StrictUnusedVariable for intellij (#2878)

5.66.0

11 Sep 20:48
5.66.0
1de8b35
Compare
Choose a tag to compare

No documented user-facing changes

5.65.0

09 Sep 16:13
5.65.0
a469795
Compare
Choose a tag to compare

🐛 Fixes

  • Preserve "Can Resolve" Settings When Cloning Implementation (#2860)