Skip to content

Commit 8e6319a

Browse files
committed
Merge tag '0.5.2'
Hollo 0.5.2
2 parents f85cc3a + a3a85d9 commit 8e6319a

File tree

8 files changed

+2917
-27
lines changed

8 files changed

+2917
-27
lines changed

CHANGES.md

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,23 @@ To be released.
1010
[[#99], [#110] by Okuto Oyama]
1111

1212

13+
Version 0.5.2
14+
-------------
15+
16+
Released on February 20, 2025.
17+
18+
- Fixed a bug where the `follows.follower_id` column had not referenced the
19+
`accounts.id` column. [[#112]]
20+
21+
- Fixed a bug where `GET /api/v1/notifications` had returned server errors
22+
with some filters. [[#113]]
23+
24+
- Fixed a bug where the federation dashboard had not shown due to server
25+
errors when an instance had just been set up.
26+
27+
- Upgrade Fedify to 1.4.2.
28+
29+
1330
Version 0.5.1
1431
-------------
1532

@@ -74,6 +91,26 @@ Released on February 12, 2025.
7491
[`GET /api/v1/blocks`]: https://docs.joinmastodon.org/methods/blocks/#get
7592

7693

94+
Version 0.4.8
95+
-------------
96+
97+
Released on February 20, 2025.
98+
99+
- Fixed a bug where the `follows.follower_id` column had not referenced the
100+
`accounts.id` column. [[#112]]
101+
102+
- Fixed a bug where `GET /api/v1/notifications` had returned server errors
103+
with some filters. [[#113]]
104+
105+
- Fixed a bug where the federation dashboard had not shown due to server
106+
errors when an instance had just been set up.
107+
108+
- Upgrade Fedify to 1.3.9.
109+
110+
[#112]: https://github.com/fedify-dev/hollo/issues/112
111+
[#113]: https://github.com/fedify-dev/hollo/issues/113
112+
113+
77114
Version 0.4.7
78115
-------------
79116

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)