Releases: capjamesg/indieweb-utils
Releases · capjamesg/indieweb-utils
0.10.0
Added
- You can now set the user agent with which IndieWeb Utils will make requests. To do so, import the library, then, immediately after, set
indieweb_utils.USER_AGENT = 'your-user-agent'. - The
get_web_feed_url()lets you match a URL against several services that offer RSS feeds that may not be automatically discoverable. If a URL matches a pattern, the corresponding feed URL is returned. The computed feed URL is not validated by the function. You should write code to make sure the feed exists. signed_web_bot_auth_request()lets you make a signed HTTP request using the Web Bot Auth system.check_if_feed_is_bsky()transformshttps://bsky.app/profile/usernameinto@username.- The
generate_token()IndieAuth method now generates a JWT withexpandiatvalues. - The
redeem_code()method nowreturns a JWT access token withexpandiatvalues. discover_edit_links()lets you discover rel=edit links per the rel=edit specification.canonicalize_url()now depends more on theurlliblibrary. This should reduce the number of edge cases in URL canonicalization.- python-jose is now used to generate JWT tokens. This allows tokens to be both signed and encrypted.
Bug Fixes
application/jf2feed+jsonfeeds can now be discovered throughdiscover_web_page_feeds.get_valid_relmeauth_links()can now returnmailto:links.- The
get_reply_context()function no longer returns an error if the microformat for a featured image or a video is processed as a dictionary rather than a list. This was an internal bug caused by missing logic to validate the type of object in those microformats. send_webmentionnow returns thesummaryresult from a Webmention endpoint if the endpoint returns a JSON response with asummaryvalue.
Breaking Changes
validate_authorization_response()now requires a code challenge as an argument. The function previously generated a new code challenge, which was not the correct behaviour.redeem_code()now decodes code challenges as UTF-8 and applies the required.rstrip(b"=")transformation. If you are using IndieWeb Utils both to support a client and a server, both your clients and server will need to be updated to make sure they are all using the same code redemption logic.
Removed Functions
- The
_generate_tweet_reply_context()internal function, used to generate reply contexts from Twitter, has now been removed. This was previously used byget_reply_context(). As part of this change,get_reply_context()no longer accepts thetwitter_bearer_tokenargument.
0.9.0
What's Changed
- Add support for polling feeds and retrieving their contents as JSON Feed data with
indieweb_utils.retrieve_feed_contents.
Full Changelog: v0.5.0...0.9.0
v0.5.0
[0.5.0] - 2022-10-13
Added
get_reply_contextnow performs discovery onpropertyandnamevalues for og:image, twitter:image:src, description, og:description, and twitter:description tags.
Tests
- Added new tests for the
get_reply_contextfunction. - Added
responses.activatedecorators to remaining tests that did not already have this decorator present. This ensures all tests run on the contents of local files rather than making network requests to get data from a page.
Fixed
get_reply_contextwould use a h-entry even if the h-entry only provided a URL and no other content.indieweb_utils.SCOPE_DEFINITIONScan now be imported into a project. This previously returned anImportErrorexception.
v0.4.0
[0.4.0] - 2022-10-11
Added
Development
- Documentation for the
discover_endpointsfunction. - The
indieauth_callback_handlerfunction returns the JSON response from an IndieAuth endpoint represented as a dictionary instead of a blank dictionary. - The
discover_endpointsdocstring contains an example about Microsub and an updated common values list. This is because we recommend use of thediscover_webmention_endpointfunction for Webmention endpoint discovery.
Functions
get_reply_urlsto retrieve all of the URLs to which a specified page is replying.get_page_nameto find the name of a page per the IndieWeb Page Name Discovery algorithm.get_syndicated_copiesto retrieve all of the URLs to which a specified page has been syndicated.
Tests
- Added test cases for:
get_reply_urlsget_page_nameget_syndicated_copies
- Updated test cases for
get_reply_contextwere to look fordescriptionvalues where appropriate.
Fixed
- The
indieauth_callback_handlerfunction no longer raises a JSON error during the_validate_indieauth_responsefunction call. - The
get_reply_contextfunction now returns a description based on the first two sentences of the e-content of a specified page if a summary cannot be found when analysing a h-entry. - The
get_reply_contextfunction returns a stringsummaryvalue instead of a dictionary or a list. get_reply_contextnow looks atog:descriptionandtwitter:descriptionmeta tags for a description if adescriptionvalue cannot be found. This happens when analysing a page that does not contain a h-entry.
v0.3.1
v0.3.0
[0.3.0] - 2022-10-10
Added
Development
- Provide docstrings for all functions in the library that did not have a docstring.
- Fix docstring rendering issues with library documentation so that all docstrings show up on Read the Docs.
- Add
:raises:statements to docstrings to document existing - Add code examples to docstrings and remove redundant examples from RS documentation.
- Add a SECURITY.md policy.
- Split up documentation into more sections to enhance one's ability to navigate the documentation.
Functions
discover_h_feed()function to discover the representative h-feed on a page.get_valid_relmeauth_links()function to find both one-way and bi-directional rel=me links on a web page.get_representative_h_card()function to get the representative h-card associated with a web page.get_url_summary()function to generate a summary from a URL, based on the experimental CASSIS auto_url_summary PHP function.- This function provides examples for GitHub, Twitter, Upcoming, Eventbrite (.com and .co.uk), Calagator, IndieWeb Events, and the IndieWeb wiki.
autolink_tags()function to replace hashtags (#) with relevant tag pages and person tags (@) with the names and domains of people tagged.- Create internal helper functions:
get_parsed_mf2_data()to retrieve microformats2 data from a page given a parsed mf2py.Parse object, a HTML string, and a URL.get_soup()to retrieve a BeautifulSoup object from a provided HTML string and URL.
Tests
- Added test cases for:
discover_h_feed()get_representative_h_card()get_valid_relmeauth_links()get_url_summary()autolink_tags()
Changed
- Support importing IndieAuth functions directly from
indieweb_utilswithout having to useindieweb_utils.indieauth.. - Simplify
get_h_app_item()logic. - Raise
HAppNotFoundexception whenget_h_app_item()cannot identify a h-app microformat. - Renamed
_discover_endpointstodiscover_endpoints. discover_endpointscan raise arequests.exceptions.RequestExceptionif there was an error making a request to retrieve an endpoint.discover_webmention_endpoint()can now raise LocalhostEndpointFound, TargetNotProvided, UnacceptableIPAddress, and WebmentionEndpointNotFound exceptions when there is an issue validating a webmention.send_webmention()can now raise MissingSourceError, MissingTargetError, UnsupportedProtocolError, TargetIsNotApprovedDomain, GenericWebmentionError, and CouldNotConnectToWebmentionEndpoint if there was an issue sending a webmention.send_webmention()now returns the HTTP status code and headers of a successful webmention.get_post_type()raises anPostTypeFormattingErrorexception if an invalidcustom_propertiestuple is provided.get_reply_context()raises anReplyContextRetrievalErrorif there was an error retrieving context for a URL. This function also raises anUnsupportedSchemeerror if a URL does not use either HTTP or HTTPS.validate_webmention()can raise WebmentionIsGone or WebmentionValidationError exceptions if there was an error validating a webmention.canonicalize_url()returns the exact URL passed in if the URL contains a protocol that is not HTTP or HTTPS.
v0.2.0
[0.2.0] - 2022-02-15
Added
- Constants that document different scopes one may want to use in an IndieAuth server.
- Test cases for all main library functions.
- Web page feed discovery function now looks for more MIME types by default.
- New exceptions to throw various errors.
- Add X-Pingback support to feed parsing.
- Use urllib to retrieve domain names, protocols, and paths throughout the library.
Development
- Use tox, black, isort, flake8, and mypy to control quality of code.
- Type hints are used for all functions.
- New documentation has been added for all functions in the library.
- New code snippet examples to function docstrings.
Functions
get_h_app_itemfunction to retrieve a h-app object from a web page.validate_authorization_responsefunction to validate an IndieAuth authorization response._verify_decoded_codefunction that verifies a decoded code in an IndieAuth request.generate_auth_tokenfunction to generate an authentication token as part of an IndieAuth server.redeem_codefunction to handle token redemption in an IndieAuth server.send_webmentionfunction to send a webmention.validate_webmentionto validate a webmention according to the Webmention specification. Vouch support is implemented as an optional feature to use during the validation process.get_profilefunction to retrieve profile information from a h-card on a URL from a URL.
Changed
- Functions now return documented objects instead of arbitrary dictionaries.
- Exceptions are now thrown instead of returning None values or empty dictionaries.
- Fixed various bugs in the reply context function.
- Refactored test cases.
- Code has been formatted using black and isort for readability and adherence to PEP 8.