Validate and update links (STF-557)#181
Merged
Merged
Conversation
There was a problem hiding this comment.
Code Review
This pull request introduces a configuration file for the Lychee link checker (lychee.toml), adds .lycheecache to .gitignore, and updates several URLs in README.md and src/mod_maxminddb.c to use HTTPS or correct endpoints. There are no review comments, so I have no feedback to provide.
Important
The consumer version of Gemini Code Assist on GitHub is being sunset. Starting June 18, 2026, new organization installations will be blocked, and all code review activity will officially cease on July 17, 2026.
For more details on the timeline and next steps, please review the Help Documentation.
f890450 to
fa70ccb
Compare
Part of STF-557. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Validated all links with lychee and updated those that redirected elsewhere to their canonical destination: - dev.maxmind.com/geoip/geolite2-free-geolocation-data?lang=en -> .../geolite2-free-geolocation-data/?lang=en (canonical trailing slash) - dev.maxmind.com/geoip/geolocate-an-ip/databases?lang=en -> .../geolocate-an-ip/databases/?lang=en (canonical trailing slash) - www.maxmind.com/en/geoip2-databases -> www.maxmind.com/en/geoip-databases - www.maxmind.com/en/support -> support.maxmind.com/knowledge-base - github.com/SpiderLabs/ModSecurity/ -> github.com/owasp-modsecurity/ModSecurity - http://www.apache.org/licenses/LICENSE-2.0 -> https://www.apache.org/licenses/LICENSE-2.0 (license header) Part of STF-557. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
horgh
approved these changes
Jun 5, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds a lychee link-checker config (
lychee.toml) and aCI workflow (
.github/workflows/links.yml) that validates links in Markdown andsrc/**/*.con push, PR, and weekly schedule. Then validates all existing linksand updates the ones that were stale or redirecting.
The lychee config mirrors the shared MaxMind setup:
max_redirects = 0(somoved links surface as errors), accepts
500..=599, and excludes the changelog(
Changes.md), build/generated dirs (build/,.libs/,autom4te.cache/,docs/public/), the vendoredmaxmind-db/submodule, and thet/testharness.
.lycheecacheis gitignored.Links updated (old -> new):
dev.maxmind.com/geoip/geolite2-free-geolocation-data?lang=en->.../geolite2-free-geolocation-data/?lang=en(README.md)dev.maxmind.com/geoip/geolocate-an-ip/databases?lang=en->.../geolocate-an-ip/databases/?lang=en(README.md)www.maxmind.com/en/geoip2-databases->www.maxmind.com/en/geoip-databases(README.md)www.maxmind.com/en/support->support.maxmind.com/knowledge-base(README.md)github.com/SpiderLabs/ModSecurity/->github.com/owasp-modsecurity/ModSecurity(README.md)http://www.apache.org/licenses/LICENSE-2.0->https://www.apache.org/licenses/LICENSE-2.0(src/mod_maxminddb.c license header)Final lychee result: 11 OK, 0 errors, 1 excluded (a
file://self-referenceanchor).
Part of STF-557.
🤖 Generated with Claude Code