[READ-ONLY] Mirror of https://github.com/colibri-social/appview. The AppView (backend server) for Colibri api.colibri.social
2

Configure Feed

Select the types of activity you want to include in your feed.

chore: release v0.1.2 (#22)

Co-authored-by: Louis Escher <66965600+louisescher@users.noreply.github.com>

authored by

colibri-release-bot[bot]
Louis Escher
and committed by
GitHub
(Jul 15, 2026, 2:10 PM +0200) b85b67c5 b57b0c53

+24 -2
+22
CHANGELOG.md
··· 7 7 8 8 ## [Unreleased] 9 9 10 + ## [0.1.2](https://github.com/colibri-social/appview/compare/v0.1.1...v0.1.2) - 2026-07-15 11 + 12 + ### Added 13 + 14 + - Better indexing for record data table ([#35](https://github.com/colibri-social/appview/pull/35)) 15 + 16 + ### Fixed 17 + 18 + - Thread channel scope through permission checks for mod stuff ([#34](https://github.com/colibri-social/appview/pull/34)) 19 + - Batch and cap listUnreadStatus queries, require membership ([#33](https://github.com/colibri-social/appview/pull/33)) 20 + - harden service auth checks ([#32](https://github.com/colibri-social/appview/pull/32)) 21 + - harden getImage endpoint ([#30](https://github.com/colibri-social/appview/pull/30)) 22 + - Make ?all=true param for listMessages endpoint mod only ([#31](https://github.com/colibri-social/appview/pull/31)) 23 + - Require member.ban permission to list banned members ([#29](https://github.com/colibri-social/appview/pull/29)) 24 + - Add pagination to remaining endpoints ([#28](https://github.com/colibri-social/appview/pull/28)) 25 + - Harden web-push implementation ([#27](https://github.com/colibri-social/appview/pull/27)) 26 + - Properly guard GET requests ([#26](https://github.com/colibri-social/appview/pull/26)) 27 + - enforce role hierarchy on endpoints ([#25](https://github.com/colibri-social/appview/pull/25)) 28 + - stop leaking mod-only events to all community clients ([#24](https://github.com/colibri-social/appview/pull/24)) 29 + - Stop disconnecting sockets on lag ([#23](https://github.com/colibri-social/appview/pull/23)) 30 + - Remove webhook call ([#21](https://github.com/colibri-social/appview/pull/21)) 31 + 10 32 ## [0.1.1](https://github.com/colibri-social/appview/compare/v0.1.0...v0.1.1) - 2026-07-13 11 33 12 34 ### Fixed
+1 -1
Cargo.lock
··· 1130 1130 1131 1131 [[package]] 1132 1132 name = "colibri-appview" 1133 - version = "0.1.1" 1133 + version = "0.1.2" 1134 1134 dependencies = [ 1135 1135 "aes-gcm", 1136 1136 "async-stream",
+1 -1
Cargo.toml
··· 3 3 4 4 [package] 5 5 name = "colibri-appview" 6 - version = "0.1.1" 6 + version = "0.1.2" 7 7 edition = "2024" 8 8 9 9 [profile.release]