mirror of
https://github.com/LemmyNet/lemmy
synced 2024-11-10 06:54:12 +00:00
14dd513fc0
* Add option to search exclusively by post title (#5015) * Add option to search exclusively by post title * Address format issues * Remove duplicated 'removed' filter * Replace url_search with search_term * Build generic PostQuery before search match * Create default queries. Move title_only to Search struct. Rename Url to PostURL * Revert PostUrl to Url * Upgrading webmention to 0.6.0, removes native-tls (#4976) * Removing embedded pict-rs. (#5023) Some reasons for removing this: - Even as an optional dependency, it locks us to many specific versions of rust deps. - Pict-rs is a large app that can and should be run in on its own. - Violates the philosophy of separation of concerns. * Adding clearurls crate to clean tracking params from links and markdown. (#5018) * Adding clearurls crate to clean tracking params from links and markdown. - Thanks to @jenrdikw for creating this - Fixes #4905 * Upgrading to new version of clearurls * Fix clippy * Remove enable nsfw (#5017) * Remove `local_site.enable_nsfw` in favor of `site.content_warning` (fixes #4627) * cleanup usage of SiteView::read_local * test * uppercase * SSO Support (#4881) * Added OAUTH2 OIDC support * Fixes and improvements based on review feedback * use derive_new::new instead of TypedBuilder * merge migrations into a single file * fixes based on review feedback * remove unnecessary hostname_ui config * improvement based on review feedback * improvements based on review feedback * delete user oauth accounts at account deletion * fixes and improvements based on review feedback * removed auto_approve_application * support registration application with sso * improvements based on review feedback * making the TokenResponse an internal struct as it should be * remove duplicate struct * prevent oauth linking to unverified accounts * switched to manually entered username and removed the oauth name claim * fix cargo fmt * fix compile error * improvements based on review feedback * fixes and improvements based on review feedback --------- Co-authored-by: privacyguard <privacyguard@users.noreply.github.com> * Adding ability to restore content on user unban. (#4845) * Adding ability to restore content on user unban. - Fixes #4721 * Fixing api tests. * Fix package.json * Fixing lemmy-js-client dep. * Adding API test for restoring content. * Adding a default_comment_sort_type column for local_site and local_user. (#4469) * Adding a default_comment_sort_type column for local_site and local_user. - Renamed SortType to PostSortType in the DB and code. - Renamed references to default_sort_type to default_post_sort_type. - Fixes #4128 * Renaming migration to current date. * Simplifying PostSortType. * Simplify tests using default (#5026) * Feature/custom emoji and tagline views (#4580) * Add custom_emoji list route * Add tagline list route * Apply linting * Remove unecessary TaglineView * Add category filter for custom emoji * Add create tagline endpoint * Add update tagline endpoint * Add delete tagline endpoint * Format through lint.sh * Remove custom_emojis and taglines from site resource * Get random tagline on site requets * Impl Crud for Tagline Remove superfluous properties * Move tagline endpoints under /admin * Impl Crud for CustomEmoji * Remove delete from tagline and custom emoji impls * Check markdown for tagline * Validate markdown on tagline * Make content fields non optional Add error types for tagline validation * Use process_markdown instead of process_markdown_opt * Consolidate Tagline error types * Remove unecessary clone * Updat misleading comments * Remove local_site_id from tagline and custom_emoji * Update TaglineInserForm and TaglineUpdateForm * Add ignore_page_limits for custom emojis EmojiPicker needs to be able to retrieve all emojis in 1 call * Update custom_emoji_view Only keep get_all als helper function calling list with paging ignored Only order on category when filtering on category * Removing pointless get_all fn. * remove tagline length checks * make fields of TaglineInsertForm and TaglineUpdateForm mandatory * move emoji order statement * add comment for GetSiteResponse.tagline --------- Co-authored-by: Freakazoid182 <> Co-authored-by: SleeplessOne1917 <28871516+SleeplessOne1917@users.noreply.github.com> Co-authored-by: Dessalines <tyhou13@gmx.com> Co-authored-by: Felix Ableitner <me@nutomic.com> * Add category to RSS feeds (fixes #3446) (#5030) * Unittest for Search by title only (#5033) * added test for search by title only * formatted rust files * Upgrading to rust 1.81 (#5032) * Remove TypedBuilder in favor of derive_new (fixes #4863) (#5020) * Remove TypedBuilder in favor of derive_new (fixes #4863) * fix * fix * Ignore zero values when setting rate limits (fixes #4280) (#5029) * Ignore zero values when setting rate limits (fixes #4280) Havent bothered to add an error message for such an uncommon case. * fmt * reorder, add test * Always save remote image data (#4875) * Always save remote image data * cleanup --------- Co-authored-by: Felix Ableitner <me@nutomic.com> Co-authored-by: Dessalines <dessalines@users.noreply.github.com> * Get rid of a lot of pointless mut form initializations. (#5037) * Get rid of a lot of pointless mut form initializations. - Fixes #5036 * Fix clippy. * Simplify handling of NotFound SQL errors (fixes #4633) (#5031) * Simplify handling of NotFound SQL errors (fixes #4633) * fmt * wip * compiling * clippy * api tests * fix * Adding saved_only, liked_only, and disliked_only filters to search. (#5034) * Adding saved_only, liked_only, and disliked_only filters to search. - Fixes #4547 * Removing duplicate Url return type for search (was actually post). - This now works like the post_title_only filter. * Address PR comments. * Add saved_only post_view test. * Removing a few more Result<bool> . (#4977) * Removing a few more Result<bool> . * Running taplo fmt. * Running fmt. * Adding email taken test. * Fixing tests. * Adding back in missing admin check. * Rename check_has_local_followers function. * Conditionally hide comments on nsfw posts (fixes #4237) (#5028) * Conditionally hide comments on nsfw posts (fixes #4237) * fix test * Post scheduling (fixes #234) (#5025) * Post scheduling (fixes #234) * clippy * replace map_err with inspect_err * ignore unpublished posts in read queries * add api test * fmt * add some checks * address some review comments * allow updating schedule time * rewrite scheduled task * fmt * machete * compare date in sql, more filters * check for community ban in sql * remove api test (scheduled task only runs every 10 mins) * remove mut * add index * remove Post::read impl * fmt * fix * correctly handle changes to schedule time * normal users can only schedule up to 10 posts * Remove redundant local_user.auto_expand setting. (#5041) - Fixes #4643 Co-authored-by: SleeplessOne1917 <28871516+SleeplessOne1917@users.noreply.github.com> * Add ability to search for Community by its description (or title only). (#5044) - This changes the post_title_only for Search to title_only, since its also used in the community query now. - Fixes #4785 * Cleanup remaining use of Result<bool, Error> (fixes #4862) (#5047) * Replace clippy allow annotation with expect (fixes #5012) (#5048) * Add skip_serialize_none to OAuth structs with option fields (#5046) * Add skip_serialize_none to OAuth structs with option fields * PR feedback * Remove serde and ts export from SSO db-only structs * Apply scheduled post limit to future posts instead of past posts, and verify this in test (#5054) * test scheduled_post_count * fix syntax error * fix formatting * fix argument order * fix user_scheduled_post_count function * Avoid breaking changes, keep response fields as deprecated (#5058) * Adding skip_serializing_none to another OAuth API request. (#5060) * Handle partial settings backup (fixes #4307) (#5063) * Handle partial settings backup (fixes #4307) * clippy * Avoid stack overflow when fetching nested comments, reduce max comment depth to 50 (#5009) * Avoid stack overflow when fetching deeply nested comments * add test case * reduce comment depth, add docs * decrease * reduce max comment depth to 50 * fmt * clippy * cleanup * Update Rust crate clap to v4.5.18 (#5066) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update Rust crate reqwest to v0.12.8 (#5068) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update Rust crate sitemap-rs to v0.2.2 (#5069) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update Rust crate tracing-actix-web to v0.7.13 (#5070) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Changing renovate to run on the weekends. (#5067) - Lemmy builds take a long time, and the current schedule only runs for about 4 hours once a month, and renovate also rate-limits itself to ~ 2 per hour. This gives it a large enough window, without clogging up my runner machines. * Update Rust crate async-trait to v0.1.83 (#5065) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update dependency @types/jest to v29.5.13 (#5071) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Attempt to fix test for fetching deeply nested comment (#5072) Co-authored-by: Dessalines <dessalines@users.noreply.github.com> * Add modlog entries for bulk removals. (#5050) * Add modlog entries for bulk removals. - Added unit tests for removal / restore to api_common/utils. - Fixes #4699 * Address PR comments. * Combining remove and restore functions. * Trigger build. * Trigger build 2. * Changing allow to expect. * Adding local site settings to reject federated upvotes or downvotes. (#5038) * Adding local site settings to reject federated upvotes or downvotes. - Should help defend against downvote spamming instances. - Fixes #4086 * Adding new vote mode types. * Simpler activitypub vote check. * Adding undo vote for failed vote mode check. * Update crates/api_common/src/utils.rs --------- Co-authored-by: Nutomic <me@nutomic.com> * Replace `clippy::unwrap_used` in tests (#5064) * Add LemmyResult to session_middleware tests * Add LemmyResult to inboxes tests * Add LemmyResult to slurs tests * Add LemmyResult to markdown tests * Add LemmyResult to rate_limiter tests * Add LemmyResult to error tests * Add LemmyResult to api_common utils tests * Add LemmyResult to request tests * Add LemmyResult to claims tests * Propagate registration_applications errors * Remove clippy::unwrap_used from community tests * Add LemmyResult to community_view tests * Add LemmyResult to db_schema post tests * Add LemmyResult to site_aggregates tests * Add LemmyResult to private_message tests * Add LemmyResult to activity tests * Add LemmyResult to federation_allowlist tests * Add LemmyResult to comment_aggregates tests * Add LemmyResult to post_report tests * Add LemmyResult to moderator tests * Add LemmyResult to community_aggregates tests * Add LemmyResult to person_aggregates tests * Add LemmyResult to language tests * Add LemmyResult to post_aggregates tests * Add LemmyResult to db_schema comment tests * Add LemmyResult to actor_language tests * Add LemmyResult to vote_view tests * Add LemmyResult to registration_application_view tests * Add LemmyResult to private_message_view tests * Add LemmyResult to private_message_report_view tests * Add LemmyResult to post_report_view tests * Add LemmyResult to comment_report_view tests * Add LemmyResult to sitemap tests * Replace .expect() with .unwrap() * Format code * Remove clippy::unwrap_used from activity tests * Add diesel result in db_schema tests * Format code * Map to_bytes() error to LemmyErrorType * Remove clippy::unwrap_used from error tests * Removing a few more unwraps, and cleaning up language code. * Replace map_err with unwrap_or_default * Replace ok_or with and_then --------- Co-authored-by: Dessalines <tyhou13@gmx.com> * Adding a get_random_community endpoint. (#5042) * Adding a get_random_community endpoint. - Fixes #4698 * Fixing issue from main. * Adding ListingType to the query. * More concise query filter. * Resolve links to remote posts into local URL (#5057) * move code to new file * rewrite markdown links (fixes #2987) * add missing file * add helper fn * also convert post.url * simplify search.rs * clippy * also rewrite user/community links in markdown * Call from apub handlers, cleanup * no network requests in test * clippy * fix tests * serial * test * no mut * add api test * fix api test * Update Rust crate clap to v4.5.19 (#5080) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update Rust crate html2text to v0.12.6 (#5081) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update Rust crate rustls to v0.23.14 (#5083) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update rust-futures monorepo to v0.3.31 (#5090) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update Rust crate actix-web-prom to 0.9.0 (#5091) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update Rust crate regex to v1.11.0 (#5093) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update Rust crate serde_with to v3.10.0 (#5094) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update Rust crate serde_with to v3.11.0 (#5095) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update dependency ts-jest to v29.2.5 (#5089) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update dependency typescript to v5.6.2 (#5098) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update dependency eslint to v9.12.0 (#5097) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update docker/dockerfile Docker tag to v1.10 (#5099) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update pnpm to v9.12.0 (#5100) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update Rust crate reqwest to v0.12.8 (#5082) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update dependency @types/node to v22.7.4 (#5096) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update tamasfe/taplo Docker tag to v0.9.3 (#5101) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update tmknom/prettier Docker tag to v3.2.5 (#5102) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Add test case for community.hidden in post_view (ref #5074) (#5106) * Resize post thumbnails (fixes #4053) (#5107) * Resize post thumbnails (fixes #4053) * 256px * Update typescript-eslint monorepo to v8.8.1 (#5103) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update renovate config (#5109) * Update renovate config * ignroe rust updates, run on first day of month * fix * Add community alphabetic sorting (#5056) * Started * Finished? Need to write tests * Formatting * Formatting * Formatting * Write tests * Formatting * Formatting * Formatting * Unnecessary lifetime * Safety * Unwrap * Formatting * Formatting * Fix local_only test * Formatting * Name consistency * Adding lower to community name sort. --------- Co-authored-by: Dessalines <tyhou13@gmx.com> Co-authored-by: Dessalines <dessalines@users.noreply.github.com> * Support markdown sub/superscript, use external crate for spoilers (#5135) * Use external crate for spoiler tags * Also add other plugins * fix test * Remove comment_like.post_id column which is unnecessary (ref #5122) (#5134) * Allow admins to resolve removed or deleted objects via API (#5061) * Allow admins to resolve removed or deleted objects via API * Removing pointless TestUser. --------- Co-authored-by: Dessalines <tyhou13@gmx.com> * Remove individual user/community inboxes (#5124) * Remove endpoints for individual community/user inboxes fixes #4147 fixes #3928 * Remove shared_inbox_url columns * fmt * Fixing errors. --------- Co-authored-by: Carlos Cabello <carloscabello364@gmail.com> Co-authored-by: Nutomic <me@nutomic.com> Co-authored-by: privacyguard <92675882+privacyguard@users.noreply.github.com> Co-authored-by: privacyguard <privacyguard@users.noreply.github.com> Co-authored-by: Freakazoid182 <5238563+Freakazoid182@users.noreply.github.com> Co-authored-by: SleeplessOne1917 <28871516+SleeplessOne1917@users.noreply.github.com> Co-authored-by: leoseg <70430884+leoseg@users.noreply.github.com> Co-authored-by: Sander Saarend <sander@saarend.com> Co-authored-by: Joseph Silva <dull.bananas0@gmail.com> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: netbrum <130702882+netbrum@users.noreply.github.com> Co-authored-by: Steven Vergenz <1882376+stevenvergenz@users.noreply.github.com> Co-authored-by: Richard Schwab <gitrichardschwab-7a2qxq42kj@central-intelligence.agency> |
||
---|---|---|
.. | ||
00000000000000_diesel_initial_setup | ||
2019-02-26-002946_create_user | ||
2019-02-27-170003_create_community | ||
2019-03-03-163336_create_post | ||
2019-03-05-233828_create_comment | ||
2019-03-30-212058_create_post_view | ||
2019-04-03-155205_create_community_view | ||
2019-04-03-155309_create_comment_view | ||
2019-04-07-003142_create_moderation_logs | ||
2019-04-08-015947_create_user_view | ||
2019-04-11-144915_create_mod_views | ||
2019-04-29-175834_add_delete_columns | ||
2019-05-02-051656_community_view_hot_rank | ||
2019-06-01-222649_remove_admin | ||
2019-08-11-000918_add_nsfw_columns | ||
2019-08-29-040006_add_community_count | ||
2019-09-05-230317_add_mod_ban_views | ||
2019-09-09-042010_add_stickied_posts | ||
2019-10-15-181630_add_themes | ||
2019-10-19-052737_create_user_mention | ||
2019-10-21-011237_add_default_sorts | ||
2019-10-24-002614_create_password_reset_request | ||
2019-12-09-060754_add_lang | ||
2019-12-11-181820_add_site_fields | ||
2019-12-29-164820_add_avatar | ||
2020-01-01-200418_add_email_to_user_view | ||
2020-01-02-172755_add_show_avatar_and_email_notifications_to_user | ||
2020-01-11-012452_add_indexes | ||
2020-01-13-025151_create_materialized_views | ||
2020-01-21-001001_create_private_message | ||
2020-01-29-011901_create_reply_materialized_view | ||
2020-01-29-030825_create_user_mention_materialized_view | ||
2020-02-02-004806_add_case_insensitive_usernames | ||
2020-02-06-165953_change_post_title_length | ||
2020-02-07-210055_add_comment_subscribed | ||
2020-02-08-145624_add_post_newest_activity_time | ||
2020-03-06-202329_add_post_iframely_data | ||
2020-03-26-192410_add_activitypub_tables | ||
2020-04-03-194936_add_activitypub_for_posts_and_comments | ||
2020-04-07-135912_add_user_community_apub_constraints | ||
2020-04-14-163701_update_views_for_activitypub | ||
2020-04-21-123957_remove_unique_user_constraints | ||
2020-05-05-210233_add_activitypub_for_private_messages | ||
2020-06-30-135809_remove_mat_views | ||
2020-07-08-202609_add_creator_published | ||
2020-07-12-100442_add_post_title_to_comments_view | ||
2020-07-18-234519_add_unique_community_user_actor_ids | ||
2020-08-03-000110_add_preferred_usernames_banners_and_icons | ||
2020-08-06-205355_update_community_post_count | ||
2020-08-25-132005_add_unique_ap_ids | ||
2020-09-07-231141_add_migration_utils | ||
2020-10-07-234221_fix_fast_triggers | ||
2020-10-10-035723_fix_fast_triggers_2 | ||
2020-10-13-212240_create_report_tables | ||
2020-10-23-115011_activity_ap_id_column | ||
2020-11-05-152724_activity_remove_user_id | ||
2020-11-10-150835_community_follower_pending | ||
2020-11-26-134531_delete_user | ||
2020-12-02-152437_create_site_aggregates | ||
2020-12-03-035643_create_user_aggregates | ||
2020-12-04-183345_create_community_aggregates | ||
2020-12-10-152350_create_post_aggregates | ||
2020-12-14-020038_create_comment_aggregates | ||
2020-12-17-030456_create_alias_views | ||
2020-12-17-031053_remove_fast_tables_and_views | ||
2021-01-05-200932_add_hot_rank_indexes | ||
2021-01-26-173850_default_actor_id | ||
2021-01-27-202728_active_users_monthly | ||
2021-01-31-050334_add_forum_sort_index | ||
2021-02-02-153240_apub_columns | ||
2021-02-10-164051_add_new_comments_sort_index | ||
2021-02-13-210612_set_correct_aggregates_time_columns | ||
2021-02-25-112959_remove-categories | ||
2021-02-28-162616_clean_empty_post_urls | ||
2021-03-04-040229_clean_icon_urls | ||
2021-03-09-171136_split_user_table_2 | ||
2021-03-19-014144_add_col_local_user_validator_time | ||
2021-03-20-185321_move_matrix_id_to_person | ||
2021-03-31-103917_add_show_score_setting | ||
2021-03-31-105915_add_bot_account | ||
2021-03-31-144349_add_site_short_description | ||
2021-04-01-173552_rename_preferred_username_to_display_name | ||
2021-04-01-181826_add_community_agg_active_monthly_index | ||
2021-04-02-021422_remove_community_creator | ||
2021-04-20-155001_limit-admins-create-community | ||
2021-04-24-174047_add_show_read_post_setting | ||
2021-07-19-130929_add_show_new_post_notifs_setting | ||
2021-07-20-102033_actor_name_length | ||
2021-08-02-002342_comment_count_fixes | ||
2021-08-04-223559_create_user_community_block | ||
2021-08-16-004209_fix_remove_bots_from_aggregates | ||
2021-08-17-210508_create_mod_transfer_community | ||
2021-09-20-112945_jwt-secret | ||
2021-10-01-141650_create_admin_purge | ||
2021-11-22-135324_add_activity_ap_id_index | ||
2021-11-22-143904_add_required_public_key | ||
2021-11-23-031528_add_report_published_index | ||
2021-11-23-132840_email_verification | ||
2021-11-23-153753_add_invite_only_columns | ||
2021-12-09-225529_add_published_to_email_verification | ||
2021-12-14-181537_add_temporary_bans | ||
2022-01-04-034553_add_hidden_column | ||
2022-01-20-160328_remove_site_creator | ||
2022-01-28-104106_instance-actor | ||
2022-02-01-154240_add_community_title_index | ||
2022-02-18-210946_default_theme | ||
2022-04-04-183652_update_community_aggregates_on_soft_delete | ||
2022-04-11-210137_fix_unique_changeme | ||
2022-04-12-114352_default_post_listing_type | ||
2022-04-12-185205_change_default_listing_type_to_local | ||
2022-04-19-111004_default_require_application | ||
2022-04-26-105145_only_mod_can_post | ||
2022-05-19-153931_legal-information | ||
2022-05-20-135341_embed-url | ||
2022-06-12-012121_add_site_hide_modlog_names | ||
2022-06-13-124806_post_report_name_length | ||
2022-06-21-123144_language-tags | ||
2022-07-07-182650_comment_ltrees | ||
2022-08-04-150644_add_application_email_admins | ||
2022-08-04-214722_add_distinguished_comment | ||
2022-08-05-203502_add_person_post_aggregates | ||
2022-08-22-193848_comment-language-tags | ||
2022-09-07-113813_drop_ccnew_indexes_function | ||
2022-09-07-114618_pm-reports | ||
2022-09-08-102358_site-and-community-languages | ||
2022-09-24-161829_remove_table_aliases | ||
2022-10-06-183632_move_blocklist_to_db | ||
2022-11-13-181529_create_taglines | ||
2022-11-20-032430_sticky_local | ||
2022-11-21-143249_remove-federation-settings | ||
2022-11-21-204256_user-following | ||
2022-12-05-110642_registration_mode | ||
2023-01-17-165819_cleanup_post_aggregates_indexes | ||
2023-02-01-012747_fix_active_index | ||
2023-02-05-102549_drop-site-federation-debug | ||
2023-02-07-030958_community-collections | ||
2023-02-11-173347_custom_emojis | ||
2023-02-13-172528_add_report_email_admins | ||
2023-02-13-221303_add_instance_software_and_version | ||
2023-02-15-212546_add_post_comment_saved_indexes | ||
2023-02-16-194139_add_totp_secret | ||
2023-04-14-175955_add_listingtype_sorttype_enums | ||
2023-04-23-164732_add_person_details_indexes | ||
2023-05-10-095739_force_enable_undetermined_language | ||
2023-06-06-104440_index_post_url | ||
2023-06-07-105918_add_hot_rank_columns | ||
2023-06-17-175955_add_listingtype_sorttype_hour_enums | ||
2023-06-19-055530_add_retry_worker_setting | ||
2023-06-19-120700_no_double_deletion | ||
2023-06-20-191145_add_listingtype_sorttype_3_6_9_months_enums | ||
2023-06-21-153242_add_captcha | ||
2023-06-22-051755_fix_local_communities_marked_non_local | ||
2023-06-22-101245_increase_user_theme_column_size | ||
2023-06-24-072904_add_open_links_in_new_tab_setting | ||
2023-06-24-185942_aggegates_published_indexes | ||
2023-06-27-065106_add_ui_settings | ||
2023-07-04-153335_add_optimized_indexes | ||
2023-07-05-000058_person-admin | ||
2023-07-06-151124_hot-rank-future | ||
2023-07-08-101154_fix_soft_delete_aggregates | ||
2023-07-10-075550_add-infinite-scroll-setting | ||
2023-07-11-084714_receive_activity_table | ||
2023-07-14-154840_add_optimized_indexes_published | ||
2023-07-14-215339_aggregates_nonzero_indexes | ||
2023-07-18-082614_post_aggregates_community_id | ||
2023-07-19-163511_comment_sort_hot_rank_then_score | ||
2023-07-24-232635_trigram-index | ||
2023-07-26-000217_create_controversial_indexes | ||
2023-07-26-222023_site-aggregates-one | ||
2023-07-27-134652_remove-expensive-broken-trigger | ||
2023-08-01-101826_admin_flag_local_user | ||
2023-08-01-115243_persistent-activity-queue | ||
2023-08-02-144930_password-reset-token | ||
2023-08-02-174444_fix-timezones | ||
2023-08-08-163911_add_post_listing_mode_setting | ||
2023-08-09-101305_user_instance_block | ||
2023-08-23-182533_scaled_rank | ||
2023-08-29-183053_add_listing_type_moderator_view | ||
2023-08-31-205559_add_image_upload | ||
2023-09-01-112158_auto_resolve_report | ||
2023-09-07-215546_post-queries-efficient | ||
2023-09-11-110040_rework-2fa-setup | ||
2023-09-12-194850_add_federation_worker_index | ||
2023-09-18-141700_login-token | ||
2023-09-20-110614_drop-show-new-post-notifs | ||
2023-09-28-084231_import_user_settings_rate_limit | ||
2023-10-02-145002_community_followers_count_federated | ||
2023-10-06-133405_add_keyboard_navigation_setting | ||
2023-10-13-175712_allow_animated_avatars | ||
2023-10-17-181800_drop_remove_community_expires | ||
2023-10-23-184941_hot_rank_greatest_fix | ||
2023-10-24-030352_change_primary_keys_and_remove_some_id_columns | ||
2023-10-24-131607_proxy_links | ||
2023-10-24-183747_autocollapse_bot_comments | ||
2023-10-27-142514_post_url_content_type | ||
2023-11-01-223740_federation-published | ||
2023-11-02-120140_apub-signed-fetch | ||
2023-11-07-135409_inbox_unique | ||
2023-11-22-194806_low_rank_defaults | ||
2023-12-06-180359_edit_active_users | ||
2023-12-19-210053_tolerable-batch-insert-speed | ||
2023-12-22-040137_make-mixed-sorting-directions-work-with-tuple-comparison | ||
2024-01-02-094916_site-name-not-unique | ||
2024-01-05-213000_community_aggregates_add_local_subscribers | ||
2024-01-15-100133_local-only-community | ||
2024-01-22-105746_lemmynsfw-changes | ||
2024-01-25-151400_remove_auto_resolve_report_trigger | ||
2024-02-12-211114_add_vote_display_mode_setting | ||
2024-02-15-171358_default_instance_sort_type | ||
2024-02-24-034523_replaceable-schema | ||
2024-02-27-204628_add_post_alt_text | ||
2024-02-28-144211_hide_posts | ||
2024-03-04-143245_remove_show_scores_column | ||
2024-03-06-104706_local_image_user_opt | ||
2024-03-06-201637_url_blocklist | ||
2024-04-05-153647_alter_vote_display_mode_defaults | ||
2024-04-08-204327_custom_emoji_tagline_changes | ||
2024-04-15-105932_community_followers_url_optional | ||
2024-04-23-020604_add_post_id_index | ||
2024-05-04-140749_separate_triggers | ||
2024-05-05-162540_add_image_detail_table | ||
2024-06-17-160323_fix_post_aggregates_featured_local | ||
2024-06-24-000000_ap_id_triggers | ||
2024-07-01-014711_exponential_controversy | ||
2024-08-03-155932_increase_post_url_max_length | ||
2024-09-12-130204_drop-enable-nsfw | ||
2024-09-16-000000_default_comment_sort_type | ||
2024-09-16-095656_schedule-post | ||
2024-09-16-174833_create_oauth_provider | ||
2024-09-20-134838_add_federation_vote_rejection | ||
2024-09-23-133038_remove_auto_expand | ||
2024-10-18-074533_no-individual-inboxes | ||
2024-10-23-091053_comment-vote-remote-postid | ||
.gitkeep |