summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorClaire <claire.github-309c@sitedethib.com>2022-11-14 11:16:33 +0100
committerClaire <claire.github-309c@sitedethib.com>2022-11-14 20:08:59 +0100
commitecd0cf1bc5f6596aa2633e797bedde611bacb6c6 (patch)
tree6e14508732b102680d615e0badcda0a9d24a0f26
parent0ce2b4d358e791cc1710ecb50764a18458652d77 (diff)
Bump version to 3.4.9v3.4.9
-rw-r--r--CHANGELOG.md9
-rw-r--r--chart/values.yaml2
-rw-r--r--docker-compose.yml6
-rw-r--r--lib/mastodon/version.rb2
4 files changed, 14 insertions, 5 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 85a1f905d6b..b7c1664b1ab 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -3,6 +3,15 @@ Changelog
All notable changes to this project will be documented in this file.
+## [3.4.9] - 2022-11-14
+
+### Security
+
+- Fix emoji substitution not applying only to text nodes in backend code ([ClearlyClaire](https://github.com/mastodon/mastodon/pull/20641))
+- Fix emoji substitution not applying only to text nodes in Web UI ([ClearlyClaire](https://github.com/mastodon/mastodon/pull/20640))
+- Fix rate limiting for paths with formats ([Gargron](https://github.com/mastodon/mastodon/pull/20675))
+- Fix out-of-bound reads in blurhash transcoder ([delroth](https://github.com/mastodon/mastodon/pull/20388))
+
## [3.4.8] - 2022-05-26
## Security
diff --git a/chart/values.yaml b/chart/values.yaml
index d3036bb4a20..40ba5a4e359 100644
--- a/chart/values.yaml
+++ b/chart/values.yaml
@@ -8,7 +8,7 @@ image:
# built from the most recent commit
#
# tag: latest
- tag: v3.4.6
+ tag: v3.4.9
# use `Always` when using `latest` tag
pullPolicy: IfNotPresent
diff --git a/docker-compose.yml b/docker-compose.yml
index 97b6f16552e..ed1014fbaa6 100644
--- a/docker-compose.yml
+++ b/docker-compose.yml
@@ -43,7 +43,7 @@ services:
web:
build: .
- image: tootsuite/mastodon:v3.4.6
+ image: tootsuite/mastodon:v3.4.9
restart: always
env_file: .env.production
command: bash -c "rm -f /mastodon/tmp/pids/server.pid; bundle exec rails s -p 3000"
@@ -63,7 +63,7 @@ services:
streaming:
build: .
- image: tootsuite/mastodon:v3.4.6
+ image: tootsuite/mastodon:v3.4.9
restart: always
env_file: .env.production
command: node ./streaming
@@ -80,7 +80,7 @@ services:
sidekiq:
build: .
- image: tootsuite/mastodon:v3.4.6
+ image: tootsuite/mastodon:v3.4.9
restart: always
env_file: .env.production
command: bundle exec sidekiq
diff --git a/lib/mastodon/version.rb b/lib/mastodon/version.rb
index 851ca745bd6..573373d27fa 100644
--- a/lib/mastodon/version.rb
+++ b/lib/mastodon/version.rb
@@ -13,7 +13,7 @@ module Mastodon
end
def patch
- 8
+ 9
end
def flags