Merge branch 'master' into todos-and-issues

todos-and-issues
Alain St-Denis 2024-02-20 08:31:28 -05:00
commit 2ee17e4aa6
3 zmienionych plików z 8 dodań i 2 usunięć

Wyświetl plik

@ -1,5 +1,11 @@
# Changelog # Changelog
## [0.25.1] - 2024-02-18
### Fixed
* Address CVE-2024-23832 by ensuring that a pulled AP payload id netloc is the same as the request fid netloc.
## [0.25.0] - 2024-01-06 ## [0.25.0] - 2024-01-06
### Added ### Added

Wyświetl plik

@ -2,7 +2,7 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
from recommonmark.parser import CommonMarkParser from recommonmark.parser import CommonMarkParser
__version__ = "0.24.1" __version__ = "0.25.1"
# #
# Federation documentation build configuration file, created by # Federation documentation build configuration file, created by

Wyświetl plik

@ -7,7 +7,7 @@ from federation.exceptions import NoSuitableProtocolFoundError
if TYPE_CHECKING: if TYPE_CHECKING:
from federation.types import RequestType from federation.types import RequestType
__version__ = "0.25.0" __version__ = "0.25.1"
PROTOCOLS = ( PROTOCOLS = (
"activitypub", "activitypub",