Title: Bump org.projectlombok:lombok from 1.18.22 to 1.18.38 by dependabot[bot] · Pull Request #2210 · docker-java/docker-java · GitHub
Open Graph Title: Bump org.projectlombok:lombok from 1.18.22 to 1.18.38 by dependabot[bot] · Pull Request #2210 · docker-java/docker-java
X Title: Bump org.projectlombok:lombok from 1.18.22 to 1.18.38 by dependabot[bot] · Pull Request #2210 · docker-java/docker-java
Description: Bumps org.projectlombok:lombok from 1.18.22 to 1.18.30.
Changelog
Sourced from org.projectlombok:lombok's changelog.
v1.18.30 (September 20th, 2023)
PLATFORM: Initial JDK21 support added. [Issue #3393](projectlombok/lombok#3393).
BUGFIX: Any @Helper class directly in a method (and not nested more deeply) wouldn't work. [Issue #3370](projectlombok/lombok#3370).
BUGFIX: If using the module system and lombok is on the runtime classpath (shouldn't be, but happens), you'd get a split package error: Package org.objectweb.asm in both module lombok and module org.objectweb.asm. [Issue #3474](projectlombok/lombok#3474).
BUGFIX: Lombok wasn't properly copying the annotations it should be copying when generating methods in records. [Issue #3315](projectlombok/lombok#3315).
BUGFIX: Delomboking anything with @lombok.Singular in it wouldn't remove that annotation. [Issue #1377](projectlombok/lombok#1377).
BUGFIX: Calling extension methods such that automatic widening is applied (i.e. calling void ext(long arg) with an int) would fail at runtime. [Issue #3463](projectlombok/lombok#3463).
BUGFIX: Extension methods can now be used in records. [Issue #3450](projectlombok/lombok#3450).
BUGFIX: @Getter(lazy=true) with complicated initialization expressions would fail on javac. [Issue #3314](projectlombok/lombok#3314).
BUGFIX: Using the maven surefire plugin with a module-info.java based project would fail with a SurefireBooterForkException. [Issue #3474](projectlombok/lombok#3474).
v1.18.28 (May 24th, 2023)
PLATFORM: JDK20 support added. [Issue #3353](projectlombok/lombok#3353).
BUGFIX: Eclipse 4.27 and VSCode 1.14.0 would ignore lombok.config. [Issue #3332](projectlombok/lombok#3332).
BUGFIX: @NonNull on a primitive array field on a record wouldn't work. [Issue #3366](projectlombok/lombok#3366).
FEATURE: Jakarta has some non-null annotations (such as jakarta.annotation.Nonnull) which we now support. [Issue #3346](projectlombok/lombok#3346).
BUGFIX: Eclipse didn't find usages of extension methods (@ExtensionMethod) in "find references" nor rename-refactoring. [Issue #3373](projectlombok/lombok#3373)
v1.18.26 (Feb 3rd, 2023)
PLATFORM: JDK19 support added. [Issue #3264](projectlombok/lombok#3264).
BUGFIX: Using the refactor script: "Rename field" in a @(Super)Builder-marked file in eclipse or VSCode would cause issues. [Issue #3181] (projectlombok/lombok#3181).
BUGFIX: Using val together with any call to a method that explicitly resolves to a default impl in an interface didn't work in javac. [Issue #3242](projectlombok/lombok#3242).
v1.18.24 (April 18th, 2022)
PLATFORM: JDK18 support added. [Issue #3129](projectlombok/lombok#3129).
PLATFORM: Using ecj and maven? There's now a command line option to integrate lombok into your build chain. [Issue #3143](projectlombok/lombok#3143).
FEATURE: @ToString has an annotation parameter called onlyExplicitlyIncluded. There's now a config key lombok.toString.onlyExplicitlyIncluded to set this property as well. [Issue #2849](projectlombok/lombok#2849).
FEATURE: Turning a field named uShape into a getter is tricky: getUShape or getuShape? The community is split on which style to use. Lombok does getUShape, but if you prefer the getuShape style, add to lombok.config: lombok.accessors.capitalization = beanspec. [Issue #2693](projectlombok/lombok#2693) [Pull Request #2996](projectlombok/lombok#2996). Thanks @YonathanSherwin!
FEATURE: You can now use @Accessors(makeFinal = true) to make final getters, setters, and with-ers. [Issue #1456](projectlombok/lombok#1456).
BUGFIX: Various save actions and refactor scripts in eclipse work better. [Issue #2995](projectlombok/lombok#2995) [Issue #1309](projectlombok/lombok#1309) [Issue #2985](projectlombok/lombok#2985) [Issue #2509](projectlombok/lombok#2509).
BUGFIX: Eclipse projects using the jasperreports-plugin will now compile. [Issue #1036](projectlombok/lombok#1036).
BUGFIX: inner classes in @UtilityClass classes were broken in JDK9+. [Issue #3097](projectlombok/lombok#3097).
BUGFIX: Delomboking code with @Builder.Default in it would generate different code vs lombok itself. [Issue #3053](projectlombok/lombok#3053).
BUGFIX: Combining @NonNullByDefault and lombok.addNullAnnotations would generate two @Nullable annotations and thus generate a compiler error. [Issue #3120](projectlombok/lombok#3120). Thanks @JohnPaulTaylorII!
BUGFIX: Null analysis in eclipse was broken for incremental builds. [Issue #3133](projectlombok/lombok#3133).
BUGFIX VerifyError would show up in the latest eclipse release when using various refactor scripts. [Issue #3134](projectlombok/lombok#3134).
BUGFIX: The various @Log annotations can now be placed on inner enums and records. [Issue #2990](projectlombok/lombok#2990).
SECURITY: A widely reported security issue with log4j2 (CVE-2021-44228) has absolutely no effect on either lombok itself nor does usage of lombok on its own, or even the usage of lombok's @Log4j2, cause any issues whatsoever: You have to ship your own log4j2 dependency in your app - update that to 2.17 or otherwise mitigate this issue (see the CVE page). To avoid unnecessary warnings from dependency checkers, our dep on log4j2, which is used solely for testing, isn't shipped by us, and cannot be exploited in any way, has been updated to 2.17.1. [Issue #3063](projectlombok/lombok#3063)
IMPROBABLE BREAKING CHANGE: Lombok now understands a few more annotations that imply "this field should not ever contain a null reference". Lombok will thus copy some of these new annotations e.g. to generated getters and the like. [Pull Request #2904](projectlombok/lombok#2904)
Commits
b118bea [release] pre-release version bump
7cbb5e9 [fixes #3182] [docs] Add a note about wonky equality definitions in the core ...
9bcaaaf [fixes #3474] lombok.jar now contains zero paths that could clash with other ...
9ef9b58 Add JDK 21 to test workflow
9f350ac Merge pull request #3503 from Rawi01/javac6-singular-test
e226cd3 Exclude failing test for javac < 8
67cd7a6 Merge pull request #3494 from Rawi01/enum-getter
6623e12 Merge pull request #3486 from Rawi01/superbuilder-javadoc
28e5ddb #3314 Add line to changelog
60ed4ad Merge pull request #3482 from Rawi01/getter-lazy
Additional commits viewable in compare view
You can trigger a rebase of this PR by commenting @dependabot rebase.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebase will rebase this PR
@dependabot recreate will recreate this PR, overwriting any edits that have been made to it
@dependabot merge will merge this PR after your CI passes on it
@dependabot squash and merge will squash and merge this PR after your CI passes on it
@dependabot cancel merge will cancel a previously requested merge and block automerging
@dependabot reopen will reopen this PR if it is closed
@dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
@dependabot show
Open Graph Description: Bumps org.projectlombok:lombok from 1.18.22 to 1.18.30. Changelog Sourced from org.projectlombok:lombok's changelog. v1.18.30 (September 20th, 2023) PLATFORM: Initial JDK21 support added. [I...
X Description: Bumps org.projectlombok:lombok from 1.18.22 to 1.18.30. Changelog Sourced from org.projectlombok:lombok's changelog. v1.18.30 (September 20th, 2023) PLATFORM: Initial JDK21 support added...
Opengraph URL: https://github.com/docker-java/docker-java/pull/2210
X: @github
Domain: github.com
| route-pattern | /:user_id/:repository/pull/:id/files(.:format) |
| route-controller | pull_requests |
| route-action | files |
| fetch-nonce | v2:c8536a62-cd3c-5ff2-db02-7a8643e8b7c4 |
| current-catalog-service-hash | ae870bc5e265a340912cde392f23dad3671a0a881730ffdadd82f2f57d81641b |
| request-id | 8DDC:3DE401:1CABE9:249904:6972FB13 |
| html-safe-nonce | 036698dcf202e49ad14c0027cae5e393554109f158ce2315ed5ce8e56c2a81b4 |
| visitor-payload | eyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiI4RERDOjNERTQwMToxQ0FCRTk6MjQ5OTA0OjY5NzJGQjEzIiwidmlzaXRvcl9pZCI6IjI2NzQwNTEyMTQzOTg5MTMyOTkiLCJyZWdpb25fZWRnZSI6ImlhZCIsInJlZ2lvbl9yZW5kZXIiOiJpYWQifQ== |
| visitor-hmac | 778965cf83de6567a59a50a19a99a85aecdb785e8694079978d44aa26852b8ff |
| hovercard-subject-tag | pull_request:1528871164 |
| github-keyboard-shortcuts | repository,pull-request-list,pull-request-conversation,pull-request-files-changed,copilot |
| google-site-verification | Apib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I |
| octolytics-url | https://collector.github.com/github/collect |
| analytics-location | / |
| fb:app_id | 1401488693436528 |
| apple-itunes-app | app-id=1477376905, app-argument=https://github.com/docker-java/docker-java/pull/2210/files |
| twitter:image | https://avatars.githubusercontent.com/in/29110?s=400&v=4 |
| twitter:card | summary_large_image |
| og:image | https://avatars.githubusercontent.com/in/29110?s=400&v=4 |
| og:image:alt | Bumps org.projectlombok:lombok from 1.18.22 to 1.18.30. Changelog Sourced from org.projectlombok:lombok's changelog. v1.18.30 (September 20th, 2023) PLATFORM: Initial JDK21 support added. [I... |
| og:site_name | GitHub |
| og:type | object |
| hostname | github.com |
| expected-hostname | github.com |
| None | 9946c12a4847916f32068429cb2ad536f7d8450fc8b70730d0e9aa7861057db8 |
| turbo-cache-control | no-preview |
| diff-view | unified |
| go-import | github.com/docker-java/docker-java git https://github.com/docker-java/docker-java.git |
| octolytics-dimension-user_id | 7772003 |
| octolytics-dimension-user_login | docker-java |
| octolytics-dimension-repository_id | 20415251 |
| octolytics-dimension-repository_nwo | docker-java/docker-java |
| octolytics-dimension-repository_public | true |
| octolytics-dimension-repository_is_fork | false |
| octolytics-dimension-repository_network_root_id | 20415251 |
| octolytics-dimension-repository_network_root_nwo | docker-java/docker-java |
| turbo-body-classes | logged-out env-production page-responsive full-width |
| disable-turbo | true |
| browser-stats-url | https://api.github.com/_private/browser/stats |
| browser-errors-url | https://api.github.com/_private/browser/errors |
| release | f92f1208f12997e73ccb28d2f389b2adab0c98a3 |
| ui-target | full |
| theme-color | #1e2327 |
| color-scheme | light dark |
Links:
Viewport: width=device-width