Skip to content

Commit fd49337

Browse files
Merge pull request #3418 from ClearlyClaire/glitch-soc/merge-4.5
Merge upstream changes up to ab872f2 into stable-4.5
2 parents 4f6a53c + d609819 commit fd49337

File tree

4 files changed

+26
-5
lines changed

4 files changed

+26
-5
lines changed

CHANGELOG.md

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

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

5+
## [4.5.7] - 2026-02-24
6+
7+
### Security
8+
9+
- Reject unconfirmed FASPs (#37926 by @oneiros, [GHSA-qgmm-vr4c-ggjg](https://github.com/mastodon/mastodon/security/advisories/GHSA-qgmm-vr4c-ggjg))
10+
- Re-use custom socket class for FASP requests (#37925 by @oneiros, [GHSA-46w6-g98f-wxqm](https://github.com/mastodon/mastodon/security/advisories/GHSA-46w6-g98f-wxqm))
11+
12+
### Added
13+
14+
- Add `--suspended-only` option to `tootctl emoji purge` (#37828 and #37861 by @ClearlyClaire and @mjankowski)
15+
16+
### Fixed
17+
18+
- Fix emoji data not being properly cached (#37858 by @ChaosExAnima)
19+
- Fix delete & redraft of pending posts (#37839 by @ClearlyClaire)
20+
- Fix processing separate key documents without the ActivityStreams context (#37826 by @ClearlyClaire)
21+
- Fix custom emojis not being purged on domain suspension (#37808 by @ClearlyClaire)
22+
- Fix users without special permissions being able to stream disabled timelines (#37791 by @ClearlyClaire)
23+
- Fix processing of object updates with duplicate hashtags (#37756 by @ClearlyClaire)
24+
525
## [4.5.6] - 2026-02-03
626

727
### 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/glitch-soc/mastodon:v4.5.6
62+
image: ghcr.io/glitch-soc/mastodon:v4.5.7
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/glitch-soc/mastodon-streaming:v4.5.6
86+
image: ghcr.io/glitch-soc/mastodon-streaming:v4.5.7
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/glitch-soc/mastodon:v4.5.6
105+
image: ghcr.io/glitch-soc/mastodon:v4.5.7
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-
6
16+
7
1717
end
1818

1919
def default_prerelease

spec/lib/mastodon/cli/emoji_spec.rb

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,8 @@
4646

4747
it 'reports a successful purge' do
4848
expect { subject }
49-
.to change { CustomEmoji.by_domain_and_subdomains(blocked_domain).count }.to(0)
49+
.to output_results('OK')
50+
.and change { CustomEmoji.by_domain_and_subdomains(blocked_domain).count }.to(0)
5051
.and change { CustomEmoji.by_domain_and_subdomains('evil.org').count }.to(0)
5152
.and not_change { CustomEmoji.by_domain_and_subdomains(silenced_domain).count }
5253
.and(not_change { CustomEmoji.local.count })

0 commit comments

Comments
 (0)