2022-12-27 20:26:42 +00:00
|
|
|
# Changelog
|
|
|
|
|
|
|
|
All notable changes to this project will be documented in this file.
|
|
|
|
|
|
|
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
|
|
|
|
|
|
|
## [Unreleased]
|
|
|
|
|
2023-01-30 03:10:07 +00:00
|
|
|
### Added
|
|
|
|
|
|
|
|
- Replace post attachments and other related objects when processing `Update(Note)` activity.
|
2023-01-30 02:09:49 +00:00
|
|
|
- Append attachment URL to post content if attachment size exceeds limit.
|
2023-02-02 12:38:02 +00:00
|
|
|
- Added `/api/v1/custom_emojis` endpoint.
|
2023-01-30 00:23:16 +00:00
|
|
|
- Added `limits` parameter group to configuration.
|
|
|
|
- Made file size limit adjustable with `limits.media.file_size_limit` configuration option.
|
2023-02-04 21:47:13 +00:00
|
|
|
- Added `limits.posts.character_limit` configuration parameter (replaces `post_character_limit`).
|
2023-01-30 03:10:07 +00:00
|
|
|
|
2023-01-28 01:11:47 +00:00
|
|
|
### Changed
|
|
|
|
|
|
|
|
- Use proof suites with prefix `Mitra`.
|
2023-01-29 21:13:35 +00:00
|
|
|
- Added `https://w3id.org/security/data-integrity/v1` to JSON-LD context.
|
|
|
|
- Return `202 Accepted` when activity is accepted by inbox endpoint.
|
2023-02-02 00:48:03 +00:00
|
|
|
- Ignore forwarded `Like` activities.
|
2023-02-02 20:46:03 +00:00
|
|
|
- Set 10 minute timeout on background job that processes incoming activities.
|
2023-02-02 20:49:50 +00:00
|
|
|
- Use "warn" log level for delivery errors.
|
2023-02-04 16:57:55 +00:00
|
|
|
- Don't allow read-only users to manage subscriptions.
|
2023-01-28 01:11:47 +00:00
|
|
|
|
2023-02-04 21:47:13 +00:00
|
|
|
### Deprecated
|
|
|
|
|
|
|
|
- Deprecated `post_character_limit` configuration option.
|
|
|
|
|
2023-02-04 00:16:40 +00:00
|
|
|
### Fixed
|
|
|
|
|
|
|
|
- Change max body size in nginx example config to match app limit.
|
2023-02-04 17:07:38 +00:00
|
|
|
- Don't create invoice if recipient can't accept subscription payments.
|
2023-02-04 00:16:40 +00:00
|
|
|
|
2023-01-26 19:05:41 +00:00
|
|
|
## [1.12.0] - 2023-01-26
|
|
|
|
|
2023-01-25 02:13:26 +00:00
|
|
|
### Added
|
|
|
|
|
|
|
|
- Added `approval_required` and `invites_enabled` flags to `/api/v1/instance` endpoint response.
|
2023-01-24 20:55:24 +00:00
|
|
|
- Added `registration.type` configuration option (replaces `registrations_open`).
|
2023-01-19 13:13:49 +00:00
|
|
|
- Implemented roles & permissions.
|
|
|
|
- Added "read-only user" role.
|
2023-01-24 20:55:24 +00:00
|
|
|
- Added configuration option for automatic assigning of "read-only user" role after registration.
|
2023-01-25 05:52:58 +00:00
|
|
|
- Added `set-role` command.
|
2023-01-24 20:55:24 +00:00
|
|
|
|
2023-01-26 13:52:30 +00:00
|
|
|
### Changed
|
|
|
|
|
|
|
|
- Don't retry activity if fetcher recursion limit has been reached.
|
|
|
|
|
2023-01-24 20:55:24 +00:00
|
|
|
### Deprecated
|
|
|
|
|
|
|
|
- `registrations_open` configuration option.
|
2023-01-25 02:13:26 +00:00
|
|
|
|
2023-01-24 21:11:07 +00:00
|
|
|
### Removed
|
|
|
|
|
|
|
|
- Dropped support for `blockchain` configuration parameter.
|
|
|
|
|
2023-01-25 22:22:56 +00:00
|
|
|
### Fixed
|
|
|
|
|
|
|
|
- Added missing `<link rel="self">` element to Atom feeds.
|
2023-01-25 22:24:45 +00:00
|
|
|
- Added missing `<link rel="alternate">` element to Atom feed entries.
|
2023-01-25 22:22:56 +00:00
|
|
|
|
2023-01-23 12:53:57 +00:00
|
|
|
## [1.11.0] - 2023-01-23
|
|
|
|
|
2023-01-19 21:57:29 +00:00
|
|
|
### Added
|
|
|
|
|
|
|
|
- Save sizes of media attachments and other files to database.
|
2023-01-17 00:09:09 +00:00
|
|
|
- Added `import-emoji` command.
|
2023-01-21 00:23:15 +00:00
|
|
|
- Added support for emoji shortcodes.
|
2023-01-22 23:45:43 +00:00
|
|
|
- Allowed custom emojis with `image/apng` media type.
|
2023-01-19 21:57:29 +00:00
|
|
|
|
2023-01-21 21:25:51 +00:00
|
|
|
### Changed
|
|
|
|
|
|
|
|
- Make `delete-emoji` command accept emoji name and hostname instead of ID.
|
2023-01-13 21:28:26 +00:00
|
|
|
- Replaced client-side tag URLs with collection IDs.
|
2023-01-21 21:25:51 +00:00
|
|
|
|
2023-01-20 18:47:26 +00:00
|
|
|
### Security
|
|
|
|
|
|
|
|
- Validate emoji name before saving.
|
|
|
|
|
2023-01-18 20:20:26 +00:00
|
|
|
## [1.10.0] - 2023-01-18
|
|
|
|
|
2023-01-08 21:40:41 +00:00
|
|
|
### Added
|
|
|
|
|
|
|
|
- Added `/api/v1/settings/move_followers` API endpoint (replaces `/api/v1/accounts/move_followers`).
|
2023-01-10 20:46:57 +00:00
|
|
|
- Added `/api/v1/settings/import_follows` API endpoint.
|
2023-01-12 00:56:52 +00:00
|
|
|
- Validation of Monero subscription payout address.
|
2023-01-05 18:30:00 +00:00
|
|
|
- Accept webfinger requests where `resource` is actor ID.
|
2023-01-17 00:51:17 +00:00
|
|
|
- Adeed support for `as:Public` and `Public` audience identifiers.
|
2023-01-16 22:40:03 +00:00
|
|
|
- Displaying custom emojis.
|
2023-01-08 21:40:41 +00:00
|
|
|
|
2023-01-14 00:46:49 +00:00
|
|
|
### Changed
|
|
|
|
|
|
|
|
- Save downloaded media as "unknown" if its media type is not supported.
|
2023-01-04 20:04:10 +00:00
|
|
|
- Use `mediaType` property value to determine file extension when saving downloaded media.
|
2023-01-14 19:34:08 +00:00
|
|
|
- Added `mediaType` property to images in actor object.
|
2023-01-16 12:39:01 +00:00
|
|
|
- Prevent `delete-extraneous-posts` command from deleting post if there's a recent reply or repost.
|
2023-01-16 16:54:57 +00:00
|
|
|
- Changed max actor image size to 5 MB.
|
2023-01-14 00:46:49 +00:00
|
|
|
|
2023-01-08 21:40:41 +00:00
|
|
|
### Removed
|
|
|
|
|
|
|
|
- `/api/v1/accounts/move_followers` API endpoint.
|
|
|
|
|
2023-01-11 00:51:03 +00:00
|
|
|
### Fixed
|
|
|
|
|
|
|
|
- Don't ignore `Delete(Person)` verification errors if database error subtype is not `NotFound`.
|
2023-01-11 19:49:12 +00:00
|
|
|
- Don't stop activity processing on invalid local mentions.
|
2023-01-17 18:01:57 +00:00
|
|
|
- Accept actor objects where `attachment` property value is not an array.
|
2023-01-17 19:13:37 +00:00
|
|
|
- Don't download HTML pages attached by GNU Social.
|
2023-01-18 01:12:49 +00:00
|
|
|
- Ignore `Like()` activity if local post doesn't exist.
|
2023-01-18 17:47:23 +00:00
|
|
|
- Fixed `.well-known` paths returning `400 Bad Request` errors.
|
2023-01-11 00:51:03 +00:00
|
|
|
|
2023-01-07 23:10:57 +00:00
|
|
|
## [1.9.0] - 2023-01-08
|
|
|
|
|
2022-12-28 00:13:49 +00:00
|
|
|
### Added
|
|
|
|
|
|
|
|
- Added `/api/v1/accounts/lookup` Mastodon API endpoint.
|
2022-12-11 18:41:08 +00:00
|
|
|
- Implemented activity delivery queue.
|
2022-12-03 21:06:15 +00:00
|
|
|
- Started to keep track of unreachable actors.
|
2023-01-06 16:46:59 +00:00
|
|
|
- Added `configuration` object to response of `/api/v1/instance` endpoint.
|
2023-01-05 17:36:38 +00:00
|
|
|
- Save media types of uploaded avatar and banner images.
|
2023-01-07 23:06:23 +00:00
|
|
|
- Support for `MitraJcsRsaSignature2022` and `MitraJcsEip191Signature2022` signature suites.
|
2022-12-28 00:13:49 +00:00
|
|
|
|
2022-12-27 21:15:19 +00:00
|
|
|
### Changed
|
|
|
|
|
2022-12-27 21:46:48 +00:00
|
|
|
- Updated installation instructions, default mitra config and recommended nginx config.
|
2022-12-29 17:23:15 +00:00
|
|
|
- Limited the number of requests made during the processing of a thread.
|
2023-01-06 16:52:28 +00:00
|
|
|
- Limited the number of media files that can be attached to a post.
|
2022-12-27 21:15:19 +00:00
|
|
|
|
2023-01-06 16:46:59 +00:00
|
|
|
### Deprecated
|
|
|
|
|
|
|
|
- Deprecated `post_character_limit` property in `/api/v1/instance` response.
|
2023-01-05 17:36:38 +00:00
|
|
|
- Avatar and banner uploads without media type via `/api/v1/accounts/update_credentials`.
|
2023-01-07 23:06:23 +00:00
|
|
|
- `JcsRsaSignature2022` and `JcsEip191Signature2022` signature suites.
|
2023-01-06 16:46:59 +00:00
|
|
|
|
2023-01-06 01:50:30 +00:00
|
|
|
### Removed
|
|
|
|
|
|
|
|
- Removed ability to upload non-images using `/api/v1/media` endpoint.
|
|
|
|
|
2022-12-27 20:26:42 +00:00
|
|
|
### Fixed
|
|
|
|
|
|
|
|
- Fixed post and profile page redirections.
|
2023-01-05 19:18:08 +00:00
|
|
|
- Fixed federation with GNU Social.
|