Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(deps): update ghcr.io/mastodon/mastodon docker tag to v4.2.1 (#…
…139) This PR contains the following updates: | Package | Update | Change | |---|---|---| | [ghcr.io/mastodon/mastodon](https://github.com/mastodon/mastodon) | patch | `v4.2.0` -> `v4.2.1` | --- ### ⚠ Dependency Lookup Warnings ⚠ Warnings were logged while processing this repo. Please check the logs for more information. --- ### Release Notes <details> <summary>mastodon/mastodon (ghcr.io/mastodon/mastodon)</summary> ### [`v4.2.1`](https://github.com/mastodon/mastodon/releases/tag/v4.2.1) [Compare Source](mastodon/mastodon@v4.2.0...v4.2.1) <h1><picture> <source media="(prefers-color-scheme: dark)" srcset="./lib/assets/wordmark.dark.png?raw=true"> <source media="(prefers-color-scheme: light)" srcset="./lib/assets/wordmark.light.png?raw=true"> <img alt="Mastodon" src="./lib/assets/wordmark.light.png?raw=true" height="34"> </picture></h1> This is a bugfix release for the 4.2.0 version, if you're installing from an earlier version, please check the [4.2.0 release notes](https://github.com/mastodon/mastodon/releases/tag/v4.1.9) as they contain important information on how to update. > **:warning: We recently released important security updates.** > > If you don't want or can't update to 4.2.x yet, the security updates are also available for the [4.1.x branch](https://github.com/mastodon/mastodon/releases/tag/v4.1.9), the [4.0.x branch](https://github.com/mastodon/mastodon/releases/tag/v4.0.11) and the [3.5.x branch](https://github.com/mastodon/mastodon/releases/tag/v3.5.14). ##### Changelog ##### Added - Add redirection on `/deck` URLs for logged-out users ([ClearlyClaire](mastodon/mastodon#27128)) - Add support for v4.2.0 migrations to `tootctl maintenance fix-duplicates` ([ClearlyClaire](mastodon/mastodon#27147)) ##### Changed - Change some worker lock TTLs to be shorter-lived ([ClearlyClaire](mastodon/mastodon#27246)) - Change user archive export allowed period from 7 days to 6 days ([suddjian](mastodon/mastodon#27200)) ##### Fixed - Fix clicking on already-opened thread post scrolling to the top of the thread ([ClearlyClaire](mastodon/mastodon#27331), [ClearlyClaire](mastodon/mastodon#27338)) - Fix some remote posts getting truncated ([ClearlyClaire](mastodon/mastodon#27307)) - Fix some cases of infinite scroll code trying to fetch inaccessible posts in a loop ([ClearlyClaire](mastodon/mastodon#27286)) - Fix `Vary` headers not being set on some redirects ([ClearlyClaire](mastodon/mastodon#27272)) - Fix mentions being matched in some URL query strings ([mjankowski](mastodon/mastodon#25656)) - Fix unexpected linebreak in version string in the Web UI ([vmstan](mastodon/mastodon#26986)) - Fix double scroll bars in some columns in advanced interface ([ClearlyClaire](mastodon/mastodon#27187)) - Fix boosts of local users being filtered in account timelines ([ClearlyClaire](mastodon/mastodon#27204)) - Fix multiple instances of the trend refresh scheduler sometimes running at once ([ClearlyClaire](mastodon/mastodon#27253)) - Fix importer returning negative row estimates ([jgillich](mastodon/mastodon#27258)) - Fix incorrectly keeping outdated update notices absent from the API endpoint ([ClearlyClaire](mastodon/mastodon#27021)) - Fix import progress not updating on certain failures ([ClearlyClaire](mastodon/mastodon#27247)) - Fix websocket connections being incorrectly decremented twice on errors ([ThisIsMissEm](mastodon/mastodon#27238)) - Fix explore prompt appearing because of posts being received out of order ([ClearlyClaire](mastodon/mastodon#27211)) - Fix explore prompt sometimes showing up when the home TL is loading ([ClearlyClaire](mastodon/mastodon#27062)) - Fix link handling of mentions in user profiles when logged out ([ClearlyClaire](mastodon/mastodon#27185)) - Fix filtering audit log for entries about disabling 2FA ([ClearlyClaire](mastodon/mastodon#27186)) - Fix notification toasts not respecting reduce-motion ([c960657](mastodon/mastodon#27178)) - Fix retention dashboard not displaying correct month ([vmstan](mastodon/mastodon#27180)) - Fix tIME chunk not being properly removed from PNG uploads ([TheEssem](mastodon/mastodon#27111)) - Fix division by zero in video in bitrate computation code ([ClearlyClaire](mastodon/mastodon#27129)) - Fix inefficient queries in “Follows and followers” as well as several admin pages ([ClearlyClaire](mastodon/mastodon#27116), [ClearlyClaire](mastodon/mastodon#27306)) - Fix ActiveRecord using two connection pools when no replica is defined ([ClearlyClaire](mastodon/mastodon#27061)) - Fix the search documentation URL in system checks ([renchap](mastodon/mastodon#27036)) ##### Upgrade notes To get the code for v4.2.1, use `git fetch && git checkout v4.2.1`. > As always, **make sure you have backups of the database before performing any upgrades**. If you are using docker-compose, this is how a backup command might look: `docker exec mastodon_db_1 pg_dump -Fc -U postgres postgres > name_of_the_backup.dump` ##### Dependencies External dependencies have not changed since v4.2.0, the compatible Ruby, PostgreSQL, Node, Elasticsearch and Redis versions are the same, that is: - Ruby: 3.0 to 3.2 - PostgreSQL: 10 or newer - Elasticsearch (recommended, for full-text search): 7.x (OpenSearch should also work) - LibreTranslate (optional, for translations): 1.3.3 or newer - Redis: 4 or newer - Node: 16 or newer - ImageMagick: 6.9.7-7 or newer > If your uploaded images are broken after the upgrade, it means your installed ImageMagick version is older than the new minimum version (6.9.7-7), for example if you are running Ubuntu 18.04. If this happens, you can find more information and ways to fix it [on this page](mastodon/mastodon#25776). ##### Update steps The following instructions are for updating from 4.2.0. If you are upgrading directly from an earlier release, please carefully read the upgrade notes for the skipped releases as well, as they often require extra steps such as database migrations. **Non-Docker only:** 1. Install dependencies: `bundle install` and `yarn install --frozen-lockfile` 2. Precompile the assets: `RAILS_ENV=production bundle exec rails assets:precompile` 3. Restart all Mastodon processes **Using Docker:** 1. Restart all Mastodon processes </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about these updates again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy44LjAiLCJ1cGRhdGVkSW5WZXIiOiIzNy44LjAiLCJ0YXJnZXRCcmFuY2giOiJtYWluIn0=--> Reviewed-on: https://git.home/nrdufour/home-ops/pulls/139 Co-authored-by: Renovate <renovate@ptinem.io> Co-committed-by: Renovate <renovate@ptinem.io>
- Loading branch information