Changelog for the various changes

merge-requests/140/head
Jason Robinson 2019-03-02 23:52:09 +02:00
rodzic 871cf67cde
commit dbaae4842b
1 zmienionych plików z 8 dodań i 0 usunięć

Wyświetl plik

@ -18,6 +18,10 @@
* Added network utility `network.fetch_host_ip` to fetch IP by hostname.
* Inbound helper utility `handle_receive` now also supports ActivityPub payloads. Protocol will be identified by looking at the payload contents.
* Fetcher helper utility `retrieve_remote_profile` now also supports fetching ActivityPub profiles. Response will be a serialized protocol specific profile entity.
### Changed
* **Backwards incompatible.** Lowest compatible Python version is now 3.6.
@ -35,6 +39,10 @@
* **Backwards incompatible.** Generator `RFC3033Webfinger` and the related `rfc3033_webfinger_view` have been renamed to `RFC7033Webfinger` and `rfc7033_webfinger_view` to reflect the right RFC number.
* Network helper utility `fetch_document` can now also take a dictionary of `headers`. They will be passed to the underlying `requests` method call as is.
* **Backwards incompatible.** * Fetcher helper utility `retrieve_remote_profile` parameter `handle` has been removed. Pass in the Diaspora protocol handle as the first parameter to fetch a Diaspora remote profile.
### Removed
* **Backwards incompatible.** Support for Legacy Diaspora payloads have been removed to reduce the amount of code needed to maintain while refactoring for ActivityPub.