summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorClaire <claire.github-309c@sitedethib.com>2023-03-27 17:50:34 +0200
committerClaire <claire.github-309c@sitedethib.com>2023-04-04 12:38:58 +0200
commit1bd831b9a9d288566ca38045f6410c771946634b (patch)
treeb254a13b194eecda79e55ec6bbe97a3f673fe15d
parent55144262d054a52b76baa9d077e235e5c61fac37 (diff)
Bump version to v3.5.8v3.5.8
-rw-r--r--CHANGELOG.md14
-rw-r--r--docker-compose.yml6
-rw-r--r--lib/mastodon/version.rb2
3 files changed, 18 insertions, 4 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 3346e7b3164..4aa69f07fdc 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -3,6 +3,20 @@ Changelog
All notable changes to this project will be documented in this file.
+## [3.5.8] - 2023-04-04
+
+### Fixed
+
+- Fix crash in `tootctl` commands making use of parallelization when Elasticsearch is enabled ([ClearlyClaire](https://github.com/mastodon/mastodon/pull/24182), [ClearlyClaire](https://github.com/mastodon/mastodon/pull/24377))
+- Fix crash in `db:setup` when Elasticsearch is enabled ([rrgeorge](https://github.com/mastodon/mastodon/pull/24302))
+- Fix user archive takeout when using OpenStack Swift or S3 providers with no ACL support ([ClearlyClaire](https://github.com/mastodon/mastodon/pull/24200))
+- Fix invalid/expired invites being processed on sign-up ([ClearlyClaire](https://github.com/mastodon/mastodon/pull/24337))
+
+### Security
+
+- Update Ruby to 3.0.6 due to ReDoS vulnerabilities ([saizai](https://github.com/mastodon/mastodon/pull/24332))
+- Fix unescaped user input in LDAP query ([ClearlyClaire](https://github.com/mastodon/mastodon/pull/24379))
+
# [3.5.7] - 2023-03-16
### Added
diff --git a/docker-compose.yml b/docker-compose.yml
index 165f26a68d9..a1f98be1e17 100644
--- a/docker-compose.yml
+++ b/docker-compose.yml
@@ -44,7 +44,7 @@ services:
web:
build: .
- image: ghcr.io/mastodon/mastodon:v3.5.7
+ image: ghcr.io/mastodon/mastodon:v3.5.8
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.7
+ image: ghcr.io/mastodon/mastodon:v3.5.8
restart: always
env_file: .env.production
command: node ./streaming
@@ -83,7 +83,7 @@ services:
sidekiq:
build: .
- image: ghcr.io/mastodon/mastodon:v3.5.7
+ image: ghcr.io/mastodon/mastodon:v3.5.8
restart: always
env_file: .env.production
command: bundle exec sidekiq
diff --git a/lib/mastodon/version.rb b/lib/mastodon/version.rb
index 26ad167cdc3..aea3088d7c1 100644
--- a/lib/mastodon/version.rb
+++ b/lib/mastodon/version.rb
@@ -13,7 +13,7 @@ module Mastodon
end
def patch
- 7
+ 8
end
def flags