summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorClaire <claire.github-309c@sitedethib.com>2022-02-02 11:49:22 +0100
committerClaire <claire.github-309c@sitedethib.com>2022-02-02 23:48:20 +0100
commit637c7d464b2876765370d1143b7ba6441efb730b (patch)
tree554ba5200d2dd2551b8631b10f102b46090371ca
parentaeccbb2a1468dd69317f411c3d7d371e8a60c28a (diff)
Bump version to 3.3.2v3.3.2
-rw-r--r--.github/workflows/build-image.yml2
-rw-r--r--CHANGELOG.md12
-rw-r--r--chart/values.yaml.template2
-rw-r--r--docker-compose.yml6
-rw-r--r--lib/mastodon/version.rb2
5 files changed, 18 insertions, 6 deletions
diff --git a/.github/workflows/build-image.yml b/.github/workflows/build-image.yml
index 58f2813d31b..81db8b712aa 100644
--- a/.github/workflows/build-image.yml
+++ b/.github/workflows/build-image.yml
@@ -21,7 +21,7 @@ jobs:
with:
images: tootsuite/mastodon
flavor: |
- latest=auto
+ latest=false
tags: |
type=edge,branch=main
type=semver,pattern={{ raw }}
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 658447ba84f..b77b9446c16 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -3,6 +3,18 @@ Changelog
All notable changes to this project will be documented in this file.
+## [3.3.2] - 2022-02-03
+### Fixed
+- Fix `mastodon:webpush:generate_vapid_key` task requiring a functional environment ([ClearlyClaire](https://github.com/mastodon/mastodon/pull/17338))
+- Fix spurious errors when receiving an Add activity for a private post ([ClearlyClaire](https://github.com/mastodon/mastodon/pull/17425))
+
+### Security
+- Fix error-prone SQL queries ([ClearlyClaire](https://github.com/mastodon/mastodon/pull/15828))
+- Fix not compacting incoming signed JSON-LD activities ([puckipedia](https://github.com/mastodon/mastodon/pull/17426), [ClearlyClaire](https://github.com/mastodon/mastodon/pull/17428)) (CVE-2022-24307)
+- Fix insufficient sanitization of report comments ([ClearlyClaire](https://github.com/mastodon/mastodon/pull/17430))
+- Fix stop condition of a Common Table Expression ([ClearlyClaire](https://github.com/mastodon/mastodon/pull/17427))
+- Disable legacy XSS filtering ([Wonderfall](https://github.com/mastodon/mastodon/pull/17289))
+
## [3.3.1] - 2022-01-31
### Added
- Add more advanced migration tests ([ClearlyClaire](https://github.com/mastodon/mastodon/pull/17393))
diff --git a/chart/values.yaml.template b/chart/values.yaml.template
index 9e50c6daca0..dd9ef1f3e40 100644
--- a/chart/values.yaml.template
+++ b/chart/values.yaml.template
@@ -4,7 +4,7 @@ image:
repository: tootsuite/mastodon
pullPolicy: Always
# https://hub.docker.com/r/tootsuite/mastodon/tags
- tag: v3.3.0
+ tag: v3.3.2
# alternatively, use `latest` for the latest release or `edge` for the image
# built from the most recent commit
#
diff --git a/docker-compose.yml b/docker-compose.yml
index a92b40c2276..55b12bf397d 100644
--- a/docker-compose.yml
+++ b/docker-compose.yml
@@ -43,7 +43,7 @@ services:
web:
build: .
- image: tootsuite/mastodon:v3.3.1
+ image: tootsuite/mastodon:v3.3.2
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.3.1
+ image: tootsuite/mastodon:v3.3.2
restart: always
env_file: .env.production
command: node ./streaming
@@ -80,7 +80,7 @@ services:
sidekiq:
build: .
- image: tootsuite/mastodon:v3.3.1
+ image: tootsuite/mastodon:v3.3.2
restart: always
env_file: .env.production
command: bundle exec sidekiq
diff --git a/lib/mastodon/version.rb b/lib/mastodon/version.rb
index 1e298b80717..5e4f09959bd 100644
--- a/lib/mastodon/version.rb
+++ b/lib/mastodon/version.rb
@@ -13,7 +13,7 @@ module Mastodon
end
def patch
- 1
+ 2
end
def flags