Skip to content

Commit 5478ef9

Browse files
Bump version to v4.4.3 (#35686)
1 parent e259241 commit 5478ef9

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.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+
527
## [4.4.2] - 2025-07-23
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.2
62+
image: ghcr.io/mastodon/mastodon:v4.4.3
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.2
86+
image: ghcr.io/mastodon/mastodon-streaming:v4.4.3
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.2
105+
image: ghcr.io/mastodon/mastodon:v4.4.3
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-
2
16+
3
1717
end
1818

1919
def default_prerelease

0 commit comments

Comments
 (0)