]> Untitled Git - lemmy.git/blobdiff - RELEASES.md
add enable_federated_downvotes site option
[lemmy.git] / RELEASES.md
index 7220f82c902a2a99b14ec317220aef433a55095d..bd56985a5dff19c741813de01fb18a648e208b3a 100644 (file)
-#  Lemmy v0.16.6 Release : bug fixes (2022-07-19)
+# Lemmy v0.18.4 Release (2023-08-08)
+
+## What is Lemmy?
+
+Lemmy is a self-hosted social link aggregation and discussion platform. It is completely free and open, and not controlled by any company. This means that there is no advertising, tracking, or secret algorithms. Content is organized into communities, so it is easy to subscribe to topics that you are interested in, and ignore others. Voting is used to bring the most interesting items to the top.
+
+## Major Changes
+
+This version fixes the problem of comment context not loading properly. It also fixes a couple other bugs.
+
+## Support development
+
+@dessalines and @nutomic are working full-time on Lemmy to integrate community contributions, fix bugs, optimize performance and much more. This work is funded exclusively through donations.
+
+If you like using Lemmy, and want to make sure that we will always be available to work full time building it, consider [donating to support its development](https://join-lemmy.org/donate). No one likes recurring donations, but they’ve proven to be the only way that open-source software like Lemmy can stay independent and alive.
+
+- [Liberapay](https://liberapay.com/Lemmy) (preferred option)
+- [Open Collective](https://opencollective.com/lemmy)
+- [Patreon](https://www.patreon.com/dessalines)
+- [Cryptocurrency](https://join-lemmy.org/donate) (scroll to bottom of page)
+
+## Upgrade instructions
+
+Follow the upgrade instructions for [ansible](https://github.com/LemmyNet/lemmy-ansible#upgrading) or [docker](https://join-lemmy.org/docs/en/administration/install_docker.html#updating). There are no config or API changes with this release.
+
+If you need help with the upgrade, you can ask in our [support forum](https://lemmy.ml/c/lemmy_support) or on the [Matrix Chat](https://matrix.to/#/#lemmy-admin-support-topics:discuss.online).
+
+## Changes
+
+### Lemmy
+
+- Fix fetch instance software version from nodeinfo ([#3772](https://github.com/LemmyNet/lemmy/issues/3772))
+- Correct logic to meet join-lemmy requirement, don't have closed signups. Allows Open and Applications. ([#3761](https://github.com/LemmyNet/lemmy/issues/3761))
+- Fix ordering when doing a comment_parent type `list_comments` ([#3823](https://github.com/LemmyNet/lemmy/issues/3823))
+
+### Lemmy-UI
+
+- Mark post as read when clicking "Expand here" on the preview image on the post listing page ([#1600](https://github.com/LemmyNet/lemmy/issues/1600)) ([#1978](https://github.com/LemmyNet/lemmy/issues/1978))
+- Update translation submodule ([#2023](https://github.com/LemmyNet/lemmy/issues/2023))
+- Fix comment insertion from context views. Fixes #2030 ([#2031](https://github.com/LemmyNet/lemmy/issues/2031))
+- Fix password autocomplete ([#2033](https://github.com/LemmyNet/lemmy/issues/2033))
+- Fix suggested title " " spaces ([#2037](https://github.com/LemmyNet/lemmy/issues/2037))
+- Expanded the RegEx to check if the title contains new line caracters. Should fix issue #1962 ([#1965](https://github.com/LemmyNet/lemmy/issues/1965))
+- ES-Lint tweak ([#2001](https://github.com/LemmyNet/lemmy/issues/2001))
+- Upgrading deps, running prettier. ([#1987](https://github.com/LemmyNet/lemmy/issues/1987))
+- Fix document title of admin settings being overwritten by tagline and emoji forms ([#2003](https://github.com/LemmyNet/lemmy/issues/2003))
+- Use proper modifier key in markdown text input on macOS ([#1995](https://github.com/LemmyNet/lemmy/issues/1995))
+
+# Lemmy v0.18.3 Release (2023-07-28)
+
+## What is Lemmy?
+
+Lemmy is a self-hosted social link aggregation and discussion platform. It is completely free and open, and not controlled by any company. This means that there is no advertising, tracking, or secret algorithms. Content is organized into communities, so it is easy to subscribe to topics that you are interested in, and ignore others. Voting is used to bring the most interesting items to the top.
+
+## Major Changes
+
+This version brings major optimizations to the database queries, which significantly reduces CPU usage. There is also a change to the way federation activities are stored, which reduces database size by around 80%. Special thanks to @phiresky for their work on DB optimizations.
+
+The federation code now includes a check for dead instances which is used when sending activities. This helps to reduce the amount of outgoing POST requests, and also reduce server load.
+
+In terms of security, Lemmy now performs HTML sanitization on all messages which are submitted through the API or received via federation. Together with the tightened content-security-policy from 0.18.2, cross-site scripting attacks are now much more difficult.
+
+Other than that, there are numerous bug fixes and minor enhancements.
+
+## Support development
+
+@dessalines and @nutomic are working full-time on Lemmy to integrate community contributions, fix bugs, optimize performance and much more. This work is funded exclusively through donations.
+
+If you like using Lemmy, and want to make sure that we will always be available to work full time building it, consider [donating to support its development](https://join-lemmy.org/donate). No one likes recurring donations, but they’ve proven to be the only way that open-source software like Lemmy can stay independent and alive.
+
+- [Liberapay](https://liberapay.com/Lemmy) (preferred option)
+- [Open Collective](https://opencollective.com/lemmy)
+- [Patreon](https://www.patreon.com/dessalines)
+- [Cryptocurrency](https://join-lemmy.org/donate) (scroll to bottom of page)
+
+## Upgrade instructions
+
+Follow the upgrade instructions for [ansible](https://github.com/LemmyNet/lemmy-ansible#upgrading) or [docker](https://join-lemmy.org/docs/en/administration/install_docker.html#updating). There are no config or API changes with this release.
+
+This upgrade takes ~5 minutes for the database migrations to complete.
+
+If you need help with the upgrade, you can ask in our [support forum](https://lemmy.ml/c/lemmy_support) or on the [Matrix Chat](https://matrix.to/#/#lemmy-admin-support-topics:discuss.online).
+
+## Changes
+
+### Lemmy
+
+- Restore markdown quotes after sanitize ([#3708](https://github.com/LemmyNet/lemmy/issues/3708)) ([#3749](https://github.com/LemmyNet/lemmy/issues/3749))
+- remove performance-problematic and buggy duplicate site aggregates ([#3732](https://github.com/LemmyNet/lemmy/issues/3732))
+- remove n^2 part of person triggers, improve community aggregate trigger ([#3739](https://github.com/LemmyNet/lemmy/issues/3739))
+- Revert "Add controversial ranking ([#3205](https://github.com/LemmyNet/lemmy/issues/3205))"
+- Omit local instance from federated instances list ([#3712](https://github.com/LemmyNet/lemmy/issues/3712))
+- add trigram index to search ([#3719](https://github.com/LemmyNet/lemmy/issues/3719))
+- Federation tests replication round1 - demonstrate absent replication of comment deletes ([#3657](https://github.com/LemmyNet/lemmy/issues/3657))
+- Make resolve_object not require auth [#3685](https://github.com/LemmyNet/lemmy/issues/3685) ([#3716](https://github.com/LemmyNet/lemmy/issues/3716))
+- Sanitize html ([#3708](https://github.com/LemmyNet/lemmy/issues/3708))
+- Add controversial ranking ([#3205](https://github.com/LemmyNet/lemmy/issues/3205))
+- Skip fragile API tests ([#3723](https://github.com/LemmyNet/lemmy/issues/3723))
+- Enable gzip for reqwest ([#3696](https://github.com/LemmyNet/lemmy/issues/3696))
+- Dont authenticate user after successful password reset [#3714](https://github.com/LemmyNet/lemmy/issues/3714) ([#3715](https://github.com/LemmyNet/lemmy/issues/3715))
+- Bump version of dependency "webmention" ([#3711](https://github.com/LemmyNet/lemmy/issues/3711))
+- prevent ordering by comment path without post filter ([#3717](https://github.com/LemmyNet/lemmy/issues/3717))
+- Update Dockerfile to run process as non-privileged user. ([#3709](https://github.com/LemmyNet/lemmy/issues/3709))
+- Dont show removed comments to unauthenticated users (release branch) ([#3689](https://github.com/LemmyNet/lemmy/issues/3689))
+- Add dev profile to strip symbols and disable debug info (ref [#3610](https://github.com/LemmyNet/lemmy/issues/3610)) ([#3611](https://github.com/LemmyNet/lemmy/issues/3611))
+- Dont publish releases to crates.io (fixes [#3272](https://github.com/LemmyNet/lemmy/issues/3272)) ([#3664](https://github.com/LemmyNet/lemmy/issues/3664))
+- Change logic for determining comment default language (fixes [#3451](https://github.com/LemmyNet/lemmy/issues/3451)) ([#3672](https://github.com/LemmyNet/lemmy/issues/3672))
+- Post remove delete federation outbound fix0 ([#3613](https://github.com/LemmyNet/lemmy/issues/3613))
+- disable rustfmt feature on rosetta-build ([#3679](https://github.com/LemmyNet/lemmy/issues/3679))
+- Make sure comments are sorted by hot_rank, then score. ([#3667](https://github.com/LemmyNet/lemmy/issues/3667))
+- Ignore errors when fetching community mods (fixes [#3460](https://github.com/LemmyNet/lemmy/issues/3460)) ([#3674](https://github.com/LemmyNet/lemmy/issues/3674))
+- Upgrade activitypub library to 0.4.6 (fixes [#3222](https://github.com/LemmyNet/lemmy/issues/3222)) ([#3675](https://github.com/LemmyNet/lemmy/issues/3675))
+- Denormalize community_id into post_aggregates for a 1000x speed-up when loading posts ([#3653](https://github.com/LemmyNet/lemmy/issues/3653))
+- Fixing hot_ranks and scores to append a published sort. ([#3618](https://github.com/LemmyNet/lemmy/issues/3618))
+- Use local_site.default_post_listing_type as the initial default listing type for new users ([#3666](https://github.com/LemmyNet/lemmy/issues/3666))
+- Don't panic when scheduled tasks can't connect to database ([#3634](https://github.com/LemmyNet/lemmy/issues/3634))
+- Add http cache for webfingers ([#3317](https://github.com/LemmyNet/lemmy/issues/3317))
+- Optimize hot rank updates ([#3617](https://github.com/LemmyNet/lemmy/issues/3617))
+- Split activity table into sent and received parts (fixes [#3103](https://github.com/LemmyNet/lemmy/issues/3103)) ([#3583](https://github.com/LemmyNet/lemmy/issues/3583))
+- work around race condition on community fetch ([#3414](https://github.com/LemmyNet/lemmy/issues/3414))
+- Make `lemmy_api_common` wasm-compatible ([#3587](https://github.com/LemmyNet/lemmy/issues/3587))
+- Check for dead federated instances (fixes [#2221](https://github.com/LemmyNet/lemmy/issues/2221)) ([#3427](https://github.com/LemmyNet/lemmy/issues/3427))
+- Fix wrong SMTP port when TLS is being used (fixes [#3574](https://github.com/LemmyNet/lemmy/issues/3574)) ([#3607](https://github.com/LemmyNet/lemmy/issues/3607))
+- Add infinite scroll user option ([#3572](https://github.com/LemmyNet/lemmy/issues/3572))
+- Shrink capacity in `RateLimitStorage::remove_older_than` ([#3536](https://github.com/LemmyNet/lemmy/issues/3536))
+- Fix [#3501](https://github.com/LemmyNet/lemmy/issues/3501) - Fix aggregation counts for elements removed and deleted ([#3543](https://github.com/LemmyNet/lemmy/issues/3543))
+
+### Lemmy-UI
+
+- Fixing comment report showing dot. ([#1989](https://github.com/LemmyNet/lemmy-ui/issues/1989))
+- Make sure comment score color matches your vote. ([#1988](https://github.com/LemmyNet/lemmy-ui/issues/1988))
+- Allow limited set of markdown in title rendering ([#1977](https://github.com/LemmyNet/lemmy-ui/issues/1977))
+- Allow selecting from all languages in person settings (fixes [#1971](https://github.com/LemmyNet/lemmy-ui/issues/1971)) ([#1985](https://github.com/LemmyNet/lemmy-ui/issues/1985))
+- Separate final comment row + add classes ([#1982](https://github.com/LemmyNet/lemmy-ui/issues/1982))
+- Fix CSP in dev mode ([#1918](https://github.com/LemmyNet/lemmy-ui/issues/1918))
+- Fix base.output (see [#1911](https://github.com/LemmyNet/lemmy-ui/issues/1911)) ([#1943](https://github.com/LemmyNet/lemmy-ui/issues/1943))
+- Add show/hide button to password fields ([#1861](https://github.com/LemmyNet/lemmy-ui/issues/1861))
+- Fix start_url and scope ([#1931](https://github.com/LemmyNet/lemmy-ui/issues/1931))
+- Remove lodash.merge dependency ([#1911](https://github.com/LemmyNet/lemmy-ui/issues/1911))
+- Set person_id to myId in handleLeaveModTeam ([#1929](https://github.com/LemmyNet/lemmy-ui/issues/1929))
+- Remove invalid default option from language list ([#1919](https://github.com/LemmyNet/lemmy-ui/issues/1919))
+- Comment border tweak ([#1820](https://github.com/LemmyNet/lemmy-ui/issues/1820))
+- Add Toast Messages for Bad Logins ([#1874](https://github.com/LemmyNet/lemmy-ui/issues/1874))
+
+# Lemmy v0.18.1 Release (2023-07-07)
+
+## What is Lemmy?
+
+Lemmy is a self-hosted social link aggregation and discussion platform. It is completely free and open, and not controlled by any company. This means that there is no advertising, tracking, or secret algorithms. Content is organized into communities, so it is easy to subscribe to topics that you are interested in, and ignore others. Voting is used to bring the most interesting items to the top.
+
+## Major Changes
+
+This release includes major improvements to performance, specifically optimizations of database queries. Special thanks to @phiresky, @ruud, @sunaurus and many others for investigating these. Additionally this version includes a fix for another cross-site scripting vulnerability. For these reasons instance admins should upgrade as soon as possible.
+
+As promised, captchas are supported again. And as usual there are countless bug fixes and minor improvements, many of them contributed by community members.
+
+## Upgrade instructions
+
+Follow the upgrade instructions for [ansible](https://github.com/LemmyNet/lemmy-ansible#upgrading) or [docker](https://join-lemmy.org/docs/en/administration/install_docker.html#updating).
+
+If you need help with the upgrade, you can ask in our [support forum](https://lemmy.ml/c/lemmy_support) or on the [Matrix Chat](https://matrix.to/#/#lemmy-admin-support-topics:discuss.online).
+
+## Support development
+
+We (@dessalines and @nutomic) have been working full-time on Lemmy for almost three years. This is largely thanks to support from [NLnet foundation](https://nlnet.nl/).
+
+If you like using Lemmy, and want to make sure that we will always be available to work full time building it, consider [donating to support its development](https://join-lemmy.org/donate). No one likes recurring donations, but they've proven to be the only way that open-source software like Lemmy can stay independent and alive.
+
+## Changes
+
+### API
+
+- Added a few more post sorts, a `show_nsfw` to `ListCommunities`, and `open_links_in_new_tab` to `SaveUserSettings`.
+- Full list of changes [here](https://github.com/LemmyNet/lemmy-js-client/compare/0.18.0...0.18.1-rc.3)
+
+### Lemmy Server
+
+- Revert "Make sure hot rank sorts for post and community filter by positive hot ranks. ([#3497](https://github.com/LemmyNet/lemmy/issues/3497))" ([#3521](https://github.com/LemmyNet/lemmy/issues/3521))
+- Make hot rank not crash on future ([#3517](https://github.com/LemmyNet/lemmy/issues/3517))
+- Upgrade crossbeam-channel ([#3512](https://github.com/LemmyNet/lemmy/issues/3512))
+- Update prettier to 3.0.0 ([#3509](https://github.com/LemmyNet/lemmy/issues/3509))
+- improve admin and mod check to not do seq scans and return unnecessary data ([#3483](https://github.com/LemmyNet/lemmy/issues/3483))
+- Only allow http(s) scheme for urls (ref [#3505](https://github.com/LemmyNet/lemmy/issues/3505)) ([#3508](https://github.com/LemmyNet/lemmy/issues/3508))
+- Change security contact mail ([#3506](https://github.com/LemmyNet/lemmy/issues/3506))
+- Allow cross-origin requests ([#3421](https://github.com/LemmyNet/lemmy/issues/3421))
+- Make sure hot rank sorts for post and community filter by positive hot ranks. ([#3497](https://github.com/LemmyNet/lemmy/issues/3497))
+- Fixes wrong community moderator ordering. ([#3495](https://github.com/LemmyNet/lemmy/issues/3495))
+- Use fixed prettier version for CI ([#3507](https://github.com/LemmyNet/lemmy/issues/3507))
+- upgrade markdown-it to fix panic ([#3490](https://github.com/LemmyNet/lemmy/issues/3490))
+- improve performance of community followers inbox query ([#3482](https://github.com/LemmyNet/lemmy/issues/3482))
+- Cache federation blocklist ([#3486](https://github.com/LemmyNet/lemmy/issues/3486))
+- Add Prometheus endpoint ([#3456](https://github.com/LemmyNet/lemmy/issues/3456))
+- Adding a person.admin index, and featured_local/community indexes. ([#3479](https://github.com/LemmyNet/lemmy/issues/3479))
+- Add feature for enabling json logging ([#3462](https://github.com/LemmyNet/lemmy/issues/3462))
+- fix(posts/comments/search): return error on invalid community name ([#3418](https://github.com/LemmyNet/lemmy/issues/3418))
+- Improved validation of display names (Fixes [#3436](https://github.com/LemmyNet/lemmy/issues/3436)) ([#3437](https://github.com/LemmyNet/lemmy/issues/3437))
+- Remove not needed anymore http-signature-normalization-actix dependency ([#3458](https://github.com/LemmyNet/lemmy/issues/3458))
+- 300 comment limit. ([#3306](https://github.com/LemmyNet/lemmy/issues/3306))
+- Do not decrement comment score twice when removing then deleting. ([#3196](https://github.com/LemmyNet/lemmy/issues/3196))
+- Remove excessive content_type header configuration ([#3470](https://github.com/LemmyNet/lemmy/issues/3470))
+- Adding rest of community sorts. Fixes [#3374](https://github.com/LemmyNet/lemmy/issues/3374) ([#3376](https://github.com/LemmyNet/lemmy/issues/3376))
+- Dont compare db string errors (fixes [#1393](https://github.com/LemmyNet/lemmy/issues/1393)) ([#3424](https://github.com/LemmyNet/lemmy/issues/3424))
+- Add Open links in new tab setting ([#3318](https://github.com/LemmyNet/lemmy/issues/3318))
+- Fix awesome-lemmy owner ([#3469](https://github.com/LemmyNet/lemmy/issues/3469))
+- Add awesome-lemmy to LemmyNet? ([#3413](https://github.com/LemmyNet/lemmy/issues/3413))
+- Use serde(skip) instead of skip_serializing, add placeholder values ([#3362](https://github.com/LemmyNet/lemmy/issues/3362))
+- Mark follow as pending when subscribing to remote community (fixes [#3384](https://github.com/LemmyNet/lemmy/issues/3384)) ([#3406](https://github.com/LemmyNet/lemmy/issues/3406))
+- Fix formatting for latest nightly (#ref 3467)
+- Remove PerformApub trait ([#3423](https://github.com/LemmyNet/lemmy/issues/3423))
+- Fix quoting of max-file in docker-compose.yml ([#3442](https://github.com/LemmyNet/lemmy/issues/3442))
+- don't strip, log trace if requested ([#3425](https://github.com/LemmyNet/lemmy/issues/3425))
+- Update federated posts to not cache sensitive images if not allow by local site ([#3253](https://github.com/LemmyNet/lemmy/issues/3253))
+- Fix concatenation of audio captcha wav files ([#3350](https://github.com/LemmyNet/lemmy/issues/3350))
+- Automatically manage database when running scripts/test.sh ([#3389](https://github.com/LemmyNet/lemmy/issues/3389))
+- Fixing release script. ([#3398](https://github.com/LemmyNet/lemmy/issues/3398))
+- Added gitattributes to normalize all files to lf ([#3386](https://github.com/LemmyNet/lemmy/issues/3386))
+- Update activitypub-federation crate to 0.4.5 ([#3379](https://github.com/LemmyNet/lemmy/issues/3379))
+- Fix cargo warnings ([#3397](https://github.com/LemmyNet/lemmy/issues/3397))
+- Fix missing sorting types ([#3370](https://github.com/LemmyNet/lemmy/issues/3370))
+- docs(api): Add api-common info on generating TypeScript bindings ([#3330](https://github.com/LemmyNet/lemmy/issues/3330))
+- Remove redundant calls to `Iterator::collect` ([#3365](https://github.com/LemmyNet/lemmy/issues/3365))
+- Run cargo update as part of release script ([#3369](https://github.com/LemmyNet/lemmy/issues/3369))
+- Fixes [#2900](https://github.com/LemmyNet/lemmy/issues/2900) - Checks slur regex to see if it is too permissive ([#3146](https://github.com/LemmyNet/lemmy/issues/3146))
+- add new flag to api ([#3363](https://github.com/LemmyNet/lemmy/issues/3363))
+- feat: re-added captcha checks ([#3289](https://github.com/LemmyNet/lemmy/issues/3289))
+- Limit password resets ([#3344](https://github.com/LemmyNet/lemmy/issues/3344))
+- Fixing the release script. ([#3295](https://github.com/LemmyNet/lemmy/issues/3295))
+- Batch hot rank updates ([#3175](https://github.com/LemmyNet/lemmy/issues/3175))
+- Feature add three six and nine months options backend ([#3226](https://github.com/LemmyNet/lemmy/issues/3226))
+- Fetch community outbox and moderators in parallel ([#3360](https://github.com/LemmyNet/lemmy/issues/3360))
+- Remove networks from docker-compose.yml ([#3356](https://github.com/LemmyNet/lemmy/issues/3356))
+- Item URL should point to post URL ([#3345](https://github.com/LemmyNet/lemmy/issues/3345))
+- Site Metadata: resolve relative URLs for embedded images/videos ([#3338](https://github.com/LemmyNet/lemmy/issues/3338))
+- Use compression middleware ([#3343](https://github.com/LemmyNet/lemmy/issues/3343))
+- Remove another unused dev dependency
+- Adjust the config check to be a separate faster to compile binary ([#3313](https://github.com/LemmyNet/lemmy/issues/3313))
+- Remove unused actix_rt dependency
+- Add Liftoff to README.md ([#3357](https://github.com/LemmyNet/lemmy/issues/3357))
+- Respond with `Content-Type: application/activity+json` ([#3353](https://github.com/LemmyNet/lemmy/issues/3353))
+- Fix lemmy UI environment variable ([#3299](https://github.com/LemmyNet/lemmy/issues/3299))
+- Leave no apk cache in Docker image ([#3327](https://github.com/LemmyNet/lemmy/issues/3327))
+- Allow wildcard imports in schema.rs ([#3293](https://github.com/LemmyNet/lemmy/issues/3293))
+- Update DB local_user.theme type to text ([#3266](https://github.com/LemmyNet/lemmy/issues/3266))
+- feat: allow all admins to purge content ([#3271](https://github.com/LemmyNet/lemmy/issues/3271))
+- Add separate Post check for is_valid_body_field ([#3263](https://github.com/LemmyNet/lemmy/issues/3263))
+- Remove DELETED_REPLACEMENT_URL
+- Add support for sslmode=require for diesel-async DB connections ([#3189](https://github.com/LemmyNet/lemmy/issues/3189))
+- Remove `actix_rt` & use standard tokio spawn ([#3158](https://github.com/LemmyNet/lemmy/issues/3158))
+- Revert "feat: re-added captcha checks ([#3249](https://github.com/LemmyNet/lemmy/issues/3249))" ([#3288](https://github.com/LemmyNet/lemmy/issues/3288))
+- Fixing removed posts showing. Fixes [#2875](https://github.com/LemmyNet/lemmy/issues/2875) ([#3279](https://github.com/LemmyNet/lemmy/issues/3279))
+- Reversed requirement question logic ([#3283](https://github.com/LemmyNet/lemmy/issues/3283))
+- feat: re-added captcha checks ([#3249](https://github.com/LemmyNet/lemmy/issues/3249))
+- Add support for sslmode=require for diesel-async DB connections ([#3189](https://github.com/LemmyNet/lemmy/issues/3189))
+- Remove `actix_rt` & use standard tokio spawn ([#3158](https://github.com/LemmyNet/lemmy/issues/3158))
+- after 30 days post deletion, replace comment.content and post.body with 'Permanently Deleted'
+
+### Lemmy UI
+
+- Dark theme tweaks ([#1840](https://github.com/LemmyNet/lemmy-ui/issues/1840))
+- fix: Adjust sidebar banner to wrap bellow the title ([#1819](https://github.com/LemmyNet/lemmy-ui/issues/1819))
+- add ruby annotation support ([#1831](https://github.com/LemmyNet/lemmy-ui/issues/1831))
+- fix: Fix mobile thumbnail being too small ([#1814](https://github.com/LemmyNet/lemmy-ui/issues/1814))
+- Use Join Lemmy hostname as link text in footer ([#1737](https://github.com/LemmyNet/lemmy-ui/issues/1737))
+- fix: Add focus ring color to post action buttons and markdown help link ([#1816](https://github.com/LemmyNet/lemmy-ui/issues/1816))
+- fix: Fix focus ring styles for radio button toggles [#1772](https://github.com/LemmyNet/lemmy-ui/issues/1772) ([#1773](https://github.com/LemmyNet/lemmy-ui/issues/1773))
+- fix toaster upon user settings change ([#1802](https://github.com/LemmyNet/lemmy-ui/issues/1802))
+- Fix home page not using site-level listing type [#1612](https://github.com/LemmyNet/lemmy-ui/issues/1612) ([#1778](https://github.com/LemmyNet/lemmy-ui/issues/1778))
+- feat: Subtler user badge style ([#1796](https://github.com/LemmyNet/lemmy-ui/issues/1796))
+- Fix data-bs-theme ([#1810](https://github.com/LemmyNet/lemmy-ui/issues/1810))
+- v0.18.1-rc.10
+- Attempt to fix inability to logout from some instances (subdomains) ([#1809](https://github.com/LemmyNet/lemmy-ui/issues/1809))
+- feat(theme): Vaporwave ([#1682](https://github.com/LemmyNet/lemmy-ui/issues/1682))
+- fix: Revert smaller text size ([#1795](https://github.com/LemmyNet/lemmy-ui/issues/1795))
+- Updated the regex for isAuthPath to reduce false positive hits ([#1806](https://github.com/LemmyNet/lemmy-ui/issues/1806))
+- fix: Add focus border to markdown toolbar buttons
+- fix: Add data-bs-theme attribute for user dark/light modes ([#1782](https://github.com/LemmyNet/lemmy-ui/issues/1782))
+- fix: Break text on post titles so long words don't overflow
+- fix: Fix comment collapse and vote buttons not having focus style ([#1789](https://github.com/LemmyNet/lemmy-ui/issues/1789))
+- Add missing modlog reasons ([#1787](https://github.com/LemmyNet/lemmy-ui/issues/1787))
+- Fix search page breaking on initial load when logged in ([#1781](https://github.com/LemmyNet/lemmy-ui/issues/1781))
+- feat: Add PR template ([#1785](https://github.com/LemmyNet/lemmy-ui/issues/1785))
+- Fix profile loading spinner
+- fix: Move getRoleLabelPill to the only component that uses it
+- fix: Remove unused hasBadges() function
+- fix: Fix badge alignment and break out into component
+- Move export to barrel file
+- fix: Fix avatar image overlay aspect ratio
+- fix: Fix circle image aspect ratio
+- fix: Add some spacing between upload field and image; fix circle image aspect ratio
+- Prevent JWT token from showing up on error page
+- fix: Fix vote buttons not showing spinners while registering vote [#1761](https://github.com/LemmyNet/lemmy-ui/issues/1761)
+- fix: Fix joined button check color
+- fix: Fix up filter row gaps and margins a little
+- fix: Fix heading levels
+- fix: Simplify row classes a bit
+- fix: Fix some gaps in search filters
+- fix: Fix row gap on search options
+- fix: Add bottom margin to inbox controls
+- fix: Small cleanup to search/inbox controls
+- fix: Update comment to reflect new logic
+- fix: Post expand button was not showing if body-only post
+- fix: Fix vote buttons in list view variable width
+- fix: Fix thumb buttons having gray background [#1754](https://github.com/LemmyNet/lemmy-ui/issues/1754)
+- Add metaKey to markdown-textarea, for macos
+- Fix jwt cookie path
+- Fix quotedText bugs in markdown editor
+- Fix DM replies
+- Add fallback date-fns locale import
+- Fix date-fns locale import failing for some locales
+- fix req.cookie nonexistent -.-
+- Enforce SameSite=Strict ([#1713](https://github.com/LemmyNet/lemmy-ui/issues/1713))
+- fix service worker path
+- fix cache auth method
+- Fix authorized route false flag
+- Fix dev caching issue
+- change max-age to 5 for non-authed responses
+- Fix `PostListing` mobile margin layout issue ([#1706](https://github.com/LemmyNet/lemmy-ui/issues/1706))
+- Cache static data for a day
+- Try increasing node memory.
+- Fix taglines on `Home` ([#1701](https://github.com/LemmyNet/lemmy-ui/issues/1701))
+- Use git hash to break cache ([#1684](https://github.com/LemmyNet/lemmy-ui/issues/1684))
+- fix issue with thumbnails ([#1695](https://github.com/LemmyNet/lemmy-ui/issues/1695))
+- Fixing site setup. Fixes [#1694](https://github.com/LemmyNet/lemmy-ui/issues/1694) ([#1697](https://github.com/LemmyNet/lemmy-ui/issues/1697))
+- Removing unecessary timezone adjusting
+- Allow audio captcha through CSP ([#1690](https://github.com/LemmyNet/lemmy-ui/issues/1690))
+- fix formatting
+- Fixing lints. ([#1686](https://github.com/LemmyNet/lemmy-ui/issues/1686))
+- Search only communities by default when coming from communities page
+- Add Security.txt ([#1408](https://github.com/LemmyNet/lemmy-ui/issues/1408))
+- Fixing timezone issue with date-fns. Fixes [#1680](https://github.com/LemmyNet/lemmy-ui/issues/1680) ([#1681](https://github.com/LemmyNet/lemmy-ui/issues/1681))
+- Add error toast for 413 content too large response on image uploads ([#1675](https://github.com/LemmyNet/lemmy-ui/issues/1675))
+- Add publicPath for static js ([#1672](https://github.com/LemmyNet/lemmy-ui/issues/1672))
+- Fix search page to stop `couldnt_find_object` error ([#1669](https://github.com/LemmyNet/lemmy-ui/issues/1669))
+- Add fixed width/height to `PostListing` thumbnail parent ([#1660](https://github.com/LemmyNet/lemmy-ui/issues/1660))
+- fix: Add user action buttons to post dropdown [#1653](https://github.com/LemmyNet/lemmy-ui/issues/1653) ([#1655](https://github.com/LemmyNet/lemmy-ui/issues/1655))
+- Adding nightly docker build. ([#1678](https://github.com/LemmyNet/lemmy-ui/issues/1678))
+- Return appropriate error codes ([#1665](https://github.com/LemmyNet/lemmy-ui/issues/1665))
+- Add i386 theme ([#1662](https://github.com/LemmyNet/lemmy-ui/issues/1662))
+- Set cache-control headers to reduce server load (fixes [#412](https://github.com/LemmyNet/lemmy-ui/issues/412)) ([#1641](https://github.com/LemmyNet/lemmy-ui/issues/1641))
+- formatting
+- make subscribe/unsub/pending button consistent
+- Revert [#1463](https://github.com/LemmyNet/lemmy-ui/issues/1463), markdown default lang select
+- remove hard-coded text foreground color classes ([#1658](https://github.com/LemmyNet/lemmy-ui/issues/1658))
+- Fix subscribe and block community buttons not showing up on first load
+- change me-2 to me-1, no need for me-2 width
+- make mod shrunken label text-primary
+- add @jsit advice
+- fix weird borders when markdown textarea is disabled
+- use span
+- always show badge on mobile
+- fix a few colors
+- Reduce fetchLimit (40 -> 20) ([#1638](https://github.com/LemmyNet/lemmy-ui/issues/1638))
+- Moving webpack-bundle-analyzer require inside mode check to fix docker.
+- Fix allowed and blocked instances not being fetched for admin settings ([#1627](https://github.com/LemmyNet/lemmy-ui/issues/1627))
+- fix: Restore mdNoImages import
+- fix: Fix alignment of preview mini-overlay buttons on thumbs
+- fix: Remove body preview
+- fix: Move toggle button to its own function
+- fix: Show metadata preview card on all post pages
+- Fix feedback on banning an unbanning
+- fix vote button alignment
+- remove icon ([#1618](https://github.com/LemmyNet/lemmy-ui/issues/1618))
+- Indicate valid and invalid fields in signup form ([#1450](https://github.com/LemmyNet/lemmy-ui/issues/1450))
+- capitalize button ([#1616](https://github.com/LemmyNet/lemmy-ui/issues/1616))
+- Move password reset form to separate route, view ([#1390](https://github.com/LemmyNet/lemmy-ui/issues/1390))
+- feat(UI): Reduce base font size ([#1591](https://github.com/LemmyNet/lemmy-ui/issues/1591))
+- Fix: missing semantic css classes and html elements ([#1583](https://github.com/LemmyNet/lemmy-ui/issues/1583))
+- partially revert change
+- chore(DX): Add prettier to eslint config for use with editors
+- fix: Remove unnecessary class
+- fix: Remove unnecessary classes
+- fix: Restore removed classes
+- fix: Remove wrapping li's
+- fix: Remove extraneous classes
+- fix: Move things back to where they were
+- chore: Separate post mod buttons into functions
+- remove hook entirely
+- fix bug collapsing previews when voting
+- fix: Remove unnecessary string interpolations
+- fix: Remove smallavatars prop
+- fix: Restore icon avatars; make smaller and roundrect
+- fix: Use Bootstrap file upload form control styles
+- Fix feedback on banning an unbanning
+- fix vote button alignment
+- remove icon ([#1618](https://github.com/LemmyNet/lemmy-ui/issues/1618))
+- Indicate valid and invalid fields in signup form ([#1450](https://github.com/LemmyNet/lemmy-ui/issues/1450))
+- capitalize button ([#1616](https://github.com/LemmyNet/lemmy-ui/issues/1616))
+- Move password reset form to separate route, view ([#1390](https://github.com/LemmyNet/lemmy-ui/issues/1390))
+- feat(UI): Reduce base font size ([#1591](https://github.com/LemmyNet/lemmy-ui/issues/1591))
+- Fix: missing semantic css classes and html elements ([#1583](https://github.com/LemmyNet/lemmy-ui/issues/1583))
+- chore(DX): Add prettier to eslint config for use with editors
+- Only give child comments colored borders
+- Associate NSFW label with its checkbox
+- fix: Remove unnecessary string interpolations
+- fix: Remove unnecessary class
+- fix: Remove unnecessary classes
+- fix: Restore removed classes
+- fix: Remove wrapping li's
+- fix: Remove extraneous classes
+- fix: Move things back to where they were
+- chore: Separate post mod buttons into functions
+- remove toUpperCase since the translation is uppercase
+- fix vote button alignment
+- partially revert change
+- Add space between cancel and ban button
+- add tooltip
+- Fix feedback on banning an unbanning
+- make post creator badge stand out more
+- remove icon ([#1618](https://github.com/LemmyNet/lemmy-ui/issues/1618))
+- Indicate valid and invalid fields in signup form ([#1450](https://github.com/LemmyNet/lemmy-ui/issues/1450))
+- capitalize button ([#1616](https://github.com/LemmyNet/lemmy-ui/issues/1616))
+- Move password reset form to separate route, view ([#1390](https://github.com/LemmyNet/lemmy-ui/issues/1390))
+- feat(UI): Reduce base font size ([#1591](https://github.com/LemmyNet/lemmy-ui/issues/1591))
+- Fix: missing semantic css classes and html elements ([#1583](https://github.com/LemmyNet/lemmy-ui/issues/1583))
+- remove hook entirely
+- run prettier
+- add darkly-pureblack theme
+- chore(DX): Add prettier to eslint config for use with editors
+- fix bug collapsing previews when voting
+- Associate NSFW label with its checkbox
+- fix: Remove unused comment
+- fix: Fix image/title wrapping on small
+- fix: Fix post listing vote/image/title widths
+- fix: Fix a too-small thumbnail column
+- fix: Set max height on post listing thumbnails
+- fix: Remove unnecessary string interpolations
+- fix: Tidy up divs
+- fix: Make navbar container full screen width [#1536](https://github.com/LemmyNet/lemmy-ui/issues/1536)
+- feat: Use plus/minus expand button in title for showing body/preview
+- fix: Remove unnecessary class
+- fix: Remove unnecessary classes
+- fix: Restore removed classes
+- fix: Remove wrapping li's
+- fix: Remove extraneous classes
+- fix: Move things back to where they were
+- chore: Separate post mod buttons into functions
+- feat(UI): Fix some link hover colors
+- feat(UI): Hide avatars on listings
+- feat(UI): Always put post body behind togggle on post listings (home/community) [#1595](https://github.com/LemmyNet/lemmy-ui/issues/1595)
+- Only give child comments colored borders
+- Update post-listing.tsx
+- CSP should allow data urls for media-src or the audio captcha won't work
+- fix(UI): Make max-width wider, and make sidebar narrower on wide screens [#1536](https://github.com/LemmyNet/lemmy-ui/issues/1536)
+- Use spae instead of margin
+- Fix search request being called twice on search page
+- Add margin to new comment text
+- handle embedded iframe content better
+- fix lint error
+- fix error on prod
+- chore: Empty commit to re-trigger Woodpecker
+- chore(a11y): Remove a11y eslint overrides, as there are (almost) no more violations
+- fix(a11y): Change the look and behavior of some file upload fields
+- fix: Add type=button to buttons
+- fix: Fix some classes on private message collapse/expand button
+- chore(a11y): Remove now-passing jsx-a11y tests from exemptions
+- fix(a11y): Change divs and links to buttons
+- fix: Remove invalid class
+- chore: Empty commit to re-trigger Woodpecker
+- fix: Fix some Bootstrap 5 font classes
+- fix: Fix some Bootstrap 5 font classes
+- fix(a11y): Restore aria-activedescendant
+- chore: Empty commit to re-trigger Woodpecker
+- fix(a11y): Make foreground of 'remove image button' white
+- fix(a11y): Add alt text to emojis form
+- fix(a11y): Fix some a11y markup in Searchable Select component
+- fix(a11y): Change image remove button to true button element
+- fix: Ignore rule for clickaway div; 'Esc' works for this
+- fix(a11y): Fix non-list item being inside ul list in navbar
+- fix: Fix non-unique ID attribute on re-used element
+- fix: Fix another class
+- fix: Fix some Bootstrap 5 font classes
+- fix: Fix some emoji escape logic
+- fix: Button doesn't need tabindex
+- fix: Fix incorrect function reference
+- fix: Empty commit to re-trigger Woodpecker
+- fix: Emoji picker can be closed with escape key, other a11y fixes
+- fix: Fix some a11y issues on jump to content button
+- fix: Fix up some interface language logic and design
+- fix: Clarify a comment
+- Remove federation worker count
+- fix: Add triangle alert icon to language warning
+- added litely-compact
+- changed where custom compact code goes
+- added darkly-compact - issue 552
+- Refactor first load handling
+- Fix issue when navigating awat from settings
+- Give function better name
+- Make date distance format use correct verbiage
+- Extract date fns setup
+- Remove unused dep
+- Replace momentjs with date-fns
+- Cache post listings and restore listing state when using browser back navigation buttons.
+- Fix homepage `scrollTo(0, 0)` failing when document size changes.
+- Moved `!isBrowser()` check to `FirstLoadServer.isFirstLoad`
+- Fix server-side rendering after first load.
+- fix: Add aria-describedby for language warning
+- Update src/shared/components/common/markdown-textarea.tsx
+- Fix comments expanding when they're not supposed to ([#1540](https://github.com/LemmyNet/lemmy-ui/issues/1540))
+- Update src/shared/components/common/markdown-textarea.tsx
+- fix: Disable save button if no text is entered
+- fix: Fix some more private message form stuff
+- Remove federation worker count
+- feat: Clean up the Create Private Message page a bit
+- Fix emojis being unable to save
+- fix: Use simpler syntax for languageId array
+- fix: Add triangle alert icon to language warning
+- fix: Fix language selection bug
+- fix: Use Interface Language instead
+- Refactor first load handling
+- fix: Add aria-describedby for language warning
+- Fix issue when navigating awat from settings
+- Give function better name
+- Cache post listings and restore listing state when using browser back navigation buttons.
+- fix: Specify vote content type so buttons work for both comments and posts
+- Fix homepage `scrollTo(0, 0)` failing when document size changes.
+- Moved `!isBrowser()` check to `FirstLoadServer.isFirstLoad`
+- Fix server-side rendering after first load.
+- fix!: Try to get Vote Buttons component working in Comments
+- fix: Remove unused prop
+- Change function name
+- Make date distance format use correct verbiage
+- Extract date fns setup
+- Fix homepage `scrollTo(0, 0)` failing when document size changes.
+- fix: Rework some vote buttons architecture
+- Remove unused dep
+- Replace momentjs with date-fns
+- fix: Undo some other extraneous changes
+- fix: Undo some extraneous changes
+- fix: Remove tippy duplicate functions
+- fix: Revert to old mobile vote style
+- feat: Move vote buttons to separate component
+- feat: Default language dropdowns to user's primary language
+- added litely-compact
+- changed where custom compact code goes
+- added darkly-compact - issue 552
+
+# Lemmy v0.18 Release (2023-06-23)
+
+## What is Lemmy?
+
+Lemmy is a self-hosted social link aggregation and discussion platform. It is completely free and open, and not controlled by any company. This means that there is no advertising, tracking, or secret algorithms. Content is organized into communities, so it is easy to subscribe to topics that you are interested in, and ignore others. Voting is used to bring the most interesting items to the top.
+
+## Major Changes
+
+### HTTP API instead of Websocket
+
+Until now Lemmy-UI used websocket for all API requests. This has [many disadvantages](https://github.com/LemmyNet/lemmy/issues/2841#issuecomment-1535469357), like making the code harder to maintain, and causing live updates to the site which many users dislike. Most importantly, it requires keeping a connection open between server and client at all times, which causes increased load and makes scaling difficult. That's why we decided to rip out websocket entirely, and switch to HTTP instead. This change was made much more urgent by the sudden influx of new users. [@CannotSleep420](https://lemmygrad.ml/u/CannotSleep420) and [@dessalines](https://lemmy.ml/u/dessalines) have been working hard for the past weeks to implement this change in lemmy-ui.
+
+HTTP on its own is already more lightweight than websocket. Additionally it also allows for caching of server responses which can decrease load on the database. Here is an [experimental nginx config](https://github.com/LemmyNet/lemmy-ansible/pull/75) which enables response caching. Note that Lemmy doesn't send any cache-control headers yet, so there is a chance that private data gets cached and served to other users. Test carefully and use at your own risk.
+
+### Two-Factor Authentication
+
+New support for two-factor authentication. Use an app like [andOTP](https://f-droid.org/es/packages/org.shadowice.flocke.andotp/) or [Authenticator Pro](https://f-droid.org/packages/me.jmh.authenticatorpro/) to store a secret for your account. This secret needs to be entered every time you login. It ensures that an attacker can't access your account with the password alone.
+
+### Custom Emojis
+
+Instance admins can add different images as emojis which can be referenced by users when posting.
+
+### Other changes
+
+#### Progressive Web App
+
+Lemmy's web client can now be installed on browsers that support PWAs, both on desktop and mobile. It will use an instance's icon and name for the app if they are set, making it look like a given instance is an app.
+
+**Note for desktop Firefox users**: the desktop version of Firefox does not have built in support for PWAs. If you would like to use a Lemmy instance as a PWA, use [use this extension](https://addons.mozilla.org/en-US/firefox/addon/pwas-for-firefox/).
+
+#### Error Pages
+
+Lemmy's web client now has error pages that include resources to use if the problem persists. This should be much less jarring for users than displaying a white screen with the text "404 _error message here_".
+
+#### Route Changes
+
+Pages that took arguments in the route now take query parameters instead. For example, a link to lemmy.ml's home page with a few options used to look like this:
+
+```
+https://lemmy.ml/home/data_type/Post/listing_type/All/sort/Active/page/1
+```
+
+The new route would look like this:
+
+```
+https://lemmy.ml?listingType=All
+```
+
+Note that you now only have to specify parameters you want instead of all of them.
+
+#### Searchable select redesign
+
+The searchable selects, such as those used on the search page, have a new look and feel. No more inexplicable green selects when using the lightly themes!
+
+#### Share button
+
+Posts on the web client now have a share button on supported browsers. This can be used to share posts to other applications quickly and easily.
+
+#### Lemmy-UI Overall look and feel
+
+lemmy-ui is now upgraded to bootstrap 5, and every component is now much cleaner.
+
+Special thanks to [sleepless](https://github.com/SleeplessOne1917), [alectrocute](https://github.com/alectrocute), [jsit](https://github.com/jsit), and many others for their great work on improving and re-organizing lemmy-ui.
+
+#### Database optimizations
+
+Special thanks to [johanndt](https://github.com/johanndt), for suggesting improvements to Lemmy's database queries. Some of these suggestions have already been implemented, and more are on the way.
+
+Query speed is Lemmy's main performance bottleneck, so we really appreciate any help database experts can provide.
+
+#### Captchas
+
+Captchas are not available in this version, as they need to be reimplemented in a different way. They will be back in 0.18.1, so wait with upgrading if you rely on them.
+
+## Upgrade instructions
+
+The installation instructions have been slightly updated. However there are no breaking changes, other than removing websocket.
+
+Follow the upgrade instructions for [ansible](https://github.com/LemmyNet/lemmy-ansible#upgrading) or [docker](https://join-lemmy.org/docs/en/administration/install_docker.html#updating).
+
+If you need help with the upgrade, you can ask in our [support forum](https://lemmy.ml/c/lemmy_support) or on the [Matrix Chat](https://matrix.to/#/#lemmy-admin-support-topics:discuss.online).
+
+## Support development
+
+We (@dessalines and @nutomic) have been working full-time on Lemmy for almost three years. This is largely thanks to support from [NLnet foundation](https://nlnet.nl/).
+
+If you like using Lemmy, and want to make sure that we will always be available to work full time building it, consider [donating to support its development](https://join-lemmy.org/donate). No one likes recurring donations, but they've proven to be the only way that open-source software like Lemmy can stay independent and alive.
+
+## Changes
+
+### API
+
+- Our HTTP API docs are at https://join-lemmy.org/api/
+  - These are now auto-generated directly from our rust type definitions, using [ts-rs](https://github.com/Aleph-Alpha/ts-rs).
+  - [A comparison from the last release](https://github.com/LemmyNet/lemmy-js-client/compare/0.17.0-rc.1...0.18.0-rc.1)
+- There are two breaking changes since the last release:
+  - [GetSite.taglines](https://join-lemmy.org/api/interfaces/GetSiteResponse.html#taglines) is now required, and is an empty array.
+  - `SortType` and `ListingType` are now numbered enums, rather than strings in some places, and numbers in others.
+
+### Config
+
+- No changes, but you can see the current config options [here.](https://github.com/LemmyNet/lemmy/blob/main/config/defaults.hjson)
+
+### Lemmy Server
+
+- Speedup cargo check in CI ([#3239](https://github.com/LemmyNet/Lemmy/issues/3239))
+- Correct error messages if user registers with taken user/email ([#3093](https://github.com/LemmyNet/Lemmy/issues/3093))
+- Fixing cross_post duplicates. Fixes [#3233](https://github.com/LemmyNet/Lemmy/issues/3233) ([#3234](https://github.com/LemmyNet/Lemmy/issues/3234))
+- Add test to check reading and listing posts return my_vote ([#3215](https://github.com/LemmyNet/Lemmy/issues/3215))
+- Reduce memory usage of rate limiting ([#3111](https://github.com/LemmyNet/Lemmy/issues/3111))
+- Adding current domain from settings to CORs. ([#3231](https://github.com/LemmyNet/Lemmy/issues/3231))
+- remove debugging println ([#3227](https://github.com/LemmyNet/Lemmy/issues/3227))
+- Fixing comment_view unit tests. ([#3224](https://github.com/LemmyNet/Lemmy/issues/3224))
+- Fix parameter ordering for new_report_subject string ([#3210](https://github.com/LemmyNet/Lemmy/issues/3210))
+- Move cors default to source code ([#3219](https://github.com/LemmyNet/Lemmy/issues/3219))
+- Fixing tag deploys. ([#3216](https://github.com/LemmyNet/Lemmy/issues/3216))
+- Feature add hours as sorting options backend ([#3161](https://github.com/LemmyNet/Lemmy/issues/3161))
+- Don't check verified email when an admin logs in ([#3209](https://github.com/LemmyNet/Lemmy/issues/3209))
+- fix: add CORS origin environment variable ([#3191](https://github.com/LemmyNet/Lemmy/issues/3191))
+- make embedded pict-rs port configurable ([#3201](https://github.com/LemmyNet/Lemmy/issues/3201))
+- Move connection creation into scheduler. ([#3120](https://github.com/LemmyNet/Lemmy/issues/3120))
+- Calculate initial hot_rank and hot_rank_active for posts and comments from other instances ([#3131](https://github.com/LemmyNet/Lemmy/issues/3131))
+- Changed github issue template to align logically with the question asked ([#3135](https://github.com/LemmyNet/Lemmy/issues/3135))
+- Update README.md ([#3137](https://github.com/LemmyNet/Lemmy/issues/3137))
+- Remove e-mail verification success e-mails ([#3124](https://github.com/LemmyNet/Lemmy/issues/3124))
+- Fix Hidden communities showing in community list ([#3094](https://github.com/LemmyNet/Lemmy/issues/3094))
+- Update all dependencies ([#3091](https://github.com/LemmyNet/Lemmy/issues/3091))
+- Prevent making an instance private if federation is enabled. ([#3074](https://github.com/LemmyNet/Lemmy/issues/3074))
+- Handle scheduled task errors ([#3090](https://github.com/LemmyNet/Lemmy/issues/3090))
+- Fix unapproved users being able to log in after registration mode set to closed. ([#3096](https://github.com/LemmyNet/Lemmy/issues/3096))
+- Link tafkars in readme ([#3087](https://github.com/LemmyNet/Lemmy/issues/3087))
+- doc: Added pythorhead library in readme ([#3114](https://github.com/LemmyNet/Lemmy/issues/3114))
+- Only create ltree postgres extension in migration if doesn't already exist ([#3092](https://github.com/LemmyNet/Lemmy/issues/3092))
+- add issue template yml from lemmy-ui ([#3086](https://github.com/LemmyNet/Lemmy/issues/3086))
+- Fix Issue [#3075](https://github.com/LemmyNet/Lemmy/issues/3075) by using None for local fields instead of Some(false) ([#3088](https://github.com/LemmyNet/Lemmy/issues/3088))
+- stop requiring superuser to run migrations ([#3002](https://github.com/LemmyNet/Lemmy/issues/3002))
+- Fixes [#1884](https://github.com/LemmyNet/Lemmy/issues/1884) - Support Spoiler Tags ([#3018](https://github.com/LemmyNet/Lemmy/issues/3018))
+- Fix compilation
+- Align default DB password with documentation ([#3068](https://github.com/LemmyNet/Lemmy/issues/3068))
+- Update RSS url ([#3053](https://github.com/LemmyNet/Lemmy/issues/3053))
+- Docker yaml anchors and docker logs ([#3027](https://github.com/LemmyNet/Lemmy/issues/3027))
+- Fix ports used by docker ([#3012](https://github.com/LemmyNet/Lemmy/issues/3012))
+- Add limit and pagination to feeds ([#2980](https://github.com/LemmyNet/Lemmy/issues/2980))
+- Upgrade activitypub-federation to 0.4.1 ([#3039](https://github.com/LemmyNet/Lemmy/issues/3039))
+- Adding Lemmy-Swift-Client to README.md ([#3026](https://github.com/LemmyNet/Lemmy/issues/3026))
+- use usize::MAX for line wrap length, since lettre does it for us ([#3034](https://github.com/LemmyNet/Lemmy/issues/3034))
+- update doku ([#3003](https://github.com/LemmyNet/Lemmy/issues/3003))
+- Fix contributing link ([#3015](https://github.com/LemmyNet/Lemmy/issues/3015))
+- Better issue templates. ([#2991](https://github.com/LemmyNet/Lemmy/issues/2991))
+- allow specifying db uri in config file ([#2956](https://github.com/LemmyNet/Lemmy/issues/2956))
+- Adding hot_rank columns in place of function sorting. ([#2952](https://github.com/LemmyNet/Lemmy/issues/2952))
+- make shebangs posix compliant ([#2974](https://github.com/LemmyNet/Lemmy/issues/2974))
+- Fix private message e-mail notification subject and body ([#2963](https://github.com/LemmyNet/Lemmy/issues/2963))
+- Add comment depth check ([#2940](https://github.com/LemmyNet/Lemmy/issues/2940))
+- Add `lemmyexternalproxy` to `lemmy` so that it can talk to the internet ([#2960](https://github.com/LemmyNet/Lemmy/issues/2960))
+- Fix translation build error (fixes [#2967](https://github.com/LemmyNet/Lemmy/issues/2967)) ([#2968](https://github.com/LemmyNet/Lemmy/issues/2968))
+- Activitypub breaking changes for Lemmy 0.18 ([#2705](https://github.com/LemmyNet/Lemmy/issues/2705))
+- Add db index for post.url column ([#2929](https://github.com/LemmyNet/Lemmy/issues/2929))
+- Fall back to String for Comment::path when not using the full feature ([#2941](https://github.com/LemmyNet/Lemmy/issues/2941))
+- update diesel to 2.1.0 and diesel-async to 0.3.0 (issue [#2882](https://github.com/LemmyNet/Lemmy/issues/2882)) ([#2895](https://github.com/LemmyNet/Lemmy/issues/2895))
+- Fix dev setups. ([#2944](https://github.com/LemmyNet/Lemmy/issues/2944))
+- Set version name for crates.io release ([#2928](https://github.com/LemmyNet/Lemmy/issues/2928))
+- Fix handling of follows addressed to single value ([#2920](https://github.com/LemmyNet/Lemmy/issues/2920))
+- Remove chatserver ([#2919](https://github.com/LemmyNet/Lemmy/issues/2919))
+- Adding taglines to SiteResponse. Fixes [#2925](https://github.com/LemmyNet/Lemmy/issues/2925) ([#2926](https://github.com/LemmyNet/Lemmy/issues/2926))
+- Fix _All_ reports not showing. Fixes [#2902](https://github.com/LemmyNet/Lemmy/issues/2902) ([#2903](https://github.com/LemmyNet/Lemmy/issues/2903))
+- README updates ([#2913](https://github.com/LemmyNet/Lemmy/issues/2913))
+- Filter empty username strings from Mastodon (fixes [#2886](https://github.com/LemmyNet/Lemmy/issues/2886)) ([#2887](https://github.com/LemmyNet/Lemmy/issues/2887))
+- Update humane tech badge to point to new repo ([#2898](https://github.com/LemmyNet/Lemmy/issues/2898))
+- Update to fix nginx proxy config for Docker Installs ([#2908](https://github.com/LemmyNet/Lemmy/issues/2908))
+- Remove jaeger, opentelemetry from docker-compose ([#2894](https://github.com/LemmyNet/Lemmy/issues/2894))
+- Replace remmel with Mlem. ([#2890](https://github.com/LemmyNet/Lemmy/issues/2890))
+- Add CORS support for debug mode. ([#2884](https://github.com/LemmyNet/Lemmy/issues/2884))
+- Don't filter comments of posts from blocked community when viewing post detail ([#2880](https://github.com/LemmyNet/Lemmy/issues/2880))
+- Remove websocket code ([#2878](https://github.com/LemmyNet/Lemmy/issues/2878))
+- Dont return error in case optional auth is invalid ([#2879](https://github.com/LemmyNet/Lemmy/issues/2879))
+- Remove unnecessary clone ([#2874](https://github.com/LemmyNet/Lemmy/issues/2874))
+- Remove GetCommunityResponse.default_post_language ([#2867](https://github.com/LemmyNet/Lemmy/issues/2867))
+- Dont refetch post url metadata when post is received again
+- Dont retry outgoing HTTP requests (ref [#2865](https://github.com/LemmyNet/Lemmy/issues/2865))
+- Force enable undetermined language ([#2851](https://github.com/LemmyNet/Lemmy/issues/2851))
+- Fix typo that caused error ([#2861](https://github.com/LemmyNet/Lemmy/issues/2861))
+- Prettier check ([#2855](https://github.com/LemmyNet/Lemmy/issues/2855))
+- Downgrade postgres for CI to 15.2 (fixes [#2857](https://github.com/LemmyNet/Lemmy/issues/2857)) ([#2859](https://github.com/LemmyNet/Lemmy/issues/2859))
+- Make volumes used in docker compose work when running on machines with SELinux enabled ([#2853](https://github.com/LemmyNet/Lemmy/issues/2853))
+- Set attribute `deny_unknown_fields` for Lemmy config ([#2852](https://github.com/LemmyNet/Lemmy/issues/2852))
+- Fixing empty req issue. ([#2849](https://github.com/LemmyNet/Lemmy/issues/2849))
+- Upgrade api_test deps ([#2850](https://github.com/LemmyNet/Lemmy/issues/2850))
+- Adding comments to all API related types. Fixes [#2846](https://github.com/LemmyNet/Lemmy/issues/2846) ([#2848](https://github.com/LemmyNet/Lemmy/issues/2848))
+- Adding typescript generation for API. Fixes [#2824](https://github.com/LemmyNet/Lemmy/issues/2824) ([#2827](https://github.com/LemmyNet/Lemmy/issues/2827))
+- Addressing slow profile queries. [#2777](https://github.com/LemmyNet/Lemmy/issues/2777) ([#2830](https://github.com/LemmyNet/Lemmy/issues/2830))
+- Reverting to older non-multi-arch dockerfile. Fixes [#2832](https://github.com/LemmyNet/Lemmy/issues/2832) ([#2833](https://github.com/LemmyNet/Lemmy/issues/2833))
+- Add `to` field in follow activities for better compatibility ([#2829](https://github.com/LemmyNet/Lemmy/issues/2829))
+- Use older git clone for woodpecker. ([#2831](https://github.com/LemmyNet/Lemmy/issues/2831))
+- Remove last Option<Vec.. from API. Fixes [#2820](https://github.com/LemmyNet/Lemmy/issues/2820) ([#2822](https://github.com/LemmyNet/Lemmy/issues/2822))
+- Adding cross_post fetching to GetPost. Fixes [#2127](https://github.com/LemmyNet/Lemmy/issues/2127) ([#2821](https://github.com/LemmyNet/Lemmy/issues/2821))
+- Use Dockerfile.multiarch as Dockerfile ([#2818](https://github.com/LemmyNet/Lemmy/issues/2818))
+- Adding diesel enums for SortType and ListingType ([#2808](https://github.com/LemmyNet/Lemmy/issues/2808))
+- Make path to local lemmy-ui use correct relative path ([#2817](https://github.com/LemmyNet/Lemmy/issues/2817))
+- Add lemmy-bot to README libraries list ([#2816](https://github.com/LemmyNet/Lemmy/issues/2816))
+- Separate federated_instances into its own endpoint. Fixes [#1931](https://github.com/LemmyNet/Lemmy/issues/1931) ([#2813](https://github.com/LemmyNet/Lemmy/issues/2813))
+- Use official rust image and clean up Dockerfiles ([#2804](https://github.com/LemmyNet/Lemmy/issues/2804))
+- Temporary fix for hiding deleted posts. [#2624](https://github.com/LemmyNet/Lemmy/issues/2624) ([#2811](https://github.com/LemmyNet/Lemmy/issues/2811))
+- Leave modded communities on account deletion. Fixes [#2560](https://github.com/LemmyNet/Lemmy/issues/2560) ([#2810](https://github.com/LemmyNet/Lemmy/issues/2810))
+- Adding check to description and body length fields. ([#2805](https://github.com/LemmyNet/Lemmy/issues/2805))
+- Fix & Optimize CI config ([#2802](https://github.com/LemmyNet/Lemmy/issues/2802))
+- Making the chat server an actor. ([#2793](https://github.com/LemmyNet/Lemmy/issues/2793))
+- Use pretty print for federation json responses ([#2801](https://github.com/LemmyNet/Lemmy/issues/2801))
+- Fix listing type default value ([#2796](https://github.com/LemmyNet/Lemmy/issues/2796))
+- Add woodpecker ci ([#2789](https://github.com/LemmyNet/Lemmy/issues/2789))
+- Remove unused dependencies ([#2795](https://github.com/LemmyNet/Lemmy/issues/2795))
+- Optimize federated language updates to avoid unnecessary db writes ([#2786](https://github.com/LemmyNet/Lemmy/issues/2786))
+- Added identifier to context ([#2791](https://github.com/LemmyNet/Lemmy/issues/2791))
+- Activitypub crate rewrite ([#2782](https://github.com/LemmyNet/Lemmy/issues/2782))
+- Add Custom Emojis Support ([#2616](https://github.com/LemmyNet/Lemmy/issues/2616))
+- Adding deadpool timeouts. ([#2775](https://github.com/LemmyNet/Lemmy/issues/2775))
+- Adding TOTP / 2FA to lemmy ([#2741](https://github.com/LemmyNet/Lemmy/issues/2741))
+- Get rid of Safe Views, use serde_skip ([#2767](https://github.com/LemmyNet/Lemmy/issues/2767))
+- Show deleted and removed posts for profile views. Fixes [#2624](https://github.com/LemmyNet/Lemmy/issues/2624) ([#2729](https://github.com/LemmyNet/Lemmy/issues/2729))
+- Dont upsert Instance row every apub fetch ([#2771](https://github.com/LemmyNet/Lemmy/issues/2771))
+- Fixing broken websockets. ([#2770](https://github.com/LemmyNet/Lemmy/issues/2770))
+- Ignore undetermined language when calculating post default language ([#2769](https://github.com/LemmyNet/Lemmy/issues/2769))
+- Switch from bb8 to deadpool. Fixes [#2765](https://github.com/LemmyNet/Lemmy/issues/2765) ([#2768](https://github.com/LemmyNet/Lemmy/issues/2768))
+- Adding a vector indexing check to prevent panics. Fixes [#2753](https://github.com/LemmyNet/Lemmy/issues/2753) ([#2754](https://github.com/LemmyNet/Lemmy/issues/2754))
+- Cleaning up person_view sorts ([#2760](https://github.com/LemmyNet/Lemmy/issues/2760))
+- Add default attribute for webfinger properties (fixes [#2756](https://github.com/LemmyNet/Lemmy/issues/2756)) ([#2759](https://github.com/LemmyNet/Lemmy/issues/2759))
+- Include type information with webfinger responses (fixes [#2037](https://github.com/LemmyNet/Lemmy/issues/2037)) ([#2746](https://github.com/LemmyNet/Lemmy/issues/2746))
+- Fixing issue with saving site language. Fixes [#2748](https://github.com/LemmyNet/Lemmy/issues/2748) ([#2749](https://github.com/LemmyNet/Lemmy/issues/2749))
+- Proper permission check for federated comment distinguish ([#2697](https://github.com/LemmyNet/Lemmy/issues/2697))
+- Implement separate mod activities for feature, lock post ([#2716](https://github.com/LemmyNet/Lemmy/issues/2716))
+- Fix case in activitypub context (ref [#2734](https://github.com/LemmyNet/Lemmy/issues/2734)) ([#2743](https://github.com/LemmyNet/Lemmy/issues/2743))
+- Separate comment distinguish ([#2740](https://github.com/LemmyNet/Lemmy/issues/2740))
+- Adding instance software and version. Fixes [#2222](https://github.com/LemmyNet/Lemmy/issues/2222) ([#2733](https://github.com/LemmyNet/Lemmy/issues/2733))
+- Fixing slow joins to post_read, post_saved, and comment_saved . ([#2738](https://github.com/LemmyNet/Lemmy/issues/2738))
+- Remove lemmur since its deprecated. ([#2742](https://github.com/LemmyNet/Lemmy/issues/2742))
+- Combine prod and dev docker setups using build-arg ([#2739](https://github.com/LemmyNet/Lemmy/issues/2739))
+- Organize utils into separate files. Fixes [#2295](https://github.com/LemmyNet/Lemmy/issues/2295) ([#2736](https://github.com/LemmyNet/Lemmy/issues/2736))
+- Removing checking permissions when editing posts and comments. ([#2727](https://github.com/LemmyNet/Lemmy/issues/2727))
+- Fixing updated form fields. Fixes [#2724](https://github.com/LemmyNet/Lemmy/issues/2724) ([#2725](https://github.com/LemmyNet/Lemmy/issues/2725))
+- Only let top admin purge. Fixes [#2731](https://github.com/LemmyNet/Lemmy/issues/2731) ([#2732](https://github.com/LemmyNet/Lemmy/issues/2732))
+- Fix writing of `removeData` in apub context (fixes [#2734](https://github.com/LemmyNet/Lemmy/issues/2734)) ([#2735](https://github.com/LemmyNet/Lemmy/issues/2735))
+- Adding a site option to email admins for new reports. ([#2730](https://github.com/LemmyNet/Lemmy/issues/2730))
+- Sort community search by active_monthly by default. ([#2728](https://github.com/LemmyNet/Lemmy/issues/2728))
+- Fix post titles being cut off (fixes [#2718](https://github.com/LemmyNet/Lemmy/issues/2718)) ([#2720](https://github.com/LemmyNet/Lemmy/issues/2720))
+- Improved error message when attempting to fetch non-local object (fixes [#2715](https://github.com/LemmyNet/Lemmy/issues/2715)) ([#2717](https://github.com/LemmyNet/Lemmy/issues/2717))
+- Convert HTML from titles into markdown ([#2709](https://github.com/LemmyNet/Lemmy/issues/2709))
+- In apub post receive, check posting restricted to mods (ref [#2702](https://github.com/LemmyNet/Lemmy/issues/2702)) ([#2704](https://github.com/LemmyNet/Lemmy/issues/2704))
+- Fix docker federation setup ([#2706](https://github.com/LemmyNet/Lemmy/issues/2706))
+- Fix data fetching from Peertube (fixes [#2689](https://github.com/LemmyNet/Lemmy/issues/2689)) ([#2703](https://github.com/LemmyNet/Lemmy/issues/2703))
+- Add a ntfy notif on a tag deploy success. ([#2701](https://github.com/LemmyNet/Lemmy/issues/2701))
+- Disable pictrs feature in CI to make it faster ([#2698](https://github.com/LemmyNet/Lemmy/issues/2698))
+- Fixing admin application email subject. Fixes [#2688](https://github.com/LemmyNet/Lemmy/issues/2688) ([#2695](https://github.com/LemmyNet/Lemmy/issues/2695))
+- Fixing person block views. Fixes [#2693](https://github.com/LemmyNet/Lemmy/issues/2693) ([#2694](https://github.com/LemmyNet/Lemmy/issues/2694))
+- Fixing GetPosts active sort index. Fixes [#2683](https://github.com/LemmyNet/Lemmy/issues/2683) ([#2684](https://github.com/LemmyNet/Lemmy/issues/2684))
+- More explicit upgrade instructions.
+- Fix yerbate.ml -> join-lemmy.org links
+- Publish without verify ([#2681](https://github.com/LemmyNet/Lemmy/issues/2681))
+- Fix paths in release script, update crate versions ([#2680](https://github.com/LemmyNet/Lemmy/issues/2680))
+
+### Lemmy UI
+
+- fix(tabs): Fix tab semantics and a11y ([#1382](https://github.com/LemmyNet/lemmy-ui/issues/1382))
+- fix: Remove Bootstrap JS in sidebars ([#1434](https://github.com/LemmyNet/lemmy-ui/issues/1434))
+- Store manifest in memory so it does not need to be generated for every page request ([#1433](https://github.com/LemmyNet/lemmy-ui/issues/1433))
+- Com create post ([#1431](https://github.com/LemmyNet/lemmy-ui/issues/1431))
+- fix: Small adjustments to create post form
+- fix: Fix Communities search/filter header [#1417](https://github.com/LemmyNet/lemmy-ui/issues/1417)
+- Fix mobile navbar bug ([#1428](https://github.com/LemmyNet/lemmy-ui/issues/1428))
+- feat: Hide 'comments' in post listing comments button; icon and title text is clear
+- feat: Drop dependency for tsconfig-paths-webpack-plugin
+- fix main.css vars ([#1424](https://github.com/LemmyNet/lemmy-ui/issues/1424))
+- feat: Bootstrap 5 ([#1378](https://github.com/LemmyNet/lemmy-ui/issues/1378))
+- Add scripts to make managing translations easier ([#1414](https://github.com/LemmyNet/lemmy-ui/issues/1414))
+- Fix redirect after successful password reset
+- fix: Shrink and normalize some post action button colors and sizes
+- fix: Litely Red was importing the wrong vars
+- fix: Always show advanced post buttons dropdown
+- Fixing missing class for language select.
+- feat(post): Move post domain beneath post title ([#1363](https://github.com/LemmyNet/lemmy-ui/issues/1363))
+- Updated link to lemmy-repo as direct link to issues
+- feat(css): make vertical rhythm more consistent for post listings
+- fix(post): Fix missing labels on block/report buttons in new dropdown
+- fix: Add compiled theme stylesheets
+- fix: Fix too-intense hr color between posts
+- fix: Fix post creator text alignment
+- fix: Prettier ignore generated themes, as they aren't written by humans
+- feat: Badge-ify NSFW and removed by mod title info
+- fix: Fix display inline of post title
+- fix: Only post title should be inside h5, not the additional metadata icons
+- fix: Use btn-sm for advanced menu dropdown buttons
+- fix: Remove some extra classes on flag/report buttons
+- fix: Fix vertical alignment and border radius of advanced dropdown menu items
+- fix(a11y): Add aria-controls for advanced button dropdown
+- fix: Fix some button labels and tippy text
+- feat: Move advanced post menu into dropdown
+- Always allow users to control whether they see NSFW content
+- fix: Fix display inline of post title
+- fix: Use btn-sm for advanced menu dropdown buttons
+- fix: Remove some extra classes on flag/report buttons
+- fix: Fix vertical alignment and border radius of advanced dropdown menu items
+- fix(a11y): Add aria-controls for advanced button dropdown
+- fix: Fix some button labels and tippy text
+- feat: Move advanced post menu into dropdown
+- fix: Fix some small style issues
+- feat(a11y): Add eslint-plugin-jsx-a11y
+- fix: Fix Trending sidebar card too
+- fix(a11y): Fix some mobile styles for Sidebar Cards
+- fix(a11y): Apply same accordion/collapse markup to Subscribed Communities sidebar card
+- fix: Add .accordion wrapper around sidebar to obtain negative bottom margin
+- fix(a11y): Fix some a11y issues in Site Sidebar and use native Bootstrap Collapse and Card classes
+- fix(a11y): Add aria-label to fetaured pins
+- fix: Only post title should be inside h5, not the additional metadata icons
+- fix: Fix some references to ; they should refer to a specific gray in case changes
+- fix: Move var to grays area
+- fix: Fix broken theme overrides; group theme variable files by variable type
+- fix accidental changes
+- remove comments
+- fix merge conflicts
+- Add default profile picture for users who do not set one ([#1339](https://github.com/LemmyNet/lemmy-ui/issues/1339))
+- feat(navbar): Add labels for navbar items on mobile ([#1323](https://github.com/LemmyNet/lemmy-ui/issues/1323))
+- fix: Fix rounded top corners in markdown textarea
+- fix: Fix input-bg for darkly theme
+- chore: Fix a missing theme color
+- chore: Fix vars
+- chore: Remove some redundant Sass variable declarations and re-organize them
+- fix: Fix imports
+- Revert "fix: Sass files don't need to refer to full node_modules path"
+- fix: Sass files don't need to refer to full node_modules path
+- fix: Remove inline styles and use Bootstrap classes
+- fix: Fix missing prop
+- fix: Vertically align icons in post listing
+- fix: Add total users in site sidebar
+- fix: Re-add 'number of communities' to site sidebar
+- fix: Fix broken link
+- fix: Fix rounded textarea in Markdown box
+- feat: Fix some colors on dark mode
+- feat: Redesign the format bar / textarea into a single bordered area with divider
+- and of course, yarn.lock
+- handle login failures correctly
+- wrap login call in try/catch for error handling
+- Fix first loads not working
+- Remove extra div in post sidebar
+- feat: Move text formatting bar above textarea
+- Add a class to the more button on a comment node
+- Switch navbar classes to ids
+- break out browser and helper methods
+- feat: Adds Jump to main content functionality
+- chore: ensures validURL function does not throw exception
+- break out all role utils
+- Adding a few more 0.18.0 API changes. ([#1324](https://github.com/LemmyNet/lemmy-ui/issues/1324))
+- Use aside semantic HTML tag for sidebars
+- Use article semantic HTML tag for posts/comments
+- Use footer semantic HTML tag
+- Add lemmy-site class for easier detection
+- Add ID's and classes to sidebars
+- Add clases and ID's to post form/listing
+- Add classes to post and comment repy textareas
+- Rename markdown-textarea ID's
+- Add nav and footer ID's
+- fix block community functionality in sidebar ([#1316](https://github.com/LemmyNet/lemmy-ui/issues/1316))
+- fix: fix loading custom themes with a custom LEMMY_UI_EXTRA_THEMES_FOLDER
+- Admin Settings: Bugfixes ([#1313](https://github.com/LemmyNet/lemmy-ui/issues/1313))
+- hardcoded node version due to bug "Text file busy" error introduced in node 20.3 ([#1320](https://github.com/LemmyNet/lemmy-ui/issues/1320))
+- changed required checkbox ([#1318](https://github.com/LemmyNet/lemmy-ui/issues/1318))
+- set loading state attribute to false if createPost fails ([#1311](https://github.com/LemmyNet/lemmy-ui/issues/1311))
+- Make community IDs more easily selectable ([#1306](https://github.com/LemmyNet/lemmy-ui/issues/1306))
+- Re-arrange elements beneath markdown textarea [#1057](https://github.com/LemmyNet/lemmy-ui/issues/1057) ([#1288](https://github.com/LemmyNet/lemmy-ui/issues/1288))
+- Match more specific locales to supported ones ([#1241](https://github.com/LemmyNet/lemmy-ui/issues/1241))
+- formatting
+- refactor server, tidy up, use handlers/middleware/utils pattern
+- Fixed color scheme variables of litely-red
+- Improve the look of tables ([#1299](https://github.com/LemmyNet/lemmy-ui/issues/1299))
+- feat(post-listing): Add link to post for mobile preview
+- go back if last history action was push, fix bug preventing navigation to / working from login
+- add user-scalable=no to meta tag
+- Removed duplicated CSS rule
+- Make comment border colors semi-transparent
+- Add long polling to update unread counts in navbar. ([#1271](https://github.com/LemmyNet/lemmy-ui/issues/1271))
+- make button a tad smaller
+- remove pictrsDeleteToast usage from PostForm, add delete image button, fix infinite loading bug if upload error occured
+- Use http client ([#1081](https://github.com/LemmyNet/lemmy-ui/issues/1081))
+- Horizontally scrollable code blocks, instead of wrapping.
+- Update BUG_REPORT.yml
+- add checkboxes to feature requests
+- required under label
+- indent validations
+- label array
+- add checkboxes to issue template
+- Fixed NSFW image blur spilling outside the preview
+- Recompiled theme files using latest Bootstrap 4
+- Added npm scripts to rebuild theme files
+- Add title to pictrs-image
+- Make the community title in the sidebar link to the local community. ([#1161](https://github.com/LemmyNet/lemmy-ui/issues/1161))
+- Fix prompt component ([#1223](https://github.com/LemmyNet/lemmy-ui/issues/1223))
+- Fix mobile menu collapse bug ([#1222](https://github.com/LemmyNet/lemmy-ui/issues/1222))
+- Another try at sanitize. ([#1208](https://github.com/LemmyNet/lemmy-ui/issues/1208))
+- remove unused theme files ([#1202](https://github.com/LemmyNet/lemmy-ui/issues/1202))
+- issue templates in yml format ([#1211](https://github.com/LemmyNet/lemmy-ui/issues/1211))
+- Make preview button say "edit" when in preview mode ([#1164](https://github.com/LemmyNet/lemmy-ui/issues/1164))
+- Add shortcut for submitting post ([#1163](https://github.com/LemmyNet/lemmy-ui/issues/1163))
+- Fix typo in post-listing.tsx ([#1181](https://github.com/LemmyNet/lemmy-ui/issues/1181))
+- Only show 'saved' tab on own profile page
+- Added Ctrl-K keybind
+- Fix quotes ([#1131](https://github.com/LemmyNet/lemmy-ui/issues/1131))
+- Alternative way to sanitize isoData ([#1129](https://github.com/LemmyNet/lemmy-ui/issues/1129))
+- chore: switched to enabling language warning by prop rather than disabling
+- fix: Adds ability to hide language warning
+- styles([#1067](https://github.com/LemmyNet/lemmy-ui/issues/1067)): Run prettier
+- fix([#1067](https://github.com/LemmyNet/lemmy-ui/issues/1067)): Fix language not updating when editing post
+- Fix isoData can contain user generated content ([#1114](https://github.com/LemmyNet/lemmy-ui/issues/1114))
+- Add media-src \* to Content-Security-Policy header
+- Refactor lets to consts
+- Fix aria-label for language select
+- Add aria attribute to track toggle status of up/down votes. ([#1074](https://github.com/LemmyNet/lemmy-ui/issues/1074))
+- Make comment depth easier to track visually
+- Make comments nested lists
+- Fix CONTRIBUTING link
+- Fix sorting help link
+- Do not refresh when community is selected in create post ([#1042](https://github.com/LemmyNet/lemmy-ui/issues/1042))
+- Navbar fix 2 ([#1038](https://github.com/LemmyNet/lemmy-ui/issues/1038))
+- Lint fix ([#1035](https://github.com/LemmyNet/lemmy-ui/issues/1035))
+- Changes to language tag
+- Hopefully stop lint command from erroring
+- Always replace host with internal host
+- Revert "User HTTP instead of HTTPS when fetching icon in docker internal network"
+- Revert "Add debug statement."
+- Add debug statement.
+- User HTTP instead of HTTPS when fetching icon in docker internal network
+- Add error message paragraph
+- Make error code always display
+- Navbar hide menu fix ([#1033](https://github.com/LemmyNet/lemmy-ui/issues/1033))
+- Show parent comment for comment link. Fixes [#1030](https://github.com/LemmyNet/lemmy-ui/issues/1030) ([#1032](https://github.com/LemmyNet/lemmy-ui/issues/1032))
+- Add heading tag to rate limit form
+- Remove console log
+- Include forgotten translation
+- Remove console logs
+- Add web share for browsers that have it enabled ([#1029](https://github.com/LemmyNet/lemmy-ui/issues/1029))
+- Show language on posts and comments ([#1026](https://github.com/LemmyNet/lemmy-ui/issues/1026))
+- Allow user to submit rate limit changes
+- Put rate limit options in its own tab
+- Refactor tabs into reuseable component
+- Replace link to issue tracker with proper support spaces
+- Fix isoData bug
+- Refactor how error data is passed from server to client
+- Make admin UI for allowing/blocking instances easier to work with ([#1012](https://github.com/LemmyNet/lemmy-ui/issues/1012))
+- Get rid or forced error
+- Changing all bigints to numbers
+- Upgrade lemmy-js-client to work with bigints. Fixes [#1018](https://github.com/LemmyNet/lemmy-ui/issues/1018) ([#1022](https://github.com/LemmyNet/lemmy-ui/issues/1022))
+- Redirect from pages that require auth on logout ([#1016](https://github.com/LemmyNet/lemmy-ui/issues/1016))
+- Fix things not working in production build
+- Fix error page not showing when site not fetched and adjust styles
+- Handle error when site not returned
+- Use node env instead of version for environment specific logic
+- Redirect to login and remove duplicated code
+- Fix server redirect error
+- Set up logic for handling errors
+- Extract helper function
+- Dont preselect new post language ([#1008](https://github.com/LemmyNet/lemmy-ui/issues/1008))
+- Update JS client to version with fixed JSON serialization ([#1017](https://github.com/LemmyNet/lemmy-ui/issues/1017))
+- Redirect fomr pages that require auth on logout
+- Remove "banned" badge from posts and comments (fixes 899) ([#1011](https://github.com/LemmyNet/lemmy-ui/issues/1011))
+- Add support for PWA ([#1005](https://github.com/LemmyNet/lemmy-ui/issues/1005))
+- Using auto-generated types from ts-rs. ([#1003](https://github.com/LemmyNet/lemmy-ui/issues/1003))
+- Fixing some outdated docs links. Fixes [#1006](https://github.com/LemmyNet/lemmy-ui/issues/1006) ([#1007](https://github.com/LemmyNet/lemmy-ui/issues/1007))
+- Upgrading deps. ([#1004](https://github.com/LemmyNet/lemmy-ui/issues/1004))
+- Prettier css ([#995](https://github.com/LemmyNet/lemmy-ui/issues/995))
+- Add content warning to modlog and fix modlog routing bug ([#994](https://github.com/LemmyNet/lemmy-ui/issues/994))
+- Get rid of "No Results" showing while search is still loading. ([#997](https://github.com/LemmyNet/lemmy-ui/issues/997))
+- Add SleeplessOne1917 to Codeowners.
+- Handle when logged out ([#986](https://github.com/LemmyNet/lemmy-ui/issues/986))
+- Make pages use query params instead of route params where appropriate ([#977](https://github.com/LemmyNet/lemmy-ui/issues/977))
+- Multiple image upload ([#971](https://github.com/LemmyNet/lemmy-ui/issues/971))
+- I18 quality of life change ([#973](https://github.com/LemmyNet/lemmy-ui/issues/973))
+- Optimize Tagline Form page ([#972](https://github.com/LemmyNet/lemmy-ui/issues/972))
+- Don't show icons / banners for banned users and removed communities. ([#962](https://github.com/LemmyNet/lemmy-ui/issues/962))
+- fix: Fix undefined showing up in markdown ([#970](https://github.com/LemmyNet/lemmy-ui/issues/970))
+- refactor: update UI to use new client uploadImage function ([#967](https://github.com/LemmyNet/lemmy-ui/issues/967))
+- Add woodpecker ci ([#964](https://github.com/LemmyNet/lemmy-ui/issues/964))
+- fix: Make search screen able to change type, listing type, and sort when there is no query ([#966](https://github.com/LemmyNet/lemmy-ui/issues/966))
+- Adding 2FA support. Fixes [#938](https://github.com/LemmyNet/lemmy-ui/issues/938) ([#939](https://github.com/LemmyNet/lemmy-ui/issues/939))
+- Add Custom Emoji Support
+- Only show the determined warning for multiple. ([#952](https://github.com/LemmyNet/lemmy-ui/issues/952))
+- Upgrading deps ([#951](https://github.com/LemmyNet/lemmy-ui/issues/951))
+- Adding ban_from_community to be more clear. Fixes [#872](https://github.com/LemmyNet/lemmy-ui/issues/872) ([#943](https://github.com/LemmyNet/lemmy-ui/issues/943))
+- Let any mod feature and lock posts. Fixes [#875](https://github.com/LemmyNet/lemmy-ui/issues/875) ([#944](https://github.com/LemmyNet/lemmy-ui/issues/944))
+- Adding a warning for deselecting the undetermined language. ([#945](https://github.com/LemmyNet/lemmy-ui/issues/945))
+- Fixing line formatting. ([#947](https://github.com/LemmyNet/lemmy-ui/issues/947))
+- Do local community checks for buttons. Fixes [#918](https://github.com/LemmyNet/lemmy-ui/issues/918) ([#948](https://github.com/LemmyNet/lemmy-ui/issues/948))
+- Check to make sure post is correct. Fixes [#934](https://github.com/LemmyNet/lemmy-ui/issues/934) ([#949](https://github.com/LemmyNet/lemmy-ui/issues/949))
+- Remove buggy navbar search. Fixes [#921](https://github.com/LemmyNet/lemmy-ui/issues/921) ([#950](https://github.com/LemmyNet/lemmy-ui/issues/950))
+- Fix issue with empty markdown content not nulling DB. Fixes [#924](https://github.com/LemmyNet/lemmy-ui/issues/924) ([#925](https://github.com/LemmyNet/lemmy-ui/issues/925))
+- Adding reports send email to admins option ([#932](https://github.com/LemmyNet/lemmy-ui/issues/932))
+- v0.17.1
+- Fix comment box closing. Fixes [#904](https://github.com/LemmyNet/lemmy-ui/issues/904) ([#914](https://github.com/LemmyNet/lemmy-ui/issues/914))
+- Fix showing crosspost dupes. Fixes [#900](https://github.com/LemmyNet/lemmy-ui/issues/900) ([#912](https://github.com/LemmyNet/lemmy-ui/issues/912))
+- Fix live updating postres edit. Fixes [#908](https://github.com/LemmyNet/lemmy-ui/issues/908) ([#911](https://github.com/LemmyNet/lemmy-ui/issues/911))
+- Removing extra themes. Fixes [#905](https://github.com/LemmyNet/lemmy-ui/issues/905) ([#910](https://github.com/LemmyNet/lemmy-ui/issues/910))
+- Fixing post setState error. Fixes [#902](https://github.com/LemmyNet/lemmy-ui/issues/902) ([#903](https://github.com/LemmyNet/lemmy-ui/issues/903))
+
+# Lemmy v0.17.2 Release (2023-02-22)
+
+## Bugfixes
+
+### Lemmy
+
+- Fixing issue with saving site language. Fixes [#2748](https://github.com/LemmyNet/lemmy/issues/2748) ([#2749](https://github.com/LemmyNet/lemmy/issues/2749))
+- Include type information with webfinger responses (fixes [#2037](https://github.com/LemmyNet/lemmy/issues/2037)) ([#2746](https://github.com/LemmyNet/lemmy/issues/2746))
+- Proper permission check for federated comment distinguish ([#2697](https://github.com/LemmyNet/lemmy/issues/2697))
+- Implement separate mod activities for feature, lock post ([#2716](https://github.com/LemmyNet/lemmy/issues/2716))
+- Fix case in activitypub context (ref [#2734](https://github.com/LemmyNet/lemmy/issues/2734)) ([#2743](https://github.com/LemmyNet/lemmy/issues/2743))
+- Fixing slow joins to post_read, post_saved, and comment_saved . ([#2738](https://github.com/LemmyNet/lemmy/issues/2738))
+- Removing checking permissions when editing posts and comments. ([#2727](https://github.com/LemmyNet/lemmy/issues/2727))
+- Fixing updated form fields. Fixes [#2724](https://github.com/LemmyNet/lemmy/issues/2724) ([#2725](https://github.com/LemmyNet/lemmy/issues/2725))
+- Only let top admin purge. Fixes [#2731](https://github.com/LemmyNet/lemmy/issues/2731) ([#2732](https://github.com/LemmyNet/lemmy/issues/2732))
+- Fix writing of `removeData` in apub context (fixes [#2734](https://github.com/LemmyNet/lemmy/issues/2734)) ([#2735](https://github.com/LemmyNet/lemmy/issues/2735))
+- Adding a site option to email admins for new reports. ([#2730](https://github.com/LemmyNet/lemmy/issues/2730))
+- Sort community search by active_monthly by default. ([#2728](https://github.com/LemmyNet/lemmy/issues/2728))
+- Fix post titles being cut off (fixes [#2718](https://github.com/LemmyNet/lemmy/issues/2718)) ([#2720](https://github.com/LemmyNet/lemmy/issues/2720))
+- Improved error message when attempting to fetch non-local object (fixes [#2715](https://github.com/LemmyNet/lemmy/issues/2715)) ([#2717](https://github.com/LemmyNet/lemmy/issues/2717))
+- Convert HTML from titles into markdown ([#2709](https://github.com/LemmyNet/lemmy/issues/2709))
+- In apub post receive, check posting restricted to mods (ref [#2702](https://github.com/LemmyNet/lemmy/issues/2702)) ([#2704](https://github.com/LemmyNet/lemmy/issues/2704))
+- Fix data fetching from Peertube (fixes [#2689](https://github.com/LemmyNet/lemmy/issues/2689)) ([#2703](https://github.com/LemmyNet/lemmy/issues/2703))
+- Disable pictrs feature in CI to make it faster ([#2698](https://github.com/LemmyNet/lemmy/issues/2698))
+
+### Lemmy-UI
+
+- Only show the determined warning for multiple. ([#952](https://github.com/LemmyNet/lemmy-ui/issues/952))
+- Adding ban_from_community to be more clear. Fixes [#872](https://github.com/LemmyNet/lemmy-ui/issues/872) ([#943](https://github.com/LemmyNet/lemmy-ui/issues/943))
+- Upgrading deps ([#951](https://github.com/LemmyNet/lemmy-ui/issues/951))
+- Adding reports send email to admins option ([#932](https://github.com/LemmyNet/lemmy-ui/issues/932))
+- Check to make sure post is correct. Fixes [#934](https://github.com/LemmyNet/lemmy-ui/issues/934) ([#949](https://github.com/LemmyNet/lemmy-ui/issues/949))
+- Let any mod feature and lock posts. Fixes [#875](https://github.com/LemmyNet/lemmy-ui/issues/875) ([#944](https://github.com/LemmyNet/lemmy-ui/issues/944))
+- Adding a warning for deselecting the undetermined language. ([#945](https://github.com/LemmyNet/lemmy-ui/issues/945))
+- Fixing line formatting. ([#947](https://github.com/LemmyNet/lemmy-ui/issues/947))
+- Do local community checks for buttons. Fixes [#918](https://github.com/LemmyNet/lemmy-ui/issues/918) ([#948](https://github.com/LemmyNet/lemmy-ui/issues/948))
+- Remove buggy navbar search. Fixes [#921](https://github.com/LemmyNet/lemmy-ui/issues/921) ([#950](https://github.com/LemmyNet/lemmy-ui/issues/950))
+- Fix issue with empty markdown content not nulling DB. Fixes [#924](https://github.com/LemmyNet/lemmy-ui/issues/924) ([#925](https://github.com/LemmyNet/lemmy-ui/issues/925))
+
+# Lemmy v0.17.1 Release (2023-02-03)
+
+## Bugfixes
+
+### Lemmy
+
+- Fixing admin application email subject. Fixes [#2688](https://github.com/LemmyNet/lemmy/issues/2688) ([#2695](https://github.com/LemmyNet/lemmy/issues/2695))
+- Fixing person block views. Fixes [#2693](https://github.com/LemmyNet/lemmy/issues/2693) ([#2694](https://github.com/LemmyNet/lemmy/issues/2694))
+- Fixing GetPosts active sort index. Fixes [#2683](https://github.com/LemmyNet/lemmy/issues/2683) ([#2684](https://github.com/LemmyNet/lemmy/issues/2684))
+- Publish without verify ([#2681](https://github.com/LemmyNet/lemmy/issues/2681))
+- Fix paths in release script, update crate versions ([#2680](https://github.com/LemmyNet/lemmy/issues/2680))
+
+### Lemmy-UI
+
+- Fix comment box closing. Fixes [#904](https://github.com/LemmyNet/lemmy-ui/issues/904) ([#914](https://github.com/LemmyNet/lemmy-ui/issues/914))
+- Fix showing crosspost dupes. Fixes [#900](https://github.com/LemmyNet/lemmy-ui/issues/900) ([#912](https://github.com/LemmyNet/lemmy-ui/issues/912))
+- Fix live updating postres edit. Fixes [#908](https://github.com/LemmyNet/lemmy-ui/issues/908) ([#911](https://github.com/LemmyNet/lemmy-ui/issues/911))
+- Removing extra themes. Fixes [#905](https://github.com/LemmyNet/lemmy-ui/issues/905) ([#910](https://github.com/LemmyNet/lemmy-ui/issues/910))
+- Fixing post setState error. Fixes [#902](https://github.com/LemmyNet/lemmy-ui/issues/902) ([#903](https://github.com/LemmyNet/lemmy-ui/issues/903))
+
+# Lemmy v0.17.0 Release (2023-01-31)
+
+## What is Lemmy?
+
+Lemmy is a self-hosted social link aggregation and discussion platform. It is completely free and open, and not controlled by any company. This means that there is no advertising, tracking, or secret algorithms. Content is organized into communities, so it is easy to subscribe to topics that you are interested in, and ignore others. Voting is used to bring the most interesting items to the top.
+
+## Major Changes
+
+### Language Tags
+
+Content can now be tagged to indicate the language it is written in. These tags can be used to filter content, so that you only see posts in languages which you actually understand. Instances and communities can also specify which languages are allowed, and prevent posting in other languages.
+
+In the future this will also allow for integrated translation tools.
+
+### Comment trees
+
+Lemmy has changed the way it stores comments, in order to be able to properly limit the comments shown to a maximum depth.
+
+Included are proper comment links (`/comment/id`), where you can see its children, a count of its hidden children, and a _context_ button to view its parents, or the post.
+
+### Featured posts
+
+Admins and mods can now "feature" (this used to be called "sticky" ala reddit) posts to the top of either a community, or the top of the front page. This makes possible announcement and bulletin-type posts.
+
+Special thanks to @makotech for adding this feature.
+
+### Federation
+
+Lemmy users can now be followed. Just visit a user profile from another platform like Mastodon, and click the follow button, then you will receive new posts and comments in the timeline.
+
+Votes are now federated as private. This prevents other platforms from showing who voted on a given post, and it also means that Lemmy now counts votes from Mastodon.
+
+This release also improves compatibility with Pleroma. If you previously had trouble interacting between Pleroma and Lemmy, give it another try.
+
+We've extracted the main federation logic into its own library, [activitypub-federation-rust](https://github.com/LemmyNet/activitypub-federation-rust). It is open source and can be used by other projects to implement Activitypub federation, without having to reinvent the wheel. The library helps with handling HTTP signatures, sending and receiving activities, fetching remote objects and more.
+
+### Other changes
+
+- Admins can now purge content and pictures from the database.
+- Mods can _distinguish_ a comment, "stickying" it to the top of a post. Useful for mod messages and announcements.
+- Number of new / unread comments are now shown for each post.
+- Lemmy now automatically embeds videos from Peertube, Youtube and other sites which provide an embed link via Opengraph attribute.
+- You can give your site "taglines", short markdown messages, which are shown at the top of your front page. Thanks to @makotech for adding this.
+- You can now report private messages.
+- Most settings have been moved from the config file into the database. This means they can be updated much easier, and apply immediately without a restart.
+- When setting up a new Lemmy instance, it doesn't create a default community anymore. Instead this needs to be done manually.
+- Admins can choose to receive emails for new registration applications.
+- An upgrade of diesel to v2.0, our rust -> postgres layer.
+- Too many bugfixes to count, they are listed below.
+
+## Upgrade instructions
+
+This upgrade requires a newer version of postgres, which **must be done manually**. Do not try to use Ansible.
+
+`cd` to your lemmy docker directory which can be found in `/srv/lemmy/(domainname)` and run this helper script:
+
+```
+sudo wget https://raw.githubusercontent.com/LemmyNet/lemmy/main/scripts/postgres_12_to_15_upgrade.sh
+sudo sh postgres_12_to_15_upgrade.sh
+```
+
+This script saves a copy of your old database as `12_15.dump.sql`. **Do not delete this file until you've followed all the instructions below, and the upgrade is complete.**
+
+Next, **manually edit** your [lemmy.hjson](https://github.com/LemmyNet/lemmy/blob/main/config/defaults.hjson) to account for a few breaking changes:
+
+- `pictrs_url` is removed, and the pictrs config is now a block. If using docker, it should look like:
+  ```
+  pictrs: {
+    url: "http://pictrs:8080/"
+    api_key: "{{ postgres_password }}"
+  }
+  ```
+- The `rate_limit`, `federation`, `captcha`, and `slur_filter` blocks should be removed, as they are now in the database, and can be updated through the UI.
+- The site setup has removed a few fields.
+- See the link above for every setting.
+
+Next, edit your `docker-compose.yml` file to use the newer version of lemmy and lemmy-ui.
+
+The `image` lines should look like:
+
+- `image: dessalines/lemmy:0.17.0` for lemmy
+- `image: dessalines/lemmy-ui:0.17.0` for lemmy-ui
+- The `lemmy-ui` environment variables have changed, and should now look like:
+  ```
+    environment:
+      - LEMMY_UI_LEMMY_INTERNAL_HOST=lemmy:8536
+      - LEMMY_UI_LEMMY_EXTERNAL_HOST={{ domain }}
+      - LEMMY_UI_HTTPS=true
+  ```
+- You can always find the latest version [here](https://github.com/LemmyNet/lemmy-ansible/blob/main/VERSION).
+- Ensure that postgres is `postgres:15-alpine` (the upgrade script above should have already set this correctly)
+
+If you're having any problems, your docker-compose.yml should look similar to [the one from the lemmy-ansible repo](https://github.com/LemmyNet/lemmy-ansible/blob/main/templates/docker-compose.yml).
+
+Finally, run `sudo docker-compose up -d`, and wait for lemmy to start up.
+
+_Note_: On production databases with thousands of comments, this upgrade **takes several hours**. If your system has problems upgrading, or you'd like to speed up the upgrade, consider tuning your postgres database using the [instructions here](https://github.com/LemmyNet/lemmy/blob/main/docker/dev/docker-compose.yml#L88). If not, just wait for the database migrations to complete, as this large migration of the `comment` table only ever needs to be run once.
+
+_Note_: If you have any issues upgrading, you can restore your old database using the [backup and restore instructions here](https://join-lemmy.org/docs/en/administration/backup_and_restore.html).
+
+If you need help with the upgrade, you can ask in our [support forum](https://lemmy.ml/c/lemmy_support) or on the [Matrix Chat](https://matrix.to/#/#lemmy-admin-support-topics:discuss.online).
+
+## Support development
+
+We (@dessalines and @nutomic) have been working full-time on Lemmy for almost three years. This is largely thanks to support from [NLnet foundation](https://nlnet.nl/).
+
+If you like using Lemmy, and want to make sure that we will always be available to work full time building it, consider [donating to support its development](https://join-lemmy.org/donate). No one likes recurring donations, but they've proven to be the only way that open-source software like Lemmy can stay independent and alive.
+
+## Changes
+
+### API
+
+- [lemmy-js-client 0.16.4 -> 0.17.0 API changes](https://github.com/LemmyNet/lemmy-js-client/compare/0.16.4...0.17.0-rc.62)
+
+### Config
+
+- [lemmy.hjson](https://github.com/LemmyNet/lemmy/blob/main/config/defaults.hjson)
+
+### Lemmy Server
+
+- Speeding up comment-ltree migration, fixing index creation. Fixes [#2664](https://github.com/LemmyNet/lemmy/issues/2664)
+- Add feature to embed pictrs in lemmy binary (fixes [#2627](https://github.com/LemmyNet/lemmy/issues/2627)) ([#2633](https://github.com/LemmyNet/lemmy/issues/2633))
+- Update post_aggregates indexes to account for featured_local and featured_community columns. ([#2661](https://github.com/LemmyNet/lemmy/issues/2661))
+- Post creation from Mastodon (fixes [#2590](https://github.com/LemmyNet/lemmy/issues/2590)) ([#2651](https://github.com/LemmyNet/lemmy/issues/2651))
+- Upgrade to postgres 15. ([#2659](https://github.com/LemmyNet/lemmy/issues/2659))
+- Add reddit -> lemmy importer to readme. ([#2662](https://github.com/LemmyNet/lemmy/issues/2662))
+- Some script improvements ([#2654](https://github.com/LemmyNet/lemmy/issues/2654))
+- Use enum for registration mode setting ([#2604](https://github.com/LemmyNet/lemmy/issues/2604))
+- Removing sniptt/monads for lemmy-js-client. ([#2644](https://github.com/LemmyNet/lemmy/issues/2644))
+- Fix historical post fetching. Fixes [#2640](https://github.com/LemmyNet/lemmy/issues/2640) ([#2643](https://github.com/LemmyNet/lemmy/issues/2643))
+- Adding the go client. ([#2629](https://github.com/LemmyNet/lemmy/issues/2629))
+- Point to !lemmy_support for support questions ([#2638](https://github.com/LemmyNet/lemmy/issues/2638))
+- Add documentation for using Lemmy API from Rust ([#2639](https://github.com/LemmyNet/lemmy/issues/2639))
+- Improve application question check ([#2628](https://github.com/LemmyNet/lemmy/issues/2628))
+- Fix user following ([#2623](https://github.com/LemmyNet/lemmy/issues/2623))
+- Allow embedding Lemmy, fix setup error ([#2618](https://github.com/LemmyNet/lemmy/issues/2618))
+- Fixing missing forms, incorrect user discussion_languages ([#2580](https://github.com/LemmyNet/lemmy/issues/2580))
+- Add support for Featured Posts ([#2585](https://github.com/LemmyNet/lemmy/issues/2585))
+- Remove federation backwards compatibility with 0.16.x ([#2183](https://github.com/LemmyNet/lemmy/issues/2183))
+- Rework websocket ([#2598](https://github.com/LemmyNet/lemmy/issues/2598))
+- Add SendActivity trait so that api crates compile in parallel with lemmy_apub
+- Move code to generate apub urls into lemmy_api_common
+- Builds lemmy_routes in parallel with lemmy_apub
+- Merge websocket crate into api_common
+- Check user accepted before sending jwt in password reset (fixes [#2591](https://github.com/LemmyNet/lemmy/issues/2591)) ([#2597](https://github.com/LemmyNet/lemmy/issues/2597))
+- Relax honeypot check (fixes [#2595](https://github.com/LemmyNet/lemmy/issues/2595)) ([#2596](https://github.com/LemmyNet/lemmy/issues/2596))
+- Use audience field to federate items in groups (fixes [#2464](https://github.com/LemmyNet/lemmy/issues/2464)) ([#2584](https://github.com/LemmyNet/lemmy/issues/2584))
+- Federate group moderators using attributedTo field ([#2588](https://github.com/LemmyNet/lemmy/issues/2588))
+- Set cargo home in ci to avoid redownloading deps between steps ([#2587](https://github.com/LemmyNet/lemmy/issues/2587))
+- Add some more clippy lints ([#2586](https://github.com/LemmyNet/lemmy/issues/2586))
+- Use release docker image for nightly build ([#2583](https://github.com/LemmyNet/lemmy/issues/2583))
+- Implement federated user following (fixes [#752](https://github.com/LemmyNet/lemmy/issues/752)) ([#2577](https://github.com/LemmyNet/lemmy/issues/2577))
+- Upgrade activitypub_federation to 0.3.4 ([#2581](https://github.com/LemmyNet/lemmy/issues/2581))
+- Upgrade activitypub_federation crate to 0.3.3 (ref [#2511](https://github.com/LemmyNet/lemmy/issues/2511)) ([#2578](https://github.com/LemmyNet/lemmy/issues/2578))
+- Remove federation settings, rely on sensible defaults instead ([#2574](https://github.com/LemmyNet/lemmy/issues/2574))
+- Fix clippy lints. ([#2572](https://github.com/LemmyNet/lemmy/issues/2572))
+- Add support for Taglines ([#2548](https://github.com/LemmyNet/lemmy/issues/2548))
+- Various pedantic clippy fixes ([#2568](https://github.com/LemmyNet/lemmy/issues/2568))
+- Sort vecs before assert to avoid random test failures ([#2569](https://github.com/LemmyNet/lemmy/issues/2569))
+- Display build status badge from drone.join-lemmy.org ([#2564](https://github.com/LemmyNet/lemmy/issues/2564))
+- Specify dependencies and metadata for entire workspace ([#2565](https://github.com/LemmyNet/lemmy/issues/2565))
+- Use enum_delegate crate ([#2554](https://github.com/LemmyNet/lemmy/issues/2554))
+- Live reload settings (fixes [#2508](https://github.com/LemmyNet/lemmy/issues/2508)) ([#2543](https://github.com/LemmyNet/lemmy/issues/2543))
+- Fix activity list test ([#2562](https://github.com/LemmyNet/lemmy/issues/2562))
+- When announcing incoming activities, keep extra fields ([#2550](https://github.com/LemmyNet/lemmy/issues/2550))
+- Mobilizon federation ([#2544](https://github.com/LemmyNet/lemmy/issues/2544))
+- Update doku dependency for easier formatting of defaults.hjson ([#2553](https://github.com/LemmyNet/lemmy/issues/2553))
+- Translated README.md to Chinese ([#2549](https://github.com/LemmyNet/lemmy/issues/2549))
+- Add diesel_async, get rid of blocking function ([#2510](https://github.com/LemmyNet/lemmy/issues/2510))
+- Use urlencoding for db url params (fixes [#2532](https://github.com/LemmyNet/lemmy/issues/2532)) ([#2537](https://github.com/LemmyNet/lemmy/issues/2537))
+- Dont serve apub json for removed objects (ref [#2522](https://github.com/LemmyNet/lemmy/issues/2522)) ([#2538](https://github.com/LemmyNet/lemmy/issues/2538))
+- Fix password length check ([#2536](https://github.com/LemmyNet/lemmy/issues/2536))
+- Remove explicit panic from db connection code (fixes [#2533](https://github.com/LemmyNet/lemmy/issues/2533)) ([#2535](https://github.com/LemmyNet/lemmy/issues/2535))
+- Send error message when rate limit is reached ([#2527](https://github.com/LemmyNet/lemmy/issues/2527))
+- Mark own private messages as read in api (fixes [#2484](https://github.com/LemmyNet/lemmy/issues/2484)) ([#2531](https://github.com/LemmyNet/lemmy/issues/2531))
+- Mark objects as not deleted when received via apub (fixes [#2507](https://github.com/LemmyNet/lemmy/issues/2507)) ([#2528](https://github.com/LemmyNet/lemmy/issues/2528))
+- Group imports dess ([#2526](https://github.com/LemmyNet/lemmy/issues/2526))
+- Fix invalid config in docker/prod (fixes [#2520](https://github.com/LemmyNet/lemmy/issues/2520)) ([#2524](https://github.com/LemmyNet/lemmy/issues/2524))
+- Fix local site images. ([#2519](https://github.com/LemmyNet/lemmy/issues/2519))
+- Fix 2455: Check auth for pictrs when instance is private. ([#2477](https://github.com/LemmyNet/lemmy/issues/2477))
+- Fix limit_languages to operate on correct instance (fixes [#2496](https://github.com/LemmyNet/lemmy/issues/2496)) ([#2518](https://github.com/LemmyNet/lemmy/issues/2518))
+- Image improvements ([#2513](https://github.com/LemmyNet/lemmy/issues/2513))
+- Make verify apub url function async ([#2514](https://github.com/LemmyNet/lemmy/issues/2514))
+- Moving settings to Database. ([#2492](https://github.com/LemmyNet/lemmy/issues/2492))
+- Enable lto, strip symbols via cargo.toml ([#2512](https://github.com/LemmyNet/lemmy/issues/2512))
+- Fix docker dev build ([#2509](https://github.com/LemmyNet/lemmy/issues/2509))
+- Federate votes as private ([#2501](https://github.com/LemmyNet/lemmy/issues/2501))
+- Dont try to send activities if federation is disabled (fixes [#2499](https://github.com/LemmyNet/lemmy/issues/2499)) ([#2500](https://github.com/LemmyNet/lemmy/issues/2500))
+- Return empty vec when reading all languages (fixes [#2495](https://github.com/LemmyNet/lemmy/issues/2495)) ([#2497](https://github.com/LemmyNet/lemmy/issues/2497))
+- Update clippy to use Rust 1.64 ([#2498](https://github.com/LemmyNet/lemmy/issues/2498))
+- Only allow authenticated users to fetch remote objects ([#2493](https://github.com/LemmyNet/lemmy/issues/2493))
+- More real-world prod config, separate lemmy config ([#2487](https://github.com/LemmyNet/lemmy/issues/2487))
+- Fix check for federated mod actions ([#2489](https://github.com/LemmyNet/lemmy/issues/2489))
+- Make docker-compose more clear and explicit ([#2469](https://github.com/LemmyNet/lemmy/issues/2469))
+- implement language tags for site/community in db and api ([#2434](https://github.com/LemmyNet/lemmy/issues/2434))
+- Change description in readme ([#2481](https://github.com/LemmyNet/lemmy/issues/2481))
+- Use compat mode when signing outgoing activities (fixes [#1984](https://github.com/LemmyNet/lemmy/issues/1984)) ([#2473](https://github.com/LemmyNet/lemmy/issues/2473))
+- Check to make sure comment isnt deleted / removed for unread count. ([#2472](https://github.com/LemmyNet/lemmy/issues/2472))
+- Dont show deleted users or communities on profile page. ([#2450](https://github.com/LemmyNet/lemmy/issues/2450))
+- Adding email admins for new applications. Fixes [#2271](https://github.com/LemmyNet/lemmy/issues/2271) ([#2390](https://github.com/LemmyNet/lemmy/issues/2390))
+- Showing # of unread comments for posts. Fixes [#2134](https://github.com/LemmyNet/lemmy/issues/2134) ([#2393](https://github.com/LemmyNet/lemmy/issues/2393))
+- Convert emails to lowercase (fixes [#2462](https://github.com/LemmyNet/lemmy/issues/2462)) ([#2463](https://github.com/LemmyNet/lemmy/issues/2463))
+- Remove unnecessary show_deleted_and_removed comments for a profile. ([#2458](https://github.com/LemmyNet/lemmy/issues/2458))
+- Remove pointless language joins. ([#2451](https://github.com/LemmyNet/lemmy/issues/2451))
+- Fix rate limit error messages. Fixes [#2428](https://github.com/LemmyNet/lemmy/issues/2428) ([#2449](https://github.com/LemmyNet/lemmy/issues/2449))
+- Fix missing local user from post queries. ([#2447](https://github.com/LemmyNet/lemmy/issues/2447))
+- Diesel 2.0.0 upgrade ([#2452](https://github.com/LemmyNet/lemmy/issues/2452))
+- Allow filtering out of deleted and removed comments when getting person details ([#2446](https://github.com/LemmyNet/lemmy/issues/2446))
+- Implement reports for private messages ([#2433](https://github.com/LemmyNet/lemmy/issues/2433))
+- Check for slurs in account creation. ([#2443](https://github.com/LemmyNet/lemmy/issues/2443))
+- The language id is crucial for front ends. ([#2437](https://github.com/LemmyNet/lemmy/issues/2437))
+- Update docker version to 0.16.6. Fixes [#2435](https://github.com/LemmyNet/lemmy/issues/2435) ([#2438](https://github.com/LemmyNet/lemmy/issues/2438))
+- Adding job to drop phantom ccnew indexes. Fixes [#2431](https://github.com/LemmyNet/lemmy/issues/2431) ([#2432](https://github.com/LemmyNet/lemmy/issues/2432))
+- Don't search for community descriptions, search for user display_name. ([#2430](https://github.com/LemmyNet/lemmy/issues/2430))
+- Increase default search rate limit. ([#2424](https://github.com/LemmyNet/lemmy/issues/2424))
+- fix clippy
+- dont set default user languages in api code (already done in db)
+- dont test with all features
+- clippy fixes
+- api changes for comment language tagging
+- add test for comment view languages
+- fix tests
+- Add language tags for comments
+- Pass LocalUser to PostQuery etc, instead of separate params ([#2413](https://github.com/LemmyNet/lemmy/issues/2413))
+- Tag posts and comments with language (fixes [#440](https://github.com/LemmyNet/lemmy/issues/440)) ([#2269](https://github.com/LemmyNet/lemmy/issues/2269))
+- Rejected federated pm from blocked users (fixes [#2398](https://github.com/LemmyNet/lemmy/issues/2398)) ([#2408](https://github.com/LemmyNet/lemmy/issues/2408))
+- Adding distinguish comment. Fixes [#2002](https://github.com/LemmyNet/lemmy/issues/2002) ([#2391](https://github.com/LemmyNet/lemmy/issues/2391))
+- Fix pictrs routing ([#2407](https://github.com/LemmyNet/lemmy/issues/2407))
+- Add postgres auto-explain for dev testing. ([#2399](https://github.com/LemmyNet/lemmy/issues/2399))
+- Add Modlog Filters ([#2313](https://github.com/LemmyNet/lemmy/issues/2313))
+- Accept Image objects in attachments ([#2394](https://github.com/LemmyNet/lemmy/issues/2394))
+- Tweaking postgres upgrade script ([#2389](https://github.com/LemmyNet/lemmy/issues/2389))
+- Use typed-builder crate for queries ([#2379](https://github.com/LemmyNet/lemmy/issues/2379))
+- Use doku release version (ref [#2343](https://github.com/LemmyNet/lemmy/issues/2343)) ([#2386](https://github.com/LemmyNet/lemmy/issues/2386))
+- First pass at adding comment trees. ([#2362](https://github.com/LemmyNet/lemmy/issues/2362))
+- Update apub examples to remove `to` field (ref [#2380](https://github.com/LemmyNet/lemmy/issues/2380)) ([#2382](https://github.com/LemmyNet/lemmy/issues/2382))
+- Handle Like, Undo/Like activities from Mastodon, add tests (fixes [#2378](https://github.com/LemmyNet/lemmy/issues/2378)) ([#2380](https://github.com/LemmyNet/lemmy/issues/2380))
+- Fix a few form options for diesel. Fixes [#2287](https://github.com/LemmyNet/lemmy/issues/2287) ([#2376](https://github.com/LemmyNet/lemmy/issues/2376))
+- Remove docker/pleroma/ folder ([#2381](https://github.com/LemmyNet/lemmy/issues/2381))
+- Remove listing type community. Fixes [#2361](https://github.com/LemmyNet/lemmy/issues/2361) ([#2377](https://github.com/LemmyNet/lemmy/issues/2377))
+- Dont allow login if account is banned or deleted (fixes [#2372](https://github.com/LemmyNet/lemmy/issues/2372)) ([#2374](https://github.com/LemmyNet/lemmy/issues/2374))
+- Send websocket message on accepted follow. Fixes [#2369](https://github.com/LemmyNet/lemmy/issues/2369) ([#2375](https://github.com/LemmyNet/lemmy/issues/2375))
+- Fix panics in search_by_apub_id() (fixes [#2371](https://github.com/LemmyNet/lemmy/issues/2371)) ([#2373](https://github.com/LemmyNet/lemmy/issues/2373))
+- Fix follow being stuck as pending after accept ([#2366](https://github.com/LemmyNet/lemmy/issues/2366))
+- Adding 0.16.6 release
+- Change config pictrs key name ([#2360](https://github.com/LemmyNet/lemmy/issues/2360))
+- Config changes, remove unused image purge function ([#2343](https://github.com/LemmyNet/lemmy/issues/2343))
+- Fix problem where actors can have empty public key (fixes [#2347](https://github.com/LemmyNet/lemmy/issues/2347)) ([#2348](https://github.com/LemmyNet/lemmy/issues/2348))
+- remove parking_lot ([#2350](https://github.com/LemmyNet/lemmy/issues/2350))
+- Revert "Use correct url for activitystreams protocol context ([#2326](https://github.com/LemmyNet/lemmy/issues/2326))" ([#2351](https://github.com/LemmyNet/lemmy/issues/2351))
+- Adding check for requests with no id or name, adding max limit. ([#2265](https://github.com/LemmyNet/lemmy/issues/2265))
+- Dont allow blocking admin ([#2340](https://github.com/LemmyNet/lemmy/issues/2340))
+- Fix wrong clippy warning in ci ([#2339](https://github.com/LemmyNet/lemmy/issues/2339))
+- Be more explicit about returning deleted actors or not ([#2335](https://github.com/LemmyNet/lemmy/issues/2335))
+- Specify minimum Rust version 1.57 (fixes [#2333](https://github.com/LemmyNet/lemmy/issues/2333)) ([#2334](https://github.com/LemmyNet/lemmy/issues/2334))
+- Remove update and read site config. Fixes [#2306](https://github.com/LemmyNet/lemmy/issues/2306) ([#2329](https://github.com/LemmyNet/lemmy/issues/2329))
+- Don't create or initially follow a default community. Fixes [#2317](https://github.com/LemmyNet/lemmy/issues/2317) ([#2328](https://github.com/LemmyNet/lemmy/issues/2328))
+- Increase RSS fetch limit to 20. Fixes [#2319](https://github.com/LemmyNet/lemmy/issues/2319) ([#2327](https://github.com/LemmyNet/lemmy/issues/2327))
+- Expose pending 2 ([#2282](https://github.com/LemmyNet/lemmy/issues/2282))
+- Use correct url for activitystreams protocol context ([#2326](https://github.com/LemmyNet/lemmy/issues/2326))
+- Move setting http_fetch_retry_limit into federation block ([#2314](https://github.com/LemmyNet/lemmy/issues/2314))
+- Fix length of post_report.original_post_name db field (fixes [#2311](https://github.com/LemmyNet/lemmy/issues/2311)) ([#2315](https://github.com/LemmyNet/lemmy/issues/2315))
+- Adding admin purging of DB items and pictures. [#904](https://github.com/LemmyNet/lemmy/issues/904) [#1331](https://github.com/LemmyNet/lemmy/issues/1331) ([#1809](https://github.com/LemmyNet/lemmy/issues/1809))
+- Fix: Use correctly parseable JSON-LD context ([#2299](https://github.com/LemmyNet/lemmy/issues/2299))
+- Fix lemmy version in prod docker-compose.yml ([#2304](https://github.com/LemmyNet/lemmy/issues/2304))
+- Upgrade activitypub_federation to 0.2.0, add setting federation.debug ([#2300](https://github.com/LemmyNet/lemmy/issues/2300))
+- Remove unused setup config vars ([#2302](https://github.com/LemmyNet/lemmy/issues/2302))
+- Add pub use for db crates in api_common ([#2305](https://github.com/LemmyNet/lemmy/issues/2305))
+- Add link to Matrix chat in readme ([#2303](https://github.com/LemmyNet/lemmy/issues/2303))
+- Accept private like ([#1968](https://github.com/LemmyNet/lemmy/issues/1968)) ([#2301](https://github.com/LemmyNet/lemmy/issues/2301))
+- Move different features drone check to below defaults.hjson check. ([#2296](https://github.com/LemmyNet/lemmy/issues/2296))
+- Bump lettre to 0.10.0-rc.7 ([#2297](https://github.com/LemmyNet/lemmy/issues/2297))
+- Remove unused cargo.toml files ([#2293](https://github.com/LemmyNet/lemmy/issues/2293))
+- Forbid outgoing requests in activitypub tests (fixes [#2289](https://github.com/LemmyNet/lemmy/issues/2289)) ([#2294](https://github.com/LemmyNet/lemmy/issues/2294))
+- Embed Peertube videos ([#2261](https://github.com/LemmyNet/lemmy/issues/2261))
+- Run cargo check for each crate with different features (ref [#2284](https://github.com/LemmyNet/lemmy/issues/2284)) ([#2292](https://github.com/LemmyNet/lemmy/issues/2292))
+- Remove 0.15 federation compat code ([#2131](https://github.com/LemmyNet/lemmy/issues/2131))
+- Extract Activitypub logic into separate library ([#2288](https://github.com/LemmyNet/lemmy/issues/2288))
+
+### Lemmy UI
+
+- Fixing requireapplication string. ([#895](https://github.com/LemmyNet/lemmy-ui/issues/895))
+- Fixing PWA install. Fixes [#822](https://github.com/LemmyNet/lemmy-ui/issues/822) ([#893](https://github.com/LemmyNet/lemmy-ui/issues/893))
+- Removing monads. Fixes [#884](https://github.com/LemmyNet/lemmy-ui/issues/884) ([#886](https://github.com/LemmyNet/lemmy-ui/issues/886))
+- Sanitize article html. Fixes [#882](https://github.com/LemmyNet/lemmy-ui/issues/882) ([#883](https://github.com/LemmyNet/lemmy-ui/issues/883))
+- Add `id` to `App` component ([#880](https://github.com/LemmyNet/lemmy-ui/issues/880))
+- Adding Community Language fixes. [#783](https://github.com/LemmyNet/lemmy-ui/issues/783) ([#868](https://github.com/LemmyNet/lemmy-ui/issues/868))
+- Add FeaturedPost Support ([#873](https://github.com/LemmyNet/lemmy-ui/issues/873))
+- Fix csp header for svgs in firefox. Fixes [#869](https://github.com/LemmyNet/lemmy-ui/issues/869) ([#870](https://github.com/LemmyNet/lemmy-ui/issues/870))
+- Remove federation strict_allowlist and retry_count. ([#867](https://github.com/LemmyNet/lemmy-ui/issues/867))
+- Add Taglines support ([#854](https://github.com/LemmyNet/lemmy-ui/issues/854))
+- Fix wrong comment link. Fixes [#714](https://github.com/LemmyNet/lemmy-ui/issues/714) ([#865](https://github.com/LemmyNet/lemmy-ui/issues/865))
+- Dont render images in tippy. Fixes [#776](https://github.com/LemmyNet/lemmy-ui/issues/776) ([#864](https://github.com/LemmyNet/lemmy-ui/issues/864))
+- Move symbols to its own cacheable file. Fixes [#809](https://github.com/LemmyNet/lemmy-ui/issues/809) ([#862](https://github.com/LemmyNet/lemmy-ui/issues/862))
+- Hide post report images. Fixes [#824](https://github.com/LemmyNet/lemmy-ui/issues/824) ([#861](https://github.com/LemmyNet/lemmy-ui/issues/861))
+- Add inline markdown rendering for post titles. Fixes [#827](https://github.com/LemmyNet/lemmy-ui/issues/827) ([#860](https://github.com/LemmyNet/lemmy-ui/issues/860))
+- Show deleted on profile page. Fixes [#834](https://github.com/LemmyNet/lemmy-ui/issues/834) ([#859](https://github.com/LemmyNet/lemmy-ui/issues/859))
+- Make sure user is logged in for site creation. Fixes [#838](https://github.com/LemmyNet/lemmy-ui/issues/838) ([#858](https://github.com/LemmyNet/lemmy-ui/issues/858))
+- Fix missing report shield. Fixes [#842](https://github.com/LemmyNet/lemmy-ui/issues/842) ([#855](https://github.com/LemmyNet/lemmy-ui/issues/855))
+- Increase markdown field char limit to 50k. Fixes [#849](https://github.com/LemmyNet/lemmy-ui/issues/849) ([#850](https://github.com/LemmyNet/lemmy-ui/issues/850))
+- Adding new site setup fields. ([#840](https://github.com/LemmyNet/lemmy-ui/issues/840))
+- Fix workaround for broken logout ([#836](https://github.com/LemmyNet/lemmy-ui/issues/836))
+- Strip html from og descriptions. Fixes [#830](https://github.com/LemmyNet/lemmy-ui/issues/830) ([#831](https://github.com/LemmyNet/lemmy-ui/issues/831))
+- Cleanup docker builds ([#829](https://github.com/LemmyNet/lemmy-ui/issues/829))
+- Fix admin default listing type. Fixes [#797](https://github.com/LemmyNet/lemmy-ui/issues/797) ([#818](https://github.com/LemmyNet/lemmy-ui/issues/818))
+- Search button and input style fixes ([#825](https://github.com/LemmyNet/lemmy-ui/issues/825))
+- Support new video embed api format (fixes [#709](https://github.com/LemmyNet/lemmy-ui/issues/709)) ([#817](https://github.com/LemmyNet/lemmy-ui/issues/817))
+- Change for container divs to container-lg ([#813](https://github.com/LemmyNet/lemmy-ui/issues/813))
+- Remove newline, save space for toast message.
+- Avoid browser warning about leaving page, handle delete image fail and add user filenames to messages.
+- Avoid browser warning about leaving page, handle delete image fail.
+- Adding private message reporting. Fixes [#782](https://github.com/LemmyNet/lemmy-ui/issues/782) ([#806](https://github.com/LemmyNet/lemmy-ui/issues/806))
+- Adding the email_admins for new application config. ([#742](https://github.com/LemmyNet/lemmy-ui/issues/742))
+- Adding new unread comments. ([#749](https://github.com/LemmyNet/lemmy-ui/issues/749))
+- Fix broken profile page, and missing sidebars. ([#795](https://github.com/LemmyNet/lemmy-ui/issues/795))
+- Adding a loading indicator for post community searching. Fixes [#692](https://github.com/LemmyNet/lemmy-ui/issues/692) ([#794](https://github.com/LemmyNet/lemmy-ui/issues/794))
+- Fix missing initial load of discussion languages. ([#793](https://github.com/LemmyNet/lemmy-ui/issues/793))
+- Fix posts pushed from blocked users/comms. Fixes [#697](https://github.com/LemmyNet/lemmy-ui/issues/697) ([#792](https://github.com/LemmyNet/lemmy-ui/issues/792))
+- Adding post and comment language tagging. Fixes [#771](https://github.com/LemmyNet/lemmy-ui/issues/771) ([#781](https://github.com/LemmyNet/lemmy-ui/issues/781))
+- Hide create community ([#787](https://github.com/LemmyNet/lemmy-ui/issues/787))
+- Increase fetch limit for user and community searches. Fixes [#756](https://github.com/LemmyNet/lemmy-ui/issues/756) ([#773](https://github.com/LemmyNet/lemmy-ui/issues/773))
+- Fix private instance setting. Fixes [#769](https://github.com/LemmyNet/lemmy-ui/issues/769) ([#786](https://github.com/LemmyNet/lemmy-ui/issues/786))
+- Hide extra comment and post functionality from search page. Fixes [#752](https://github.com/LemmyNet/lemmy-ui/issues/752) ([#788](https://github.com/LemmyNet/lemmy-ui/issues/788))
+- Show create post even if not subscribed. Fixes [#768](https://github.com/LemmyNet/lemmy-ui/issues/768) ([#789](https://github.com/LemmyNet/lemmy-ui/issues/789))
+- Cantarell for darkly/darkly-red. Fixes [#779](https://github.com/LemmyNet/lemmy-ui/issues/779) ([#784](https://github.com/LemmyNet/lemmy-ui/issues/784))
+- Adding mod / admin distinguish. ([#744](https://github.com/LemmyNet/lemmy-ui/issues/744))
+- Disable CSP when in debug mode. ([#743](https://github.com/LemmyNet/lemmy-ui/issues/743))
+- Reduce search minLength to 1. Fixes [#750](https://github.com/LemmyNet/lemmy-ui/issues/750) ([#751](https://github.com/LemmyNet/lemmy-ui/issues/751))
+- Add support for filtering mod logs
+- Documenting and changing a few env vars. Fixes [#661](https://github.com/LemmyNet/lemmy-ui/issues/661) ([#739](https://github.com/LemmyNet/lemmy-ui/issues/739))
+- Fixing post_view glitch. Fixes [#740](https://github.com/LemmyNet/lemmy-ui/issues/740) ([#741](https://github.com/LemmyNet/lemmy-ui/issues/741))
+- Change CSP rule for connect-src (websocket) to wildcard (fixes [#730](https://github.com/LemmyNet/lemmy-ui/issues/730)) ([#737](https://github.com/LemmyNet/lemmy-ui/issues/737))
+- Comment Tree paging ([#726](https://github.com/LemmyNet/lemmy-ui/issues/726))
+- Adding block from community sidebar. Fixes [#690](https://github.com/LemmyNet/lemmy-ui/issues/690) ([#716](https://github.com/LemmyNet/lemmy-ui/issues/716))
+- Fix suggested post title html. Fixes [#691](https://github.com/LemmyNet/lemmy-ui/issues/691) ([#717](https://github.com/LemmyNet/lemmy-ui/issues/717))
+- Fix missing deny button. Fixes [#723](https://github.com/LemmyNet/lemmy-ui/issues/723) ([#728](https://github.com/LemmyNet/lemmy-ui/issues/728))
+- Fix community filtering. ([#729](https://github.com/LemmyNet/lemmy-ui/issues/729))
+- use zh-TW for language code, instead of zh_Hant. ([#725](https://github.com/LemmyNet/lemmy-ui/issues/725))
+- Fix Notification browser fetch
+- Forgot to type a few Searches. Fixes [#718](https://github.com/LemmyNet/lemmy-ui/issues/718) ([#722](https://github.com/LemmyNet/lemmy-ui/issues/722))
+- Fixing linkify GC crash. ([#715](https://github.com/LemmyNet/lemmy-ui/issues/715))
+- New communities fetch limit is 50. ([#711](https://github.com/LemmyNet/lemmy-ui/issues/711))
+- Clicking "subscribe pending" button performs unsubscribe (fixes [#705](https://github.com/LemmyNet/lemmy-ui/issues/705)) ([#706](https://github.com/LemmyNet/lemmy-ui/issues/706))
+- Fix site setup and login. Fixes [#699](https://github.com/LemmyNet/lemmy-ui/issues/699) ([#702](https://github.com/LemmyNet/lemmy-ui/issues/702))
+- Adding purging of comments, posts, communities, and users. ([#459](https://github.com/LemmyNet/lemmy-ui/issues/459))
+- Removing save and read config hjson. Fixes [#695](https://github.com/LemmyNet/lemmy-ui/issues/695) ([#696](https://github.com/LemmyNet/lemmy-ui/issues/696))
+- Expose pending 2 ([#662](https://github.com/LemmyNet/lemmy-ui/issues/662))
+- Adding option types 2 ([#689](https://github.com/LemmyNet/lemmy-ui/issues/689))
+- Fix NPE during new site startup ([#677](https://github.com/LemmyNet/lemmy-ui/issues/677))
+- Fixing CSP for iOS devices. Fixes [#669](https://github.com/LemmyNet/lemmy-ui/issues/669) ([#678](https://github.com/LemmyNet/lemmy-ui/issues/678))
+- Fix issue with new notification trying to do a fetch.
+
+# Lemmy v0.16.7 Release : Bug fixes (2022-09-14)
+
+_Written by @dessalines and @nutomic, 2022-09-14_
+
+A few bug fixes:
+
+- Fix missing auth on new post refresh. ([#764](https://github.com/LemmyNet/lemmy-ui/issues/764))
+- Change CSP rule for connect-src (websocket) to wildcard (fixes [#730](https://github.com/LemmyNet/lemmy-ui/issues/730)) ([#737](https://github.com/LemmyNet/lemmy-ui/issues/737))
+- Increase default search rate limit. ([#2424](https://github.com/LemmyNet/lemmy/issues/2424))
+- Rejected federated pm from blocked users (fixes [#2398](https://github.com/LemmyNet/lemmy/issues/2398)) ([#2408](https://github.com/LemmyNet/lemmy/issues/2408))
+- Handle Like, Undo/Like activities from Mastodon, add tests (fixes [#2378](https://github.com/LemmyNet/lemmy/issues/2378)) ([#2380](https://github.com/LemmyNet/lemmy/issues/2380))
+- Dont allow login if account is banned or deleted (fixes [#2372](https://github.com/LemmyNet/lemmy/issues/2372)) ([#2374](https://github.com/LemmyNet/lemmy/issues/2374))
+- Fix panics in search_by_apub_id() (fixes [#2371](https://github.com/LemmyNet/lemmy/issues/2371)) ([#2373](https://github.com/LemmyNet/lemmy/issues/2373))
+
+# Lemmy v0.16.6 Release : bug fixes (2022-07-19)
 
 A few bug fixes:
 
@@ -10,7 +1470,7 @@ A few bug fixes:
 - Add pub use for db crates in api_common ([#2305](https://github.com/LemmyNet/lemmy/issues/2305))
 - Accept private like ([#1968](https://github.com/LemmyNet/lemmy/issues/1968)) ([#2301](https://github.com/LemmyNet/lemmy/issues/2301))
 
-#  Lemmy v0.16.4 Release : Peertube federation, Rust API and other improvements (2022-05-27)
+# Lemmy v0.16.4 Release : Peertube federation, Rust API and other improvements (2022-05-27)
 
 ## What is Lemmy?
 
@@ -46,7 +1506,7 @@ Follow the [Docker or Ansible upgrade instructions here.](https://join-lemmy.org
 
 ## Support development
 
-We (@dessalines and @nutomic) have been working full-time on Lemmy for almost two years. This is largely thanks to support from [NLnet foundation](https://nlnet.nl/). 
+We (@dessalines and @nutomic) have been working full-time on Lemmy for almost two years. This is largely thanks to support from [NLnet foundation](https://nlnet.nl/).
 
 If you'd like to support development, and make sure that we will always be available to work full time on Lemmy, consider [donating to support its development](https://join-lemmy.org/donate). We've spent hundreds of hours on Lemmy, and would like to be able to add more developers to our little open-source co-op as time goes on.
 
@@ -225,8 +1685,9 @@ Until now, only community bans were federated, and the "Remove content" option d
 ### Hide communities
 
 @dayinjing implemented a funcionality for instance admins to hide controversial communities. A hidden community is only visible to those users who subscribe to it. This represents a milder alternative to removing a community. This functionality is not implemented in lemmy-ui yet, but admins can hide a community like this via command line:
+
 ```
-curl -X PUT https://example.com/api/v3/community/hide \   
+curl -X PUT https://example.com/api/v3/community/hide \
     -H "Content-Type: application/json" \
     -d \
     '{"community_id":3,"hidden":true,"reason":"*reason for mod log*","auth":"*admin jwt token*"}'
@@ -234,12 +1695,11 @@ curl -X PUT https://example.com/api/v3/community/hide \
 
 ### Jerboa: a new android app
 
-To help adoption, and since most people use social media through their smartphones nowadays, @dessalines has been working on a native android app for Lemmy called [Jerboa](https://github.com/dessalines/jerboa), which is now on [F-Droid](https://f-droid.org/packages/com.jerboa) and [Google Play](https://play.google.com/store/apps/details?id=com.jerboa). 
+To help adoption, and since most people use social media through their smartphones nowadays, @dessalines has been working on a native android app for Lemmy called [Jerboa](https://github.com/dessalines/jerboa), which is now on [F-Droid](https://f-droid.org/packages/com.jerboa) and [Google Play](https://play.google.com/store/apps/details?id=com.jerboa).
 
 It is still at an alpha level, but is very usable. We'd love to have experienced android developers contribute to it.
 
-This now makes three smartphone apps for Lemmy: [Lemmur and Jerboa for Android, and Remmel for iOS](https://join-lemmy.org/apps). 
-
+This now makes three smartphone apps for Lemmy: [Lemmur and Jerboa for Android, and Remmel for iOS](https://join-lemmy.org/apps).
 
 ## Upgrade notes
 
@@ -291,7 +1751,7 @@ If you'd like to support development, and make sure that we will always be avail
 
 ### Lemmy UI
 
-- Rename theme files from *.min.css to *.css ([#590](https://github.com/LemmyNet/lemmy-ui/issues/590))
+- Rename theme files from _.min.css to _.css ([#590](https://github.com/LemmyNet/lemmy-ui/issues/590))
 - Custom themes ([#584](https://github.com/LemmyNet/lemmy-ui/issues/584))
 - Add option to set site default theme (fixes [#559](https://github.com/LemmyNet/lemmy-ui/issues/559))
 - Adding nofollow to links. Fixes [#542](https://github.com/LemmyNet/lemmy-ui/issues/542) ([#543](https://github.com/LemmyNet/lemmy-ui/issues/543))
@@ -330,7 +1790,6 @@ Lemmy now has private instances, optional registration applications, optional em
 
 Special thanks to @asonix for adding [tokio-console](https://github.com/LemmyNet/Lemmy/issues/2003) and [Jaeger + opentelemetry](https://github.com/LemmyNet/Lemmy/issues/1992) to our dev setups, so we can better identify performance bottlenecks.
 
-
 ## What is Lemmy?
 
 [Lemmy](https://join-lemmy.org/) is similar to sites like Reddit, Lobste.rs, or Hacker News: you subscribe to communities you're interested in, post links and discussions, then vote and comment on them. Lemmy isn't just a reddit alternative; its a network of interconnected communities ran by different people and organizations, all combining to create a single, personalized front page of your favorite news, articles, and memes.
@@ -345,11 +1804,11 @@ Admins can turn this on, and new users will need to verify their emails. Current
 
 Admins can now optionally make new users fill out an application to join your server. There is a new panel in their top bar where they can approve or deny pending applications.
 
-This works in conjunction with the *require_email* field. If that is also turned on, the application will only be shown after their email has been verified. The user will receive an email when they have been accepted.
+This works in conjunction with the _require_email_ field. If that is also turned on, the application will only be shown after their email has been verified. The user will receive an email when they have been accepted.
 
 ### Closed / Private instances
 
-The instance settings now includes a *private instance* option, which if turned on, will only let logged in users view your site. Private instances was one of our first issues, and it was a large effort, so its great to finally have this completed.
+The instance settings now includes a _private instance_ option, which if turned on, will only let logged in users view your site. Private instances was one of our first issues, and it was a large effort, so its great to finally have this completed.
 
 ### Temporary Bans
 
@@ -371,7 +1830,7 @@ If you'd like to support development, and make sure that we will always be avail
 
 ### API
 
-We've removed a list of banned users from `GetSite`, added a few endpoints related to registration applications, made a few changes allowing temporary bans, site settings, made a few changes to the login response. These are non-destructive and current clients should work with this release. 
+We've removed a list of banned users from `GetSite`, added a few endpoints related to registration applications, made a few changes allowing temporary bans, site settings, made a few changes to the login response. These are non-destructive and current clients should work with this release.
 
 - A full list of the API changes can be seen on this diff of [lemmy-js-client: 0.14.0 -> 0.15.0](https://github.com/LemmyNet/lemmy-js-client/compare/0.14.0-rc.1...0.15.0-rc.34) .
 
@@ -455,12 +1914,11 @@ Almost one year after [first enabling federation](https://lemmy.ml/post/42833),
 
 It took a lot of work to make this possible, so big thanks to [NLnet](https://nlnet.nl/) for funding our full time work on Lemmy, and to [@lanodan](https://queer.hacktivis.me/users/lanodan) and [@asonix](https://masto.asonix.dog/@asonix) for helping to figure out how Pleroma and Mastodon federation works (it's difficult because they have almost no documentation).
 
-
 ## Major Changes
 
 ### Federation code rewrite
 
-The rewrite of the federation code started by @nutomic in August is now mostly complete. As a result, the code is much cleaner, and has tests to guarantee no breaking changes between Lemmy versions. As a side effect of this rewrite, it was now relatively easy to enable federation with other projects. 
+The rewrite of the federation code started by @nutomic in August is now mostly complete. As a result, the code is much cleaner, and has tests to guarantee no breaking changes between Lemmy versions. As a side effect of this rewrite, it was now relatively easy to enable federation with other projects.
 
 Mastodon and Pleroma users can:
 
@@ -470,7 +1928,7 @@ Mastodon and Pleroma users can:
 
 In addition, Pleroma users can exchange private messages with Lemmy users.
 
-Note that Pleroma and Mastodon rely on a compatibility mode in Lemmy, which means that they won't receive events like Deletes or Votes. Other projects whose federation works similar to Pleroma/Mastodon  will likely also federate.
+Note that Pleroma and Mastodon rely on a compatibility mode in Lemmy, which means that they won't receive events like Deletes or Votes. Other projects whose federation works similar to Pleroma/Mastodon will likely also federate.
 
 ### Hardcoded slur filter removed
 
@@ -526,7 +1984,7 @@ We've now separated our ansible install method (the preferred way to deploy Lemm
 - Format config/defaults.hjson before committing ([#1860](https://github.com/LemmyNet/Lemmy/issues/1860))
 - Breaking apub changes ([#1859](https://github.com/LemmyNet/Lemmy/issues/1859))
 - Pleroma federation2 ([#1855](https://github.com/LemmyNet/Lemmy/issues/1855))
-- Create a custom pre-commit hook, generates config/defaults.hjson  ([#1857](https://github.com/LemmyNet/Lemmy/issues/1857))
+- Create a custom pre-commit hook, generates config/defaults.hjson ([#1857](https://github.com/LemmyNet/Lemmy/issues/1857))
 - Add cargo metadata to all crates ([#1853](https://github.com/LemmyNet/Lemmy/issues/1853))
 - Add both (De)Serialize to all models ([#1851](https://github.com/LemmyNet/Lemmy/issues/1851))
 - Adding GetUnreadCount to the API. Fixes [#1794](https://github.com/LemmyNet/Lemmy/issues/1794) ([#1842](https://github.com/LemmyNet/Lemmy/issues/1842))
@@ -565,6 +2023,7 @@ We've now separated our ansible install method (the preferred way to deploy Lemm
 - ui changes for marking comment as read on reply ([#454](https://github.com/LemmyNet/lemmy-ui/issues/454))
 - hide mod actions appropriately fix [#441](https://github.com/LemmyNet/lemmy-ui/issues/441) ([#447](https://github.com/LemmyNet/lemmy-ui/issues/447))
 - Add honeypot for user and form creation. Fixes [#433](https://github.com/LemmyNet/lemmy-ui/issues/433) ([#435](https://github.com/LemmyNet/lemmy-ui/issues/435))
+
 # Lemmy v0.13.3 Release (2021-10-13)
 
 - Dont swallow API errors (fixes [#1834](https://github.com/LemmyNet/lemmy/issues/1834)) ([#1837](https://github.com/LemmyNet/lemmy/issues/1837))
@@ -578,10 +2037,10 @@ Since our last release earlier this month, we've had [~30](https://github.com/Le
 
 ## Major Changes
 
-- Added comment and post reporting in the front end, and cleaned up the reporting API. 
-  - *Note: these are local-only currently, reports are not yet federated.*
-- The JWT secret is now auto-generated by the database. 
-  - *Note: this will log out all users, so users will have to log in again.*
+- Added comment and post reporting in the front end, and cleaned up the reporting API.
+  - _Note: these are local-only currently, reports are not yet federated._
+- The JWT secret is now auto-generated by the database.
+  - _Note: this will log out all users, so users will have to log in again._
 - Lots of smaller UI fixes listed below.
 
 ## Upgrade notes
@@ -661,7 +2120,7 @@ Since our last release in April, we've had [~80](https://github.com/LemmyNet/lem
 
 #### Major Changes
 
-*Note: Issue links are below.*
+_Note: Issue links are below._
 
 - @nutomic did a major rewrite of the federation code. It is much simpler now, and reduced from 8000 lines of code to 6400. Functionality is mostly the same, but future changes will be much easier.
 - You can now block users and communities, and their posts / comments won't show up in your feed.
@@ -712,7 +2171,6 @@ Since our last release in April, we've had [~80](https://github.com/LemmyNet/lem
 - Migrate comment inReplyTo field to single value (ref [#1454](https://github.com/LemmyNet/lemmy/issues/1454))
 - Fix issue with protocol string in actor id generation ([#1668](https://github.com/LemmyNet/lemmy/issues/1668))
 
-
 ### Lemmy UI
 
 - Integrating resolve_user into search. ([#377](https://github.com/LemmyNet/lemmy-ui/issues/377))
@@ -781,7 +2239,7 @@ Since our last release, we've had [~30](https://github.com/LemmyNet/lemmy/compar
 
 ### Lemmy Server
 
-- Blank out extra info for deleted or removed content. Fixes [#1679](https://github.com/LemmyNet/Lemmy/issues/1679) 
+- Blank out extra info for deleted or removed content. Fixes [#1679](https://github.com/LemmyNet/Lemmy/issues/1679)
 - Add show_new_posts_notifs setting. Fixes [#1664](https://github.com/LemmyNet/Lemmy/issues/1664)
 - Fix issue with protocol string in actor id generation [#1668](https://github.com/LemmyNet/Lemmy/issues/1668)
 - Adding shortname fetching for users and communities. Fixes [#1662](https://github.com/LemmyNet/Lemmy/issues/1662)
@@ -848,7 +2306,7 @@ Since our last release this month, we've had [~60](https://github.com/LemmyNet/l
 
 #### Major Changes
 
-- Add option to disable strict allowlist ( [#1486](https://github.com/LemmyNet/lemmy/issues/1486)) [documentation](https://join-lemmy.org/docs/en/federation/administration.html) 
+- Add option to disable strict allowlist ( [#1486](https://github.com/LemmyNet/lemmy/issues/1486)) [documentation](https://join-lemmy.org/docs/en/federation/administration.html)
 - Add option to limit community creation to admins only ([#1587](https://github.com/LemmyNet/lemmy/issues/1587))
 - Many search improvements:
   - Don't search for communities or users when the id is included.
@@ -926,7 +2384,7 @@ Since our last release in February, we've had [~150](https://github.com/LemmyNet
 #### General
 
 - Rewrote config implementation, finally allowing us to use newer Rust versions.
-- Removed categories. 
+- Removed categories.
 - Various refactors.
 
 #### API
@@ -940,7 +2398,7 @@ Since our last release in February, we've had [~150](https://github.com/LemmyNet
 - Federating Matrix ID.
 - Many changes for better compatibility with ActivityPub standard.
 
-#### Database 
+#### Database
 
 - Split the `user_` into `person` and `local_user` tables.
 - Strictly typed commonly used ID columns, to prevent DB errors using `i32` as ids.
@@ -972,8 +2430,8 @@ Since our last release in February, we've had [~150](https://github.com/LemmyNet
 
 - Configuration via environment variables is not supported anymore, you must have all your config in the [lemmy.hjson](https://github.com/LemmyNet/lemmy/blob/main/ansible/templates/config.hjson) file ( except for `LEMMY_CONFIG_LOCATION` ).
 - The config format for `allowed_instances` and `blocked_instances` has changed, and you need to adjust your config file manually:
-    - before: `allowed_instances: ds9.lemmy.ml,enterprise.lemmy.ml`
-    - now: `allowed_instances: ["ds9.lemmy.ml", "enterprise.lemmy.ml"]` , and only one of the `allowed_instances` or `blocked_instances` blocks can be set.
+  - before: `allowed_instances: ds9.lemmy.ml,enterprise.lemmy.ml`
+  - now: `allowed_instances: ["ds9.lemmy.ml", "enterprise.lemmy.ml"]` , and only one of the `allowed_instances` or `blocked_instances` blocks can be set.
 - The API has been upgraded from `v2` to `v3`, so all clients need to be updated: [lemmy-js-client: 0.9.9 -> 0.10.0](https://github.com/LemmyNet/lemmy-js-client/compare/0.9.9...0.10.0-rc.13) .
 
 If you'd like to make a DB backup before upgrading, follow [this guide](https://join-lemmy.org/docs/en/administration/backup_and_restore.html).
@@ -983,13 +2441,12 @@ To upgrade your instance to `v0.10.0`, simply follow the instructions in the doc
 - [Upgrade with manual Docker installation](https://join-lemmy.org/docs/en/administration/install_docker.html#updating)
 - [Upgrade with Ansible installation](https://join-lemmy.org/docs/en/administration/install_ansible.html)
 
-
 ## Compilation time
 
-|| v0.9.0 (Rust 1.47) | v0.10.0 (Rust 1.47) | v0.10.0 (Rust 1.51) |
-|-| -------- | -------- | -------- |
-|Clean | 140s     | 146s     | 119s     |
-| Incremental | 28s | 22s | 19s |
+|             | v0.9.0 (Rust 1.47) | v0.10.0 (Rust 1.47) | v0.10.0 (Rust 1.51) |
+| ----------- | ------------------ | ------------------- | ------------------- |
+| Clean       | 140s               | 146s                | 119s                |
+| Incremental | 28s                | 22s                 | 19s                 |
 
 Despite ongoing efforts to speed up compilation, it has actually gotten slower when comparing with the same Rust version. Only thanks to improvements in newer Rust versions has our build process gotten faster. This could be simply because we added more code, while Lemmy v0.9.0 had 22.4k lines of Rust, v0.10.0 has 23.8k (an increase of 6%).
 
@@ -1008,6 +2465,7 @@ On the other hand, some crates have gotten much slower to compile, in particular
 ## Changes
 
 ### Lemmy backend
+
 - Added an federated activity query sorting order.
 - Explicitly marking posts and comments as public.
 - Added a `NewComment` / forum sort for posts.
@@ -1113,7 +2571,6 @@ None of these are breaking changes, so federation between 0.9.0 and 0.8.11 will
 - Fixed community link wrapping.
 - Various other bug fixes.
 
-
 ### Lemmy Docs
 
 - We moved documentation into a separate git repository, and support translation for the docs now!
@@ -1130,7 +2587,7 @@ If you'd like to make a DB backup before upgrading, follow [this guide](https://
 
 ## Changes
 
-We've been working at warp speed since our `v0.7.0` release in June, adding over [870 commits](https://github.com/LemmyNet/lemmy/compare/v0.7.0...main) since then. :sweat: 
+We've been working at warp speed since our `v0.7.0` release in June, adding over [870 commits](https://github.com/LemmyNet/lemmy/compare/v0.7.0...main) since then. :sweat:
 
 Here are some of the bigger changes:
 
@@ -1145,7 +2602,7 @@ Here are some of the bigger changes:
 
 #### Federation
 
-- The first **federation public beta release**, woohoo :fireworks: 
+- The first **federation public beta release**, woohoo :fireworks:
 - All Lemmy functionality now works over ActivityPub (except turning remote users into mods/admins)
 - Instance allowlist and blocklist
 - Documentation for [admins](https://join-lemmy.org/docs/administration_federation.html) and [devs](https://join-lemmy.org/docs/contributing_federation_overview.html) on how federation works
@@ -1159,7 +2616,7 @@ Here are some of the bigger changes:
 ### User Interface
 
 - Separated the UI from the server code, in [lemmy-ui](https://github.com/LemmyNet/lemmy-ui).
-- The UI can now read with javascript disabled! 
+- The UI can now read with javascript disabled!
 - It's now a fully isomorphic application using [inferno-isomorphic](https://infernojs.org/docs/guides/isomorphic). This means that page loads are now much faster, as the server does the work.
 - The UI now also supports open-graph and twitter cards! Linking to lemmy posts (from whatever platform you use) looks pretty now: ![](https://i.imgur.com/6TZ2v7s.png)
 - Improved the search page ( more features incoming ).
@@ -1182,7 +2639,7 @@ Here are some of the bigger changes:
 
 ## Contributors
 
-We'd also like to thank both the [NLnet foundation](https://nlnet.nl/) for their support in allowing us to work full-time on Lemmy ( as well as their support for [other important open-source projects](https://nlnet.nl/project/current.html) ), [those who sponsor us](https://lemmy.ml/sponsors), and those who [help translate Lemmy](https://weblate.yerbamate.ml/projects/lemmy/). Every little bit does help. We remain committed to never allowing advertisements, monetizing, or venture-capital in Lemmy; software should be communal, and should benefit humanity, not a small group of company owners. 
+We'd also like to thank both the [NLnet foundation](https://nlnet.nl/) for their support in allowing us to work full-time on Lemmy ( as well as their support for [other important open-source projects](https://nlnet.nl/project/current.html) ), [those who sponsor us](https://lemmy.ml/sponsors), and those who [help translate Lemmy](https://weblate.yerbamate.ml/projects/lemmy/). Every little bit does help. We remain committed to never allowing advertisements, monetizing, or venture-capital in Lemmy; software should be communal, and should benefit humanity, not a small group of company owners.
 
 ## Upgrading
 
@@ -1235,6 +2692,7 @@ ansible-playbook lemmy.yml
 ```
 
 **With manual Docker installation:**
+
 ```
 # run these commands on your server
 cd /lemmy
@@ -1246,7 +2704,6 @@ wget https://raw.githubusercontent.com/LemmyNet/lemmy/master/docker/prod/docker-
 sudo docker-compose up -d
 ```
 
-
 # Lemmy v0.7.0 Release (2020-06-23)
 
 This release replaces [pictshare](https://github.com/HaschekSolutions/pictshare)
@@ -1260,7 +2717,7 @@ Overall, since our last major release in January (v0.6.0), we have closed over
 - Reconnecting websockets
 - Many more themes, including a default light one.
 - Expandable embeds for post links (and thumbnails), from
-[iframely](https://github.com/itteco/iframely)
+  [iframely](https://github.com/itteco/iframely)
 - Better icons
 - Emoji autocomplete to post and message bodies, and an Emoji Picker
 - Post body now searchable
@@ -1294,6 +2751,7 @@ sudo ./migrate-pictshare-to-pictrs.bash
 ```
 
 **With manual Docker installation:**
+
 ```
 # run these commands on your server
 cd /lemmy
@@ -1312,7 +2770,7 @@ login again, so that images are loaded correctly.
 
 # Lemmy v0.6.0 Release (2020-01-16)
 
-`v0.6.0` is here, and we've closed [41 issues!](https://github.com/LemmyNet/lemmy/milestone/15?closed=1) 
+`v0.6.0` is here, and we've closed [41 issues!](https://github.com/LemmyNet/lemmy/milestone/15?closed=1)
 
 This is the biggest release by far:
 
@@ -1322,7 +2780,7 @@ This is the biggest release by far:
 - Can set a custom language.
 - Lemmy-wide settings to disable downvotes, and close registration.
 - A better documentation system, hosted in lemmy itself.
-- [Huge DB performance gains](https://github.com/LemmyNet/lemmy/issues/411) (everthing down to < `30ms`) by using materialized views. 
+- [Huge DB performance gains](https://github.com/LemmyNet/lemmy/issues/411) (everthing down to < `30ms`) by using materialized views.
 - Fixed major issue with similar post URL and title searching.
 - Upgraded to Actix `2.0`
 - Faster comment / post voting.