Bump version to v3.5.7
This commit is contained in:
parent
f90daf58db
commit
547634dfa6
3 changed files with 10 additions and 5 deletions
|
@ -3,7 +3,7 @@ Changelog
|
|||
|
||||
All notable changes to this project will be documented in this file.
|
||||
|
||||
# [3.5.7] - UNRELEASED
|
||||
# [3.5.7] - 2023-03-16
|
||||
|
||||
### Added
|
||||
|
||||
|
@ -27,6 +27,11 @@ All notable changes to this project will be documented in this file.
|
|||
- Fix incorrect post links in strikes when the account is remote ([ClearlyClaire](https://github.com/mastodon/mastodon/pull/23611))
|
||||
- Fix misleading error code when receiving invalid WebAuthn credentials ([ClearlyClaire](https://github.com/mastodon/mastodon/pull/23568))
|
||||
|
||||
### Security
|
||||
|
||||
- Change user backups to use expiring URLs for download when possible ([Gargron](https://github.com/mastodon/mastodon/pull/24136))
|
||||
- Add warning for object storage misconfiguration ([ClearlyClaire](https://github.com/mastodon/mastodon/pull/24137))
|
||||
|
||||
## [3.5.6] - 2023-02-09
|
||||
### Fixed
|
||||
|
||||
|
|
|
@ -44,7 +44,7 @@ services:
|
|||
|
||||
web:
|
||||
build: .
|
||||
image: ghcr.io/mastodon/mastodon:v3.5.5
|
||||
image: ghcr.io/mastodon/mastodon:v3.5.7
|
||||
restart: always
|
||||
env_file: .env.production
|
||||
command: bash -c "rm -f /mastodon/tmp/pids/server.pid; bundle exec rails s -p 3000"
|
||||
|
@ -65,7 +65,7 @@ services:
|
|||
|
||||
streaming:
|
||||
build: .
|
||||
image: ghcr.io/mastodon/mastodon:v3.5.5
|
||||
image: ghcr.io/mastodon/mastodon:v3.5.7
|
||||
restart: always
|
||||
env_file: .env.production
|
||||
command: node ./streaming
|
||||
|
@ -83,7 +83,7 @@ services:
|
|||
|
||||
sidekiq:
|
||||
build: .
|
||||
image: ghcr.io/mastodon/mastodon:v3.5.5
|
||||
image: ghcr.io/mastodon/mastodon:v3.5.7
|
||||
restart: always
|
||||
env_file: .env.production
|
||||
command: bundle exec sidekiq
|
||||
|
|
|
@ -13,7 +13,7 @@ module Mastodon
|
|||
end
|
||||
|
||||
def patch
|
||||
6
|
||||
7
|
||||
end
|
||||
|
||||
def flags
|
||||
|
|
Loading…
Reference in a new issue