diff --git a/CHANGELOG.md b/CHANGELOG.md index ed5127a84e..4144fbaf2b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,34 @@ All notable changes to this project will be documented in this file. +## [4.6.1] - 2026-06-24 + +### Security + +- Update dependencies + +### Added + +- Add `avatar_description` and `header_description` to `/api/v1/accounts/update_credentials` (#39547 and #39574 by @ClearlyClaire and @mkljczk) + - This is available starting from Mastodon API version `11` and intended to provide an easier implementation path for clients implementing a similar feature in forks. + - The new `/api/v1/profile` API remains the recommended API for setting avatar and header description as well as other profile values. + +### Fixed + +- Fix Emoji IndexedDB upgrades when multiple tabs are open (#39576 by @ChaosExAnima) +- Fix combobox listbox not scrolling up when new suggestions have loaded (#39588 by @diondiondion) +- Fix media modal navigation in RTL languages (#39587 by @diondiondion) +- Fix accounts not visible in collection editor in advanced web interface (#39586 by @diondiondion) +- Fix error on login with certain LDAP configurations (#39571 by @oneiros) +- Fix simplified layout applying to other pages in web UI (#39570 by @Gargron) +- Fix emoji database loading in web worker (#39558 and #39562 by @ChaosExAnima) +- Fix display name length limit being incorrectly enforced in web UI (#39499 by @shleeable) +- Fix advanced UI columns not using mobile styles (#39528 by @diondiondion) +- Fix "private mention" post heading overlapping thread line (#39521 and #39554 by @diondiondion) +- Fix misattribution of remote featured collections in some cases (#39523, #39525, and #39550 by @oneiros) +- Fix custom profile field overflow (#39513 by @diondiondion) +- Fix fetching unknown key when it's not the actor's first, and add error handling for unavailable keys (#39512 by @ClearlyClaire) + ## [4.6.0] - 2026-06-17 ### Added diff --git a/docker-compose.yml b/docker-compose.yml index b7002b3067..993b06e5b1 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -60,7 +60,7 @@ services: web: # You can uncomment the following line if you want to not use the prebuilt image, for example if you have local code changes # build: . - image: ghcr.io/mastodon/mastodon:v4.6.0 + image: ghcr.io/mastodon/mastodon:v4.6.1 restart: always env_file: .env.production command: bundle exec puma -C config/puma.rb @@ -84,7 +84,7 @@ services: # build: # dockerfile: ./streaming/Dockerfile # context: . - image: ghcr.io/mastodon/mastodon-streaming:v4.6.0 + image: ghcr.io/mastodon/mastodon-streaming:v4.6.1 restart: always env_file: .env.production command: node ./streaming/index.js @@ -103,7 +103,7 @@ services: sidekiq: # You can uncomment the following line if you want to not use the prebuilt image, for example if you have local code changes # build: . - image: ghcr.io/mastodon/mastodon:v4.6.0 + image: ghcr.io/mastodon/mastodon:v4.6.1 restart: always env_file: .env.production command: bundle exec sidekiq diff --git a/lib/mastodon/version.rb b/lib/mastodon/version.rb index d7ce89e53e..6f1ea7547f 100644 --- a/lib/mastodon/version.rb +++ b/lib/mastodon/version.rb @@ -13,7 +13,7 @@ module Mastodon end def patch - 0 + 1 end def default_prerelease