René's URL Explorer Experiment


Title: Bump lombok from 1.18.8 to 1.18.12 by dependabot-preview[bot] · Pull Request #76 · feather-core/feather-core · GitHub

Open Graph Title: Bump lombok from 1.18.8 to 1.18.12 by dependabot-preview[bot] · Pull Request #76 · feather-core/feather-core

X Title: Bump lombok from 1.18.8 to 1.18.12 by dependabot-preview[bot] · Pull Request #76 · feather-core/feather-core

Description: Bumps lombok from 1.18.8 to 1.18.12. Changelog Sourced from lombok's changelog. v1.18.12 (February 1st, 2020) PLATFORM: Support for JDK13 (including yield in switch expressions, as well as delombok having a nicer style for arrow-style switch blocks, and text blocks). PLATFORM: Support for JDK14 (including pattern match instanceof expressions). FEATURE: In lombok.config it is possible to import other config files, even from a .zip or .jar. FEATURE: You can now configure a builder's 'setter' prefixes via @Builder(setterPrefix = "set") for example. We discourage doing this, but if some library you use requires them, have at it. [Pull Request #2174](rzwitserloot/lombok#2174, [Issue #1805](rzwitserloot/lombok#1805). FEATURE: If you use @Builder's @Singular, a plural form is also generated, which has the effect of adding all elements in the passed collection. If you pass a null reference, this would result in a message-less NullPointerException. Now, it results in that exception but with a useful message attached (uses the same config as @NonNull), or alternatively via a parameter on @Singular, you can choose to ignore such a call (add nothing, return immediately); this can be useful when deserializing (e.g. Jackson JSON) and JPA/Hibernate code. [Issue #2221](rzwitserloot/lombok#2221. singular documentation. FEATURE: Tired of being unable to use @javax.annotation.ParametersAreNonnullByDefault or @org.eclipse.jdt.annotation.NonNullByDefault because then the equals method that lombok generates isn't valid? Fret no more; lombok can now add nullity annotations where relevant. Set the flavour of nullity annotation you prefer in your lombok.config. Applies to the return value of toString, withX, chainable setX, static constructors, build, builder, etcetera, and the parameter of equals, canEqual, and the plural form of @Singular marked fields for builder classes. [Issue #788](rzwitserloot/lombok#788) BUGFIX: If using the sonarlint plugin in eclipse for projects bound to sonarcloud, you now no longer get internal errors on sonarlint processing. [Issue #2351](rzwitserloot/lombok#2351) BUGFIX: lombok.experimental.Wither has been deprecated (it has been renamed to lombok.With). However, the intent is that lombok still handles the old annotation in case you haven't updated your lombok dep yet. However, only a star import on lombok.experimental.* worked; an explicit one would cause lombok to not generate any with method. [Issue #2235](rzwitserloot/lombok#2235) BUGFIX: Referring to an inner class inside the generics on a class marked with @SuperBuilder would cause the error wrong number of type arguments; required 3 [Issue #2262](rzwitserloot/lombok#2262); fixed by github user @Lekanich - thank you! BUGFIX: Some of the code generated by @Builder did not include this. prefixes when accessing fields. While semantically it didn't matter, if you use the 'add this prefix for field accesses' save action in eclipse, the save action would break. [Issue #2327](rzwitserloot/lombok#2327) BUGFIX: When lombok copies javadoc from fields to relevant methods, it should generate an appropriate @return this line if lombok copies the javadoc to a generated setter that is chainable (returns itself). It didn't do that when generating the 'setters' in a @Builder. Lombok also didn't generate an appropriate @return item for @With methods. The javadoc has also been updated slightly (the this reference in the javadoc is now rendered in a code tag).[Issue #2323](rzwitserloot/lombok#2323) IMPROBABLE BREAKING CHANGE: Lombok now generates qualified types (so, Outer.Inner instead of just Inner) in most type signatures that it generates; this should avoid exotic scenarios where the types lombok puts in signatures end up referring to unintended other types, which can occur if your class implements an interface that itself defines a type with the same name as one defined in your source file. I told you it was exotic. Thanks to Hunter Anderson for doing some preliminary work on this change. [Issue #2268](rzwitserloot/lombok#2268) IMPROBABLE BREAKING CHANGE: Running java -jar lombok.jar config -v no longer shows which files do not mention the specified keys. Use --non-mentioned or -n to show them anyway. v1.18.10 (September 10th, 2019) PROMOTION: @Wither has been promoted to the main package, renamed to @With. Otherwise, no changes have been made to the annotation. The old experimental annotation will remain for a few versions as a deprecated annotation. If you had lombok.config configuration for this annotation, the configuration keys for this feature have been renamed. FEATURE: You can now configure a custom logger framework using the new @CustomLog annotation in combination with the lombok.log.custom.declaration configuration key. See the log documentation for more information. [Pullrequest #2086](rzwitserloot/lombok#2086) with thanks to Adam Juraszek. ENHANCEMENT: Thanks to Mark Haynes, the staticConstructor will now also be generated if a (private) constructor already exists. [Issue #2100](rzwitserloot/lombok#2100) ENHANCEMENT: val is now capable of decoding the type of convoluted expressions (particularly if the right hand side involves lambdas and conditional (ternary) expressions). [Pull Request #2109](rzwitserloot/lombok#2109) with thanks to Alexander Bulgakov. ENHANCEMENT: You can now configure the generated builder class name via the config system, using key lombok.builder.className. See the Builder documentation and SuperBuilder documentation ENHANCEMENT: If you mix up eclipse's non-null support, such as @NonNullByDefault, with lombok's @NonNull, you get a bunch of warnings about dead code that are inappropriate. These warnings are now suppressed, thanks to a contribution from Till Brychcy! [Pull Request #2155](rzwitserloot/lombok#2155) ENHANCEMENT: @NonNull can now also generate checks using jdk's Objects.requireNonNull or Guava's Preconditions.checkNotNull. [Issue #1197](rzwitserloot/lombok#1197) EXPERIMENT: Lombok is working together with checkerframework to enable detection of improper builder use (such as forgetting to set a mandatory property prior to calling build()). This experiment can be turned on by adding checkerframework = true to your lombok.config file. BUGFIX: Using @JsonProperty or @JsonValue on a field in combination with @Setter or @Data would sometimes throw a ClassCastException during compilation. [Issue #2156](rzwitserloot/lombok#2156) BUGFIX: Delombok would turn something like List... in a method parameter to List... [Issue #2140](rzwitserloot/lombok#2140) BUGFIX: Javac would generate the wrong equals and hashCode if a type-use annotation was put on an array type field [Issue #2165](rzwitserloot/lombok#2165) BUGFIX: Eclipse 2019-06 + JDK-12 compatibility + an @Singular builder entry would produce a cascade of error dialogs. [Issue #2169](rzwitserloot/lombok#2169) BUGFIX: Javac would throw a NullPointerException if the package-info.java did not contain a package declaration. [Issue #2184](rzwitserloot/lombok#2184) BUGFIX: Javac sets incorrect annotated type on constructor, getter and setter. [Issue #2189](rzwitserloot/lombok#2189) IMPROBABLE BREAKING CHANGE: Stricter validation of configuration keys dealing with identifiers and types (lombok.log.fieldName, lombok.fieldNameConstants.innerTypeName, lombok.copyableAnnotations). IMPROBABLE BREAKING CHANGE: The fields generated inside builders for fields with defaults (with @Builder on a class with fields marked @Default) now have $value as the name; direct manipulation of these fields is not advised because there is an associated $set variable that also needs to be taken into account. [Issue #2115](rzwitserloot/lombok#2115) Commits 4ca9ccf pre-release version bump 8c952fa [trivial] we've decided to call this one 1.18.12, not 1.20.0. 8943b49 [fixes #880] get rid of an unchecked cast warning for @Getter(lazy=true) 2e06cb3 #2355 fixed tests for clashes in the generics for superbuilder f12b705 [issue #1197] fixed documentation of NonNull 680d63e Merge pull request #2355 from janrieke/superBuilderAvoidMoreNameClashes 4a34ed7 avoid more name clashes for builder type param; fixes #2297 a678e7e [issue #1956] make 'ant intellij' work again e229377 [fixing #2351] Reflecting the fix in the changelog. 3f0fec1 [issue #788] Add more nullity annotations where relevant Additional commits viewable in compare view Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually 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 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) @dependabot use these labels will set the current labels as the default for future PRs for this repo and language @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language @dependabot badge me will comment on this PR with code to add a "Dependabot enabled" badge to your readme Additionally, you can set the following in your Dependabot dashboard: Update frequency (including time of day and day of week) Pull request limits (per update run and/or open at any time) Out-of-range updates (receive only lockfile updates, if desired) Security updates (receive only security updates, if desired)

Open Graph Description: Bumps lombok from 1.18.8 to 1.18.12. Changelog Sourced from lombok's changelog. v1.18.12 (February 1st, 2020) PLATFORM: Support for JDK13 (including yield in switch expressions, as well as d...

X Description: Bumps lombok from 1.18.8 to 1.18.12. Changelog Sourced from lombok's changelog. v1.18.12 (February 1st, 2020) PLATFORM: Support for JDK13 (including yield in switch expressions, as well ...

Opengraph URL: https://github.com/feather-core/feather-core/pull/76

X: @github

direct link

Domain: patch-diff.githubusercontent.com

route-pattern/:user_id/:repository/pull/:id/checks(.:format)
route-controllerpull_requests
route-actionchecks
fetch-noncev2:127910ad-0346-9828-fe20-5a07081e0c07
current-catalog-service-hash87dc3bc62d9b466312751bfd5f889726f4f1337bdff4e8be7da7c93d6c00a25a
request-id8602:151EEE:1E7DE4F:28BB0AC:697D3707
html-safe-nonce0d18edf00d63c6148e15f09aba7b24218ceb89090605b6b31bb00e8ed64c7b8e
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiI4NjAyOjE1MUVFRToxRTdERTRGOjI4QkIwQUM6Njk3RDM3MDciLCJ2aXNpdG9yX2lkIjoiNDkzMjkxODM1ODExNTY5NDM0MyIsInJlZ2lvbl9lZGdlIjoiaWFkIiwicmVnaW9uX3JlbmRlciI6ImlhZCJ9
visitor-hmac0b20f04ad42e361c4efc169286c659f1a04ac68f143257c2a4383123a33a3f3d
hovercard-subject-tagpull_request:372241300
github-keyboard-shortcutsrepository,pull-request-list,pull-request-conversation,pull-request-files-changed,checks,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///pull_requests/show/checks
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/feather-core/feather-core/pull/76/checks
twitter:imagehttps://avatars.githubusercontent.com/in/2141?s=400&v=4
twitter:cardsummary_large_image
og:imagehttps://avatars.githubusercontent.com/in/2141?s=400&v=4
og:image:altBumps lombok from 1.18.8 to 1.18.12. Changelog Sourced from lombok's changelog. v1.18.12 (February 1st, 2020) PLATFORM: Support for JDK13 (including yield in switch expressions, as well as d...
og:site_nameGitHub
og:typeobject
hostnamegithub.com
expected-hostnamegithub.com
None9a3c7e308524eda8bf7076517aaba4e7e7984217dc521d1404369c0c497afdde
turbo-cache-controlno-preview
go-importgithub.com/feather-core/feather-core git https://github.com/feather-core/feather-core.git
octolytics-dimension-user_id49451827
octolytics-dimension-user_loginfeather-core
octolytics-dimension-repository_id180413539
octolytics-dimension-repository_nwofeather-core/feather-core
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id180413539
octolytics-dimension-repository_network_root_nwofeather-core/feather-core
turbo-body-classeslogged-out env-production page-responsive full-width full-width-p-0
disable-turbofalse
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
release4b41f2aeb2bdce4f2f8278e78f7fe2b38a9cd441
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://patch-diff.githubusercontent.com/feather-core/feather-core/pull/76/checks#start-of-content
https://patch-diff.githubusercontent.com/
Sign in https://patch-diff.githubusercontent.com/login?return_to=https%3A%2F%2Fgithub.com%2Ffeather-core%2Ffeather-core%2Fpull%2F76%2Fchecks
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://patch-diff.githubusercontent.com/login?return_to=https%3A%2F%2Fgithub.com%2Ffeather-core%2Ffeather-core%2Fpull%2F76%2Fchecks
Sign up https://patch-diff.githubusercontent.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fpull_requests%2Fshow%2Fchecks&source=header-repo&source_repo=feather-core%2Ffeather-core
Reloadhttps://patch-diff.githubusercontent.com/feather-core/feather-core/pull/76/checks
Reloadhttps://patch-diff.githubusercontent.com/feather-core/feather-core/pull/76/checks
Reloadhttps://patch-diff.githubusercontent.com/feather-core/feather-core/pull/76/checks
feather-core https://patch-diff.githubusercontent.com/feather-core
feather-corehttps://patch-diff.githubusercontent.com/feather-core/feather-core
Notifications https://patch-diff.githubusercontent.com/login?return_to=%2Ffeather-core%2Ffeather-core
Fork 0 https://patch-diff.githubusercontent.com/login?return_to=%2Ffeather-core%2Ffeather-core
Star 4 https://patch-diff.githubusercontent.com/login?return_to=%2Ffeather-core%2Ffeather-core
Code https://patch-diff.githubusercontent.com/feather-core/feather-core
Issues 2 https://patch-diff.githubusercontent.com/feather-core/feather-core/issues
Pull requests 12 https://patch-diff.githubusercontent.com/feather-core/feather-core/pulls
Actions https://patch-diff.githubusercontent.com/feather-core/feather-core/actions
Projects 0 https://patch-diff.githubusercontent.com/feather-core/feather-core/projects
Security 0 https://patch-diff.githubusercontent.com/feather-core/feather-core/security
Insights https://patch-diff.githubusercontent.com/feather-core/feather-core/pulse
Code https://patch-diff.githubusercontent.com/feather-core/feather-core
Issues https://patch-diff.githubusercontent.com/feather-core/feather-core/issues
Pull requests https://patch-diff.githubusercontent.com/feather-core/feather-core/pulls
Actions https://patch-diff.githubusercontent.com/feather-core/feather-core/actions
Projects https://patch-diff.githubusercontent.com/feather-core/feather-core/projects
Security https://patch-diff.githubusercontent.com/feather-core/feather-core/security
Insights https://patch-diff.githubusercontent.com/feather-core/feather-core/pulse
dependabot-previewhttps://patch-diff.githubusercontent.com/apps/dependabot-preview
developmenthttps://patch-diff.githubusercontent.com/feather-core/feather-core/tree/development
dependabot/maven/development/org.projectlombok-lombok-1.18.12https://patch-diff.githubusercontent.com/feather-core/feather-core/tree/dependabot/maven/development/org.projectlombok-lombok-1.18.12
Conversation 2 https://patch-diff.githubusercontent.com/feather-core/feather-core/pull/76
Commits 1 https://patch-diff.githubusercontent.com/feather-core/feather-core/pull/76/commits
Checks 0 https://patch-diff.githubusercontent.com/feather-core/feather-core/pull/76/checks
Files changed https://patch-diff.githubusercontent.com/feather-core/feather-core/pull/76/files
Please reload this pagehttps://patch-diff.githubusercontent.com/feather-core/feather-core/pull/76/checks
Please reload this pagehttps://patch-diff.githubusercontent.com/feather-core/feather-core/pull/76/checks
Bump lombok from 1.18.8 to 1.18.12 https://patch-diff.githubusercontent.com/feather-core/feather-core/pull/76/checks#top
Please reload this pagehttps://patch-diff.githubusercontent.com/feather-core/feather-core/pull/76/checks
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.