Skip to content

Commit

Permalink
Update version 4.1 changes.
Browse files Browse the repository at this point in the history
  • Loading branch information
beatonma committed Feb 9, 2024
1 parent cfa1a8a commit 72d453b
Showing 1 changed file with 21 additions and 1 deletion.
22 changes: 21 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Changelog


## 4.1.0 ( NOT YET RELEASED )
## 4.1

> `migrate` required for new fields.
Expand All @@ -12,6 +12,26 @@

- New `objects` manager for Webmention with some common filters.

- New settings for allowing or disabling webmentions to/from a set of domains:
- `WEBMENTIONS_DOMAINS_INCOMING_ALLOW: Iterable[str] = None`
- Mutually exclusive with `WEBMENTIONS_DOMAINS_INCOMING_DENY`.
- `WEBMENTIONS_DOMAINS_INCOMING_DENY: Iterable[str] = None`
- Mutually exclusive with `WEBMENTIONS_DOMAINS_INCOMING_ALLOW`.
- `WEBMENTIONS_DOMAINS_OUTGOING_ALLOW: Iterable[str] = None`
- Mutually exclusive with `WEBMENTIONS_DOMAINS_OUTGOING_DENY`.
- `WEBMENTIONS_DOMAINS_OUTGOING_DENY: Iterable[str] = None`
- Mutually exclusive with `WEBMENTIONS_DOMAINS_OUTGOING_ALLOW`.
- `WEBMENTIONS_DOMAINS_OUTGOING_OVERRIDE_TAG: str = None`
- A tag which can be applied to an HTML `<a>` element to invert the effect of `WEBMENTIONS_DOMAINS_OUTGOING_ALLOW` or `WEBMENTIONS_DOMAINS_OUTGOING_DENY` for that link specifically.
- May be provided as:
- a class `<a class="my-override-string">`.
- a data attribute `<a data-my-override-string>`.
- a custom attribute `<a my-override-string>`.


## 4.0.4 (2024-02-02)
- Resolves [#53](https://github.com/beatonma/django-wm/issues/53): Compatibility with dependency `mf2py>=2.0`.


## 4.0.2 (2023-05-27)
- Resolves [#50](https://github.com/beatonma/django-wm/issues/50): broken search field on QuotableAdmin.
Expand Down

0 comments on commit 72d453b

Please sign in to comment.