Skip to content

Commit f8df65f

Browse files
ClearlyClairemayaeh
authored andcommitted
Bump version to v4.4.0-alpha.3 (mastodon#34022)
1 parent b9a7ee1 commit f8df65f

3 files changed

Lines changed: 39 additions & 4 deletions

File tree

CHANGELOG.md

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

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

5+
## [4.3.4] - 2025-02-27
6+
7+
### Security
8+
9+
- Update dependencies
10+
- Change HTML sanitization to remove unusable and unused `embed` tag (#34021 by @ClearlyClaire, [GHSA-mq2m-hr29-8gqf](https://github.com/mastodon/mastodon/security/advisories/GHSA-mq2m-hr29-8gqf))
11+
- Fix rate-limit on sign-up email verification ([GHSA-v39f-c9jj-8w7h](https://github.com/mastodon/mastodon/security/advisories/GHSA-v39f-c9jj-8w7h))
12+
- Fix improper disclosure of domain blocks to unverified users ([GHSA-94h4-fj37-c825](https://github.com/mastodon/mastodon/security/advisories/GHSA-94h4-fj37-c825))
13+
14+
### Changed
15+
16+
- Change preview cards to be shown when Content Warnings are expanded (#33827 by @ClearlyClaire)
17+
- Change warnings against changing encryption secrets to be even more noticeable (#33631 by @ClearlyClaire)
18+
- Change `mastodon:setup` to prevent overwriting already-configured servers (#33603, #33616, and #33684 by @ClearlyClaire and @mjankowski)
19+
- Change notifications from moderators to not be filtered (#32974 and #33654 by @ClearlyClaire and @mjankowski)
20+
21+
### Fixed
22+
23+
- Fix `GET /api/v2/notifications/:id` and `POST /api/v2/notifications/:id/dismiss` for ungrouped notifications (#33990 by @ClearlyClaire)
24+
- Fix issue with some versions of libvips on some systems (#33853 by @kleisauke)
25+
- Fix handling of duplicate mentions in incoming status `Update` (#33911 by @ClearlyClaire)
26+
- Fix inefficiencies in timeline generation (#33839 and #33842 by @ClearlyClaire)
27+
- Fix emoji rewrite adding unnecessary curft to the DOM for most emoji (#33818 by @ClearlyClaire)
28+
- Fix `tootctl feeds build` not building list timelines (#33783 by @ClearlyClaire)
29+
- Fix flaky test in `/api/v2/notifications` tests (#33773 by @ClearlyClaire)
30+
- Fix incorrect signature after HTTP redirect (#33757 and #33769 by @ClearlyClaire)
31+
- Fix polls not being validated on edition (#33755 by @ClearlyClaire)
32+
- Fix media preview height in compose form when 3 or more images are attached (#33571 by @ClearlyClaire)
33+
- Fix preview card sizing in “Author attribution” in profile settings (#33482 by @ClearlyClaire)
34+
- Fix processing of incoming notifications for unfilterable types (#33429 by @ClearlyClaire)
35+
- Fix featured tags for remote accounts not being kept up to date (#33372, #33406, and #33425 by @ClearlyClaire and @mjankowski)
36+
- Fix notification polling showing a loading bar in web UI (#32960 by @Gargron)
37+
- Fix accounts table long display name (#29316 by @WebCoder49)
38+
- Fix exclusive lists interfering with notifications (#28162 by @ShadowJonathan)
39+
540
## [4.3.3] - 2025-01-16
641

742
### 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.3.3
62+
image: ghcr.io/mastodon/mastodon:v4.3.4
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.3.3
86+
image: ghcr.io/mastodon/mastodon-streaming:v4.3.4
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.3.3
105+
image: ghcr.io/mastodon/mastodon:v4.3.4
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
@@ -17,7 +17,7 @@ def patch
1717
end
1818

1919
def default_prerelease
20-
'alpha.2'
20+
'alpha.3'
2121
end
2222

2323
def prerelease

0 commit comments

Comments
 (0)