summaryrefslogtreecommitdiff
path: root/classes/UrlHelper.php
AgeCommit message (Collapse)Author
2024-11-24Use PHP 8 'str_' functions.wn_
A few more characters in some places, but helps with readability.
2024-11-23Use native union types in most places.wn_
2024-10-01drop opentelemetryAndrew Dolgov
2024-08-04Replace basic 'isset()' cases with the null coalescing operator.wn_
2024-01-09Only include the exception message in 'UrlHelper::$fetch_last_error'.wn_
Before this the stack trace was included, which is a bit much.
2023-12-29Perform validation of redirect URLs during the redirect process.wn_
Previously, validation was only done after all redirects and the final request had completed. This approach ensures all redirects are to URLs that pass extended validation.
2023-12-24Fix specifying auth type in UrlHelper::fetch(), add a test for 403 auth retry.wn_
2023-12-23Add some tests for UrlHelper::fetch()wn_
2023-12-23Rework content encoding error retrying in UrlHelper::fetch()wn_
2023-12-23Clean up UrlHelper::resolve_redirects().wn_
Also: this doesn't appear to be used... but maybe in some plugin?
2023-12-23Add back 'any auth' retry in UrlHelper::fetch()wn_
2023-12-22Use Guzzlewn_
2023-10-25move to psr-4 autoloaderAndrew Dolgov