Skip to content

Commit cbb1085

Browse files
Bump version to v4.4.12 (mastodon#37547)
1 parent 3920feb commit cbb1085

File tree

3 files changed

+26
-4
lines changed

3 files changed

+26
-4
lines changed

CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,28 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## [4.4.12] - 2026-01-20
6+
7+
### Security
8+
9+
- Fix missing limits on various federated properties [GHSA-gg8q-rcg7-p79g](https://github.com/mastodon/mastodon/security/advisories/GHSA-gg8q-rcg7-p79g)
10+
- Fix remote user suspension bypass [GHSA-5h2f-wg8j-xqwp](https://github.com/mastodon/mastodon/security/advisories/GHSA-5h2f-wg8j-xqwp)
11+
- Fix missing length limits on some user-provided fields [GHSA-6x3w-9g92-gvf3](https://github.com/mastodon/mastodon/security/advisories/GHSA-6x3w-9g92-gvf3)
12+
- Fix missing access check for push notification settings update [GHSA-f3q8-7vw3-69v4](https://github.com/mastodon/mastodon/security/advisories/GHSA-f3q8-7vw3-69v4)
13+
14+
### Changed
15+
16+
- Skip tombstone creation on deleting from 404 (#37533 by @ClearlyClaire)
17+
18+
### Fixed
19+
20+
- Fix potential duplicate handling of quote accept/reject/delete (#37537 by @ClearlyClaire)
21+
- Fix `FeedManager#filter_from_home` error when handling a reblog of a deleted status (#37486 by @ClearlyClaire)
22+
- Fix needlessly complicated SQL query in status batch removal (#37469 by @ClearlyClaire)
23+
- Fix `Vary` parsing in cache control enforcement (#37426 by @MegaManSec)
24+
- Fix thread-unsafe ActivityPub activity dispatch (#37423 by @MegaManSec)
25+
- Fix SignatureParser accepting duplicate parameters in HTTP Signature header (#37375 by @shleeable)
26+
527
## [4.4.11] - 2026-01-07
628

729
### Security

docker-compose.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ services:
5959
web:
6060
# You can uncomment the following line if you want to not use the prebuilt image, for example if you have local code changes
6161
# build: .
62-
image: ghcr.io/mastodon/mastodon:v4.4.11
62+
image: ghcr.io/mastodon/mastodon:v4.4.12
6363
restart: always
6464
env_file: .env.production
6565
command: bundle exec puma -C config/puma.rb
@@ -83,7 +83,7 @@ services:
8383
# build:
8484
# dockerfile: ./streaming/Dockerfile
8585
# context: .
86-
image: ghcr.io/mastodon/mastodon-streaming:v4.4.11
86+
image: ghcr.io/mastodon/mastodon-streaming:v4.4.12
8787
restart: always
8888
env_file: .env.production
8989
command: node ./streaming/index.js
@@ -102,7 +102,7 @@ services:
102102
sidekiq:
103103
# You can uncomment the following line if you want to not use the prebuilt image, for example if you have local code changes
104104
# build: .
105-
image: ghcr.io/mastodon/mastodon:v4.4.11
105+
image: ghcr.io/mastodon/mastodon:v4.4.12
106106
restart: always
107107
env_file: .env.production
108108
command: bundle exec sidekiq

lib/mastodon/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ def minor
1313
end
1414

1515
def patch
16-
11
16+
12
1717
end
1818

1919
def default_prerelease

0 commit comments

Comments
 (0)