File tree Expand file tree Collapse file tree 3 files changed +26
-4
lines changed Expand file tree Collapse file tree 3 files changed +26
-4
lines changed Original file line number Diff line number Diff line change 2
2
3
3
All notable changes to this project will be documented in this file.
4
4
5
+ ## [ 4.4.3] - 2025-08-05
6
+
7
+ ### Security
8
+
9
+ - Update dependencies
10
+ - Fix incorrect rate-limit handling [ GHSA-84ch -6436-c7mg] ( https://github.com/mastodon/mastodon/security/advisories/GHSA-84ch-6436-c7mg )
11
+
12
+ ### Fixed
13
+
14
+ - Fix race condition caused by ActiveRecord query cache in ` Create ` critical path (#35662 by @ClearlyClaire )
15
+ - Fix race condition caused by quote post processing (#35657 by @ClearlyClaire )
16
+ - Fix WebUI crashing for accounts with ` null ` URL (#35651 by @ClearlyClaire )
17
+ - Fix friends-of-friends recommendations suggesting already-requested accounts (#35604 by @ClearlyClaire )
18
+ - Fix synchronous recursive fetching of deeply-nested quoted posts (#35600 by @ClearlyClaire )
19
+ - Fix “Expand this post” link including user ` @undefined ` (#35478 by @ClearlyClaire )
20
+
21
+ ### Changed
22
+
23
+ - Change ` StatusReachFinder ` to consider quotes as well as reblogs (#35601 by @ClearlyClaire )
24
+ - Add restrictions on which quote posts can trend (#35507 by @ClearlyClaire )
25
+ - Change quote verification to not bypass authorization flow for mentions (#35528 by @ClearlyClaire )
26
+
5
27
## [ 4.4.2] - 2025-07-23
6
28
7
29
### Security
Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ services:
59
59
web :
60
60
# You can uncomment the following line if you want to not use the prebuilt image, for example if you have local code changes
61
61
# build: .
62
- image : ghcr.io/mastodon/mastodon:v4.4.2
62
+ image : ghcr.io/mastodon/mastodon:v4.4.3
63
63
restart : always
64
64
env_file : .env.production
65
65
command : bundle exec puma -C config/puma.rb
@@ -83,7 +83,7 @@ services:
83
83
# build:
84
84
# dockerfile: ./streaming/Dockerfile
85
85
# context: .
86
- image : ghcr.io/mastodon/mastodon-streaming:v4.4.2
86
+ image : ghcr.io/mastodon/mastodon-streaming:v4.4.3
87
87
restart : always
88
88
env_file : .env.production
89
89
command : node ./streaming/index.js
@@ -102,7 +102,7 @@ services:
102
102
sidekiq :
103
103
# You can uncomment the following line if you want to not use the prebuilt image, for example if you have local code changes
104
104
# build: .
105
- image : ghcr.io/mastodon/mastodon:v4.4.2
105
+ image : ghcr.io/mastodon/mastodon:v4.4.3
106
106
restart : always
107
107
env_file : .env.production
108
108
command : bundle exec sidekiq
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ def minor
13
13
end
14
14
15
15
def patch
16
- 2
16
+ 3
17
17
end
18
18
19
19
def default_prerelease
You can’t perform that action at this time.
0 commit comments