Age | Commit message (Collapse) | Author | |
---|---|---|---|
2023-03-06 | Fix unconfirmed accounts being registered as active users (#23803) | Claire | |
2023-03-04 | Upgrade to latest redis-rb 4.x and fix deprecations (#23616) | Jean byroot Boussier | |
Co-authored-by: Jean Boussier <jean.boussier@gmail.com> | |||
2023-03-03 | Only offer translation for supported languages (#23879) | Christian Schmidt | |
2023-03-03 | Fix external authentication not running onboarding code for new users (#23458) | Claire | |
2023-03-03 | Fix server error when failing to follow back followers from `/relationships` ↵ | Claire | |
(#23787) | |||
2023-03-03 | Fix “Remove all followers from the selected domains” being more ↵ | Claire | |
destructive than it claims (#23805) | |||
2023-03-02 | Fix deprecation warning about merging conditions (#23618) | Matt Jankowski | |
2023-02-27 | Fix single-record invalid condition on PollVote (#23810) | Matt Jankowski | |
2023-02-22 | Fix inefficiency when searching accounts per username in admin interface ↵ | Claire | |
(#23801) | |||
2023-02-21 | Autofix Rubocop Rails/WhereEquals (#23759) | Nick Schonning | |
2023-02-20 | Autofix Rubocop remaining Layout rules (#23679) | Nick Schonning | |
2023-02-20 | Autofix Rubocop Style/UnpackFirst (#23741) | Nick Schonning | |
2023-02-20 | Autofix Rubocop Rails/EnumHash (#23737) | Nick Schonning | |
2023-02-20 | Autofix Rubocop Rails/RedundantForeignKey (#23731) | Nick Schonning | |
2023-02-19 | Autofix Rubocop Style/RedundantBegin (#23703) | Nick Schonning | |
2023-02-18 | Autofix Rubocop Style/Lambda (#23696) | Nick Schonning | |
2023-02-18 | Autofix Rubocop Style/IfUnlessModifier (#23697) | Nick Schonning | |
2023-02-18 | Autofix Rubocop Lint/AmbiguousOperatorPrecedence (#23681) | Nick Schonning | |
2023-02-18 | Run rubocop formatting except line length (#23632) | Nick Schonning | |
2023-02-15 | Upgrade to Ruby 3.2 (#22928) | Aaron Patterson | |
Co-authored-by: Matthew Ford <matt@bitzesty.com> | |||
2023-02-10 | Fix admin-set follow recommandations being case-sensitive (#23500) | Claire | |
Fixes #23472 | |||
2023-02-10 | Fix server status URL being a required server setting (#23499) | Claire | |
2023-02-08 | Apply Rubocop Rails/WhereNot (#23448) | Nick Schonning | |
* Apply Rubocop Rails/WhereNot * Update spec for where.not | |||
2023-02-08 | Apply Rubocop Performance/BlockGivenWithExplicitBlock (#23441) | Nick Schonning | |
* Apply Rubocop Performance/BlockGivenWithExplicitBlock * Unprefix used block parameter | |||
2023-02-08 | Apply Rubocop Style/NegatedIfElseCondition (#23451) | Nick Schonning | |
2023-02-08 | Apply Rubocop Style/RedundantAssignment (#23452) | Nick Schonning | |
2023-02-08 | Apply Rubocop Performance/RedundantBlockCall (#23440) | Nick Schonning | |
2023-02-07 | Autofix Rails/EagerEvaluationLogMessage (#23429) | Nick Schonning | |
* Autofix Rails/EagerEvaluationLogMessage * Update spec for debug block syntax | |||
2023-02-04 | Add setting for status page URL (#23390) | Eugen Rochko | |
2023-01-25 | Add `roles` attribute to Account entities in REST API (#23255) | Claire | |
2023-01-24 | Fix account activation being triggered before email confirmation (#23245) | Claire | |
* Add tests * Fix account activation being triggered before email confirmation Fixes #23098 | |||
2023-01-21 | Fix Account Strike causing PG not null validation error (#23178) | Jeong Arm | |
2023-01-18 | Add option to make the landing page be /about even when trends are enabled ↵ | Claire | |
(#20808) * Add option to make the landing page be /about even when trends are enabled * Restablish /explore as landing page by default | |||
2023-01-18 | Add confirmation screen when handling reports (#22375) | Claire | |
* Add confirmation screen on moderation actions * Add flash notice when a report has been processed * Refactor tests * Add tests | |||
2023-01-18 | Fix situations in which instance actor can be set to a Mastodon-incompatible ↵ | Claire | |
name (#22307) * Validate internal actor * Use “internal.actor” by default for the server actor username * Fix instance actor username on the fly if it includes ':' * Change actor name from internal.actor to mastodon.internal | |||
2023-01-18 | Change domain block CSV parsing to be more robust and handle more lists (#21470) | Claire | |
* Change domain block CSV parsing to be more robust and handle more lists * Add some tests * Improve domain block import validation and reporting | |||
2023-01-13 | Don't crash on unobtainable avatars (#22462) | David Freedman | |
2023-01-13 | Fix crash when marking statuses as sensitive while some statuses are deleted ↵ | Claire | |
(#22134) * Do not offer to mark statuses as sensitive if there is no undeleted status with media attachments * Fix crash when marking statuses as sensitive while some statuses are deleted Fixes #21910 * Fix multiple strikes being created for a single report when selecting “Mark as sensitive” * Add tests | |||
2023-01-11 | Fix/remove calling private method with send in model (#22951) | Kaspar V | |
* fix(status): remove send usage for private unlink_from_conversations - make unlink_from_conversations public method - rename unlink_from_conversations to unlink_from_conversations! - fix send call on private method in statuses_vacuum and batched_remove_status_service * fix(feeds_vacuum): replace find_in_batches with in_batches because active record query results should be a little more efficient than itterating with map and each. Postgres can grasp such lists of ids much quicker than ruby can. Will probably make allmost no difference, but cannot hurt either. | |||
2023-01-06 | Fix account search not returning followed accounts first (#22956) | Darius Kazemi | |
* Make autosuggest for mentions return followed accounts first This makes it so that (when elasticsearch is disabled) when a user types '@foo' in the compose box, they are first going to get accounts they follow ordered by the ranking algorithm, and then second they will get accounts they do not follow, also ordered by the ranking algorithm. This makes behavior more consistent with user expectation and also with results when elasticsearch is enabled. * Fix ranking order to correct direction * One more fixup per @gargron suggestion * Tweak to ranking to no longer include following modifier | |||
2023-01-05 | Fix site upload validations (#22479) | Claire | |
* Fix site settings media upload handling of DimensionsValidationError Fixes #22234 * Fix underlying validations not being performed for site uploads | |||
2023-01-05 | Strip spaces around URL when adding a relay (#22655) | Claire | |
* Strip spaces around URL when adding a relay Fixes #22650 * Gracefuly handle URL parsing errors in URL validator | |||
2023-01-05 | Add webhook `account.approved` (#22938) | Alexander Ivanov | |
* Webhook `account.approved` when preparing new user * Update Webhook.EVENTS | |||
2023-01-04 | Fix ・ detection in hashtag regex to construct hashtag correctly (#22888) | Partho Ghosh | |
* Fix ・ detection in hashtag regex to construct hashtag correctly * Fixed rubocop liniting issues * More rubocop linting fix | |||
2022-12-15 | Add follow request banner on account header (#20785) | Claire | |
* Add requested_by to relationship maps * Display whether an account has requested to follow you on their profile | |||
2022-12-15 | Change remote media files to be downloaded outside of transactions (#21796) | Claire | |
2022-12-15 | Add "disabled" user filter for admin/accounts UI (#21282) | Jeong Arm | |
2022-12-15 | Save avatar or header correctly even if other one fails (#18465) | Jeong Arm | |
* Save avatar or header correctly if other one fails * Fix test | |||
2022-12-15 | Revoke all authorized applications on password reset (#21325) | Francis Murillo | |
* Clear sessions on password change * Rename User::clear_sessions to revoke_access for a clearer meaning * Add reset paassword controller test * Use User.find instead of User.find_for_authentication for reset password test * Use redirect and render for better test meaning in reset password Co-authored-by: Effy Elden <effy@effy.space> | |||
2022-12-07 | Fix failure when “Require a reason to join” is set with open ↵ | Claire | |
registrations (#22127) |