Skip to content

Commit 3347afd

Browse files
committed
Merge tag '0.4.8' into 0.5-maintenance
Hollo 0.4.8
2 parents 24a71b5 + cd8392a commit 3347afd

File tree

8 files changed

+2911
-27
lines changed

8 files changed

+2911
-27
lines changed

CHANGES.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,17 @@ Version 0.5.2
66

77
To be released.
88

9+
- Fixed a bug where the `follows.follower_id` column had not referenced the
10+
`accounts.id` column. [[#112]]
11+
12+
- Fixed a bug where `GET /api/v1/notifications` had returned server errors
13+
with some filters. [[#113]]
14+
15+
- Fixed a bug where the federation dashboard had not shown due to server
16+
errors when an instance had just been set up.
17+
18+
- Upgrade Fedify to 1.4.2.
19+
920

1021
Version 0.5.1
1122
-------------
@@ -71,6 +82,26 @@ Released on February 12, 2025.
7182
[`GET /api/v1/blocks`]: https://docs.joinmastodon.org/methods/blocks/#get
7283

7384

85+
Version 0.4.8
86+
-------------
87+
88+
Released on February 20, 2025.
89+
90+
- Fixed a bug where the `follows.follower_id` column had not referenced the
91+
`accounts.id` column. [[#112]]
92+
93+
- Fixed a bug where `GET /api/v1/notifications` had returned server errors
94+
with some filters. [[#113]]
95+
96+
- Fixed a bug where the federation dashboard had not shown due to server
97+
errors when an instance had just been set up.
98+
99+
- Upgrade Fedify to 1.3.9.
100+
101+
[#112]: https://github.com/fedify-dev/hollo/issues/112
102+
[#113]: https://github.com/fedify-dev/hollo/issues/113
103+
104+
74105
Version 0.4.7
75106
-------------
76107

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
ALTER TABLE "follows" DROP CONSTRAINT "follows_follower_id_accounts_id_fk";
2+
--> statement-breakpoint
3+
DELETE FROM "follows" WHERE "follower_id" NOT IN (SELECT "id" FROM "accounts");
4+
--> statement-breakpoint
5+
ALTER TABLE "follows" ADD CONSTRAINT "follows_follower_id_accounts_id_fk" FOREIGN KEY ("follower_id") REFERENCES "public"."accounts"("id") ON DELETE cascade ON UPDATE no action;

0 commit comments

Comments
 (0)