Fixed
- Stripped speculative behavior from the IPinfo Lite REST API integration shipped in 9.10.0 after auditing the code against the Lite API docs. The docs state the Lite API has "no daily or monthly limit and provides unlimited access" and document
?token=query-parameter auth only; nothing else removed here is documented for Lite. Removed: the 429 rate-limit and 402 quota-exhausted handling,Retry-Afterparsing, cooldown state, and the associated warning/recovery logging; thehttps://ipinfo.io/meaccount-info probe that expected plan/limit/remaining fields (that endpoint isn't a Lite account endpoint); and theAuthorization: Bearerheader. Auth is now the documented?token=query param; the startup probe is a single/lite/1.1.1.1lookup that logsIPinfo API configuredat info level. Retained behavior: 401/403 remains a fatalInvalidIPinfoAPIKey, and any other non-2xx or network error falls back to the bundled/cached MMDB per request.