summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorClaire <claire.github-309c@sitedethib.com>2022-11-14 22:26:24 +0100
committerClaire <claire.github-309c@sitedethib.com>2022-11-14 22:26:24 +0100
commit696f7b360882e71ff45b6ddafc8eea17184a0f31 (patch)
tree16385e70bc158f2950c6f9d5ade0577d0b20e552
parentb22e1476ca667e1ab83ab26a93203c3f253540af (diff)
Bump version to 3.5.5v3.5.5
-rw-r--r--CHANGELOG.md5
-rw-r--r--chart/values.yaml2
-rw-r--r--docker-compose.yml6
-rw-r--r--lib/mastodon/version.rb2
4 files changed, 10 insertions, 5 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index b241d5926f4..129519519bc 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -3,6 +3,11 @@ Changelog
All notable changes to this project will be documented in this file.
+## [3.4.5] - 2022-11-14
+## Fixed
+
+- Fix nodes order being sometimes mangled when rewriting emoji ([ClearlyClaire](https://github.com/mastodon/mastodon/pull/20677))
+
## [3.5.4] - 2022-11-14
### Fixed
diff --git a/chart/values.yaml b/chart/values.yaml
index b27add690b9..b3db84963fb 100644
--- a/chart/values.yaml
+++ b/chart/values.yaml
@@ -8,7 +8,7 @@ image:
# built from the most recent commit
#
# tag: latest
- tag: v3.5.4
+ tag: v3.5.5
# use `Always` when using `latest` tag
pullPolicy: IfNotPresent
diff --git a/docker-compose.yml b/docker-compose.yml
index 5c2c0c5dfe9..bb74d0cb26c 100644
--- a/docker-compose.yml
+++ b/docker-compose.yml
@@ -44,7 +44,7 @@ services:
web:
build: .
- image: tootsuite/mastodon
+ image: tootsuite/mastodon:v3.5.5
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: tootsuite/mastodon
+ image: tootsuite/mastodon:v3.5.5
restart: always
env_file: .env.production
command: node ./streaming
@@ -83,7 +83,7 @@ services:
sidekiq:
build: .
- image: tootsuite/mastodon
+ image: tootsuite/mastodon:v3.5.5
restart: always
env_file: .env.production
command: bundle exec sidekiq
diff --git a/lib/mastodon/version.rb b/lib/mastodon/version.rb
index c7c1d8e38ed..24303323bee 100644
--- a/lib/mastodon/version.rb
+++ b/lib/mastodon/version.rb
@@ -13,7 +13,7 @@ module Mastodon
end
def patch
- 4
+ 5
end
def flags