René's URL Explorer Experiment


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 ignore conditions will show all of the ignore conditions of the specified dependency @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) Note Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

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&#39;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

direct link

Domain: github.com

route-pattern/:user_id/:repository/pull/:id/files(.:format)
route-controllerpull_requests
route-actionfiles
fetch-noncev2:c8536a62-cd3c-5ff2-db02-7a8643e8b7c4
current-catalog-service-hashae870bc5e265a340912cde392f23dad3671a0a881730ffdadd82f2f57d81641b
request-id8DDC:3DE401:1CABE9:249904:6972FB13
html-safe-nonce036698dcf202e49ad14c0027cae5e393554109f158ce2315ed5ce8e56c2a81b4
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiI4RERDOjNERTQwMToxQ0FCRTk6MjQ5OTA0OjY5NzJGQjEzIiwidmlzaXRvcl9pZCI6IjI2NzQwNTEyMTQzOTg5MTMyOTkiLCJyZWdpb25fZWRnZSI6ImlhZCIsInJlZ2lvbl9yZW5kZXIiOiJpYWQifQ==
visitor-hmac778965cf83de6567a59a50a19a99a85aecdb785e8694079978d44aa26852b8ff
hovercard-subject-tagpull_request:1528871164
github-keyboard-shortcutsrepository,pull-request-list,pull-request-conversation,pull-request-files-changed,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///pull_requests/show/files
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/docker-java/docker-java/pull/2210/files
twitter:imagehttps://avatars.githubusercontent.com/in/29110?s=400&v=4
twitter:cardsummary_large_image
og:imagehttps://avatars.githubusercontent.com/in/29110?s=400&v=4
og:image:altBumps 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_nameGitHub
og:typeobject
hostnamegithub.com
expected-hostnamegithub.com
None9946c12a4847916f32068429cb2ad536f7d8450fc8b70730d0e9aa7861057db8
turbo-cache-controlno-preview
diff-viewunified
go-importgithub.com/docker-java/docker-java git https://github.com/docker-java/docker-java.git
octolytics-dimension-user_id7772003
octolytics-dimension-user_logindocker-java
octolytics-dimension-repository_id20415251
octolytics-dimension-repository_nwodocker-java/docker-java
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id20415251
octolytics-dimension-repository_network_root_nwodocker-java/docker-java
turbo-body-classeslogged-out env-production page-responsive full-width
disable-turbotrue
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
releasef92f1208f12997e73ccb28d2f389b2adab0c98a3
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/docker-java/docker-java/pull/2210/files#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fdocker-java%2Fdocker-java%2Fpull%2F2210%2Ffiles
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub SparkBuild and deploy intelligent appshttps://github.com/features/spark
GitHub ModelsManage and compare promptshttps://github.com/features/models
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
GitHub SponsorsFund open source developershttps://github.com/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/accelerator
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fdocker-java%2Fdocker-java%2Fpull%2F2210%2Ffiles
Sign up https://github.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fpull_requests%2Fshow%2Ffiles&source=header-repo&source_repo=docker-java%2Fdocker-java
Reloadhttps://github.com/docker-java/docker-java/pull/2210/files
Reloadhttps://github.com/docker-java/docker-java/pull/2210/files
Reloadhttps://github.com/docker-java/docker-java/pull/2210/files
docker-java https://github.com/docker-java
docker-javahttps://github.com/docker-java/docker-java
Notifications https://github.com/login?return_to=%2Fdocker-java%2Fdocker-java
Fork 1.1k https://github.com/login?return_to=%2Fdocker-java%2Fdocker-java
Star 3.2k https://github.com/login?return_to=%2Fdocker-java%2Fdocker-java
Code https://github.com/docker-java/docker-java
Issues 37 https://github.com/docker-java/docker-java/issues
Pull requests 49 https://github.com/docker-java/docker-java/pulls
Discussions https://github.com/docker-java/docker-java/discussions
Actions https://github.com/docker-java/docker-java/actions
Projects 0 https://github.com/docker-java/docker-java/projects
Security 0 https://github.com/docker-java/docker-java/security
Insights https://github.com/docker-java/docker-java/pulse
Code https://github.com/docker-java/docker-java
Issues https://github.com/docker-java/docker-java/issues
Pull requests https://github.com/docker-java/docker-java/pulls
Discussions https://github.com/docker-java/docker-java/discussions
Actions https://github.com/docker-java/docker-java/actions
Projects https://github.com/docker-java/docker-java/projects
Security https://github.com/docker-java/docker-java/security
Insights https://github.com/docker-java/docker-java/pulse
Sign up for GitHub https://github.com/signup?return_to=%2Fdocker-java%2Fdocker-java%2Fissues%2Fnew%2Fchoose
terms of servicehttps://docs.github.com/terms
privacy statementhttps://docs.github.com/privacy
Sign inhttps://github.com/login?return_to=%2Fdocker-java%2Fdocker-java%2Fissues%2Fnew%2Fchoose
eddumelendezhttps://github.com/eddumelendez
mainhttps://github.com/docker-java/docker-java/tree/main
dependabot/maven/org.projectlombok-lombok-1.18.30https://github.com/docker-java/docker-java/tree/dependabot/maven/org.projectlombok-lombok-1.18.30
Conversation 2 https://github.com/docker-java/docker-java/pull/2210
Commits 1 https://github.com/docker-java/docker-java/pull/2210/commits
Checks 5 https://github.com/docker-java/docker-java/pull/2210/checks
Files changed https://github.com/docker-java/docker-java/pull/2210/files
Please reload this pagehttps://github.com/docker-java/docker-java/pull/2210/files
Bump org.projectlombok:lombok from 1.18.22 to 1.18.38 https://github.com/docker-java/docker-java/pull/2210/files#top
Show all changes 1 commit https://github.com/docker-java/docker-java/pull/2210/files
5de2a56 Bump org.projectlombok:lombok from 1.18.22 to 1.18.30 dependabot[bot] Apr 1, 2025 https://github.com/docker-java/docker-java/pull/2210/commits/5de2a567643f38461ff3aea7b1c29ed192adfac5
Clear filters https://github.com/docker-java/docker-java/pull/2210/files
Please reload this pagehttps://github.com/docker-java/docker-java/pull/2210/files
Please reload this pagehttps://github.com/docker-java/docker-java/pull/2210/files
pom.xml https://github.com/docker-java/docker-java/pull/2210/files#diff-5bf3a8d1942bfa34cf871a6e0f0c5d47ffe5873d446692d5d86a583b780a4ecf
pom.xml https://github.com/docker-java/docker-java/pull/2210/files#diff-2049ac457ae59b507034a70dde6e2e6d3d8659b2603c15d23ddf7d05489fe3dc
https://github.com/docker-java/docker-java/blob/main/.github/CODEOWNERS#L1
docker-java-api/pom.xmlhttps://github.com/docker-java/docker-java/pull/2210/files#diff-5bf3a8d1942bfa34cf871a6e0f0c5d47ffe5873d446692d5d86a583b780a4ecf
View file https://github.com/docker-java/docker-java/blob/5de2a567643f38461ff3aea7b1c29ed192adfac5/docker-java-api/pom.xml
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/docker-java/docker-java/pull/2210/{{ revealButtonHref }}
https://github.com/docker-java/docker-java/pull/2210/files#diff-5bf3a8d1942bfa34cf871a6e0f0c5d47ffe5873d446692d5d86a583b780a4ecf
https://github.com/docker-java/docker-java/pull/2210/files#diff-5bf3a8d1942bfa34cf871a6e0f0c5d47ffe5873d446692d5d86a583b780a4ecf
https://github.com/docker-java/docker-java/blob/main/.github/CODEOWNERS#L1
docker-java/pom.xmlhttps://github.com/docker-java/docker-java/pull/2210/files#diff-2049ac457ae59b507034a70dde6e2e6d3d8659b2603c15d23ddf7d05489fe3dc
View file https://github.com/docker-java/docker-java/blob/5de2a567643f38461ff3aea7b1c29ed192adfac5/docker-java/pom.xml
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/docker-java/docker-java/pull/2210/{{ revealButtonHref }}
https://github.com/docker-java/docker-java/pull/2210/files#diff-2049ac457ae59b507034a70dde6e2e6d3d8659b2603c15d23ddf7d05489fe3dc
https://github.com/docker-java/docker-java/pull/2210/files#diff-2049ac457ae59b507034a70dde6e2e6d3d8659b2603c15d23ddf7d05489fe3dc
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.