SpenceKonde / ATTinyCore

Arduino core for ATtiny 1634, 828, x313, x4, x41, x5, x61, x7 and x8
Other
1.53k stars 301 forks source link

Update redirecting URLs in bundled library metadata #793

Closed per1234 closed 11 months ago

per1234 commented 11 months ago

The url field of the library.properties metadata file points the user to where they might find more information or assistance for the library.

This platform includes bundled libraries which are variants of the standardized libraries distributed by Arduino. The url field in the metadata of these libraries points to the reference on the arduino.cc website, as that information is also applicable to this platform's variants of the libraries.

Due to restructuring of the arduino.cc website, the targeted reference pages have moved to a different URL. Arduino set up redirects from the previous URLs to the new one, but redirects have a tendency to break or no longer lead to the intended target over time so it is best to avoid relying on them. In addition, the use of redirecting URLs seems to make it more likely that automated link checks will fail (https://github.com/per1234/arduino-ci-script/issues/33) due to an HTTP 403 ("Forbidden") response code:

https://github.com/SpenceKonde/ATTinyCore/actions/runs/5339900593/jobs/9679095711

ERROR: /home/runner/work/ATTinyCore/ATTinyCore/avr/libraries/Wire/library.properties: url value http://www.arduino.cc/en/Reference/Wire returned error status 403.

even though the URL does work as expected when a human loads it in their browser:

http://www.arduino.cc/en/Reference/Wire

SpenceKonde commented 11 months ago

Thanks!!!