René's URL Explorer Experiment


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

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

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

Description: Bumps lombok from 1.18.8 to 1.18.14. Changelog Sourced from lombok's changelog. v1.18.14(October 8th, 2020) BREAKING CHANGE: mapstruct users should now add a dependency to lombok-mapstruct-binding. This solves compiling modules with lombok (and mapstruct). IMPROBABLE BREAKING CHANGE: The generated hashcode has changed for classes that include both primitive fields and reference fields. FEATURE: Similar to @Builder, you can now configure a @SuperBuilder's 'setter' prefixes via @SuperBuilder(setterPrefix = "set") for example. We still discourage doing this. [Pull Request #2357](rzwitserloot/lombok#2357). FEATURE: If using @Synchronized("lockVar"), if lockVar is referring to a static field, the code lombok generates no longer causes a warning about accessing a static entity incorrectly. [Issue #678](rzwitserloot/lombok#678) FEATURE: @Jacksonized on a @Builder or @SuperBuilder will configure Jackson to use this builder when deserializing. [Pull Request #2387](rzwitserloot/lombok#2387) thanks to @JanRieke. @Jacksonized documentation. FEATURE: The checkerframework support has been updated; the relevant annotations were renamed in checkerframework's APIs, lombok now generates the annotations according to their current API names. PLATFORM: Added support for compiling projects with OpenJ9 [Pull Request #2437](rzwitserloot/lombok#2437) PLATFORM: Improved support for recent JVM/javac versions (14 and 15) and new language features. PERFORMANCE: Several performance improvements during parsing/compilation, both using javac and Eclipse. Thanks @Rawi01! PERFORMANCE: The generated equals method will first compare primitives, then primitive wrappers and then reference fields. Manual re-ordering is possible using @Include(rank=n). [Pull Request #2485](rzwitserloot/lombok#2485), [Issue #1543](rzwitserloot/lombok#1543) BUGFIX: Delombok prints the first this parameter. [Issue #2444](rzwitserloot/lombok#2444) BUGFIX: Using val in combination with values whose generics include wildcards that reference themselves would cause a StackOverflowError in javac. [Issue #2358](rzwitserloot/lombok#2358). BUGFIX: Using @SuperBuilder on a class that has some fairly convoluted generics usage would fail with 'Wrong number of type arguments'. [Issue #2359](rzwitserloot/lombok#2359) [Pull Request #2362](rzwitserloot/lombok#2362) BUGFIX: Various lombok annotations on classes nested inside enums or interfaces would cause errors in eclipse. [Issue #2369](rzwitserloot/lombok#2369) BUGFIX: Trying to add @ExtensionMethods with exactly 2 arguments would fail in eclipse. [Issue #1441](rzwitserloot/lombok#1441) [Pull Request #2376](rzwitserloot/lombok#2376) thanks to @Rawi01. BUGFIX: Javac sets incorrect annotated type on with methods. [Issue #2463](rzwitserloot/lombok#2463) 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) Commits 76067c7 [versioning] pre-release version bump ac3b47d Merge branch 'javadoc-fix' of git://github.com/Rawi01/lombok into Rawi01-java... 96d02e6 [fixup] Fixing up the checkerframework @CalledMethods annotation package re... fd16774 Merge pull request #2595 from mernst/rename-builder-to-calledmethods 2666a92 [deps] bumped lombok.patcher dep to v0.38, which adds ASM9 support. 29d3418 [fixes #2592] Find ProcessingEnvironment in InteliJ 2020.3 and Kotlin 0e7b8c9 Add Michael Ernst to AUTHORS file 390ebcf The Object Construction Checker has been renamed the Called Methods Checker 58545ce Merge remote-tracking branch 'origin/master' 14cce76 [builder] big refactor: Fixing CheckerFramework features + all params now in ... 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 will merge this PR once CI passes on it, as requested by @JarvisCraft. 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.14. Changelog Sourced from lombok's changelog. v1.18.14(October 8th, 2020) BREAKING CHANGE: mapstruct users should now add a dependency to lombok-mapstruct-b...

X Description: Bumps lombok from 1.18.8 to 1.18.14. Changelog Sourced from lombok's changelog. v1.18.14(October 8th, 2020) BREAKING CHANGE: mapstruct users should now add a dependency to lombok-mapstru...

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

X: @github

direct link

Domain: patch-diff.githubusercontent.com

route-pattern/:user_id/:repository/pull/:id/files(.:format)
route-controllerpull_requests
route-actionfiles
fetch-noncev2:012063a6-c515-22b6-959e-246c86c01d7e
current-catalog-service-hashae870bc5e265a340912cde392f23dad3671a0a881730ffdadd82f2f57d81641b
request-idB8B8:19DA69:16D2632:1FA7810:697C9CC6
html-safe-nonce82b432fd15a1952a544c1a8a1c58229f5954640984ee4f5a4617d039755e4127
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJCOEI4OjE5REE2OToxNkQyNjMyOjFGQTc4MTA6Njk3QzlDQzYiLCJ2aXNpdG9yX2lkIjoiMjAzMjg0Njc5NzkzMTMyMjU2NiIsInJlZ2lvbl9lZGdlIjoiaWFkIiwicmVnaW9uX3JlbmRlciI6ImlhZCJ9
visitor-hmaca0b588c7516771cb6b19989a7eea6ceddce8335770783a80b357dea74da350ea
hovercard-subject-tagpull_request:500351769
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/feather-core/feather-core/pull/119/files
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.14. Changelog Sourced from lombok's changelog. v1.18.14(October 8th, 2020) BREAKING CHANGE: mapstruct users should now add a dependency to lombok-mapstruct-b...
og:site_nameGitHub
og:typeobject
hostnamegithub.com
expected-hostnamegithub.com
Nonef30e23787c843d478679169eb69bc1bf04c9aaf526e14cad93570a516ad7b047
turbo-cache-controlno-preview
diff-viewunified
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
disable-turbotrue
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
release0bf17967680d17d40933881af78023e6675fa045
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://patch-diff.githubusercontent.com/feather-core/feather-core/pull/119/changes#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%2F119%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://patch-diff.githubusercontent.com/login?return_to=https%3A%2F%2Fgithub.com%2Ffeather-core%2Ffeather-core%2Fpull%2F119%2Ffiles
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%2Ffiles&source=header-repo&source_repo=feather-core%2Ffeather-core
Reloadhttps://patch-diff.githubusercontent.com/feather-core/feather-core/pull/119/changes
Reloadhttps://patch-diff.githubusercontent.com/feather-core/feather-core/pull/119/changes
Reloadhttps://patch-diff.githubusercontent.com/feather-core/feather-core/pull/119/changes
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.14https://patch-diff.githubusercontent.com/feather-core/feather-core/tree/dependabot/maven/development/org.projectlombok-lombok-1.18.14
Conversation 2 https://patch-diff.githubusercontent.com/feather-core/feather-core/pull/119
Commits 1 https://patch-diff.githubusercontent.com/feather-core/feather-core/pull/119/commits
Checks 0 https://patch-diff.githubusercontent.com/feather-core/feather-core/pull/119/checks
Files changed https://patch-diff.githubusercontent.com/feather-core/feather-core/pull/119/files
Please reload this pagehttps://patch-diff.githubusercontent.com/feather-core/feather-core/pull/119/changes
Bump lombok from 1.18.8 to 1.18.14 https://patch-diff.githubusercontent.com/feather-core/feather-core/pull/119/changes#top
Show all changes 1 commit https://patch-diff.githubusercontent.com/feather-core/feather-core/pull/119/files
c5dad32 Bump lombok from 1.18.8 to 1.18.14 dependabot-preview[bot] Oct 14, 2020 https://patch-diff.githubusercontent.com/feather-core/feather-core/pull/119/commits/c5dad32311feebccf83d1a7581670f1e958ea211
Clear filters https://patch-diff.githubusercontent.com/feather-core/feather-core/pull/119/files
Please reload this pagehttps://patch-diff.githubusercontent.com/feather-core/feather-core/pull/119/changes
Please reload this pagehttps://patch-diff.githubusercontent.com/feather-core/feather-core/pull/119/changes
pom.xmlhttps://patch-diff.githubusercontent.com/feather-core/feather-core/pull/119/changes#diff-9c5fb3d1b7e3b0f54bc5c4182965c4fe1f9023d449017cece3005d3f90e8e4d8
View file https://patch-diff.githubusercontent.com/feather-core/feather-core/blob/c5dad32311feebccf83d1a7581670f1e958ea211/pom.xml
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://patch-diff.githubusercontent.com/feather-core/feather-core/pull/119/{{ revealButtonHref }}
https://patch-diff.githubusercontent.com/feather-core/feather-core/pull/119/changes#diff-9c5fb3d1b7e3b0f54bc5c4182965c4fe1f9023d449017cece3005d3f90e8e4d8
https://patch-diff.githubusercontent.com/feather-core/feather-core/pull/119/changes#diff-9c5fb3d1b7e3b0f54bc5c4182965c4fe1f9023d449017cece3005d3f90e8e4d8
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.