]> Untitled Git - lemmy.git/blob - RELEASES.md
Updating releases.md
[lemmy.git] / RELEASES.md
1 # Lemmy v0.15.2 Release (2022-01-27)
2
3 A few bug fixes:
4
5 - Dont make webfinger request when viewing community/user profile (fixes [#1896](https://github.com/LemmyNet/lemmy/issues/1896)) ([#2049](https://github.com/LemmyNet/lemmy/issues/2049))
6 - Case-insensitive username at login ([#2010](https://github.com/LemmyNet/lemmy/issues/2010))
7 - Put community last in webfinger response (fixes [#2037](https://github.com/LemmyNet/lemmy/issues/2037)) ([#2047](https://github.com/LemmyNet/lemmy/issues/2047))
8 - Dont check for ban in MarkCommentAsRead (fixes [#2045](https://github.com/LemmyNet/lemmy/issues/2045)) ([#2054](https://github.com/LemmyNet/lemmy/issues/2054))
9 - Empty post bodies ([#2050](https://github.com/LemmyNet/lemmy/issues/2050))
10 - Add tombstone tests, better test errors ([#2046](https://github.com/LemmyNet/lemmy/issues/2046))
11 - Accept single object as to for arrays too ([#2048](https://github.com/LemmyNet/lemmy/issues/2048))
12 - Cleaning optional post bodies. Fixes [#2039](https://github.com/LemmyNet/lemmy/issues/2039) ([#2043](https://github.com/LemmyNet/lemmy/issues/2043))
13 - Fixing liking comment on blocked person. Fixes [#2033](https://github.com/LemmyNet/lemmy/issues/2033) ([#2042](https://github.com/LemmyNet/lemmy/issues/2042))
14 - Add tests for lotide federation, make lotide groups fetchable ([#2035](https://github.com/LemmyNet/lemmy/issues/2035))
15 - Remove unneeded dependency on activitystreams ([#2034](https://github.com/LemmyNet/lemmy/issues/2034))
16 - Fixing private instance check. Fixes [#2064](https://github.com/LemmyNet/lemmy/issues/2064) ([#2065](https://github.com/LemmyNet/lemmy/issues/2065))
17
18 # Lemmy v0.15.1 Release (2022-01-12)
19
20 Lemmy now has private instances, optional registration applications, optional email verification, and temporary bans! These are described in detail below.
21
22 Special thanks to @asonix for adding [tokio-console](https://github.com/LemmyNet/Lemmy/issues/2003) and [Jaeger + opentelemetry](https://github.com/LemmyNet/Lemmy/issues/1992) to our dev setups, so we can better identify performance bottlenecks.
23
24
25 ## What is Lemmy?
26
27 [Lemmy](https://join-lemmy.org/) is similar to sites like Reddit, Lobste.rs, or Hacker News: you subscribe to communities you're interested in, post links and discussions, then vote and comment on them. Lemmy isn't just a reddit alternative; its a network of interconnected communities ran by different people and organizations, all combining to create a single, personalized front page of your favorite news, articles, and memes.
28
29 ## Major Changes
30
31 ### Required email verification
32
33 Admins can turn this on, and new users will need to verify their emails. Current users will not have to do this.
34
35 ### Registration applications
36
37 Admins can now optionally make new users fill out an application to join your server. There is a new panel in their top bar where they can approve or deny pending applications.
38
39 This works in conjunction with the *require_email* field. If that is also turned on, the application will only be shown after their email has been verified. The user will receive an email when they have been accepted.
40
41 ### Closed / Private instances
42
43 The instance settings now includes a *private instance* option, which if turned on, will only let logged in users view your site. Private instances was one of our first issues, and it was a large effort, so its great to finally have this completed.
44
45 ### Temporary Bans
46
47 When banning users from your site or community, moderators can now optionally give a number of days for the ban to last.
48
49 ### Allow comment replies from blocked users
50
51 It used to be that if a user blocked you, you couldn't respond to their public posts and comments. This is now fixed. They won't see your content, but others can.
52
53 ## Upgrade notes
54
55 Follow the [Docker or Ansible upgrade instructions here.](https://join-lemmy.org/docs/en/administration/administration.html)
56
57 ## Support development
58
59 If you'd like to support development, and make sure that we will always be available to work full time on Lemmy, consider [donating to support its development](https://join-lemmy.org/donate). We've spent hundreds of hours on Lemmy, and would like to be able to add more developers to our little open-source co-op as time goes on.
60
61 ## Changes
62
63 ### API
64
65 We've removed a list of banned users from `GetSite`, added a few endpoints related to registration applications, made a few changes allowing temporary bans, site settings, made a few changes to the login response. These are non-destructive and current clients should work with this release. 
66
67 - A full list of the API changes can be seen on this diff of [lemmy-js-client: 0.14.0 -> 0.15.0](https://github.com/LemmyNet/lemmy-js-client/compare/0.14.0-rc.1...0.15.0-rc.34) .
68
69 ### Config
70
71 There is a new rate limit for creating new comments in the [config.hjson](https://github.com/LemmyNet/lemmy/blob/main/config/defaults.hjson#L36).
72
73 ### Lemmy Server
74
75 - Adding temporary bans. Fixes [#1423](https://github.com/LemmyNet/Lemmy/issues/1423) ([#1999](https://github.com/LemmyNet/Lemmy/issues/1999))
76 - Add console-subscriber ([#2003](https://github.com/LemmyNet/Lemmy/issues/2003))
77 - Opentelemetry ([#1992](https://github.com/LemmyNet/Lemmy/issues/1992))
78 - Use correct encoding when fetching non-UTF-8 site metadata ([#2015](https://github.com/LemmyNet/Lemmy/issues/2015))
79 - Adding a banned endpoint for admins. Removing it from GetSite. Fixes [#1806](https://github.com/LemmyNet/Lemmy/issues/1806)
80 - Prevent panic on InboxRequestGuard
81 - Case-insensitive webfinger response. Fixes [#1955](https://github.com/LemmyNet/Lemmy/issues/1955) & [#1986](https://github.com/LemmyNet/Lemmy/issues/1986) ([#2005](https://github.com/LemmyNet/Lemmy/issues/2005))
82 - First pass at invite-only migration. ([#1949](https://github.com/LemmyNet/Lemmy/issues/1949))
83 - Upgrading pictrs. ([#1996](https://github.com/LemmyNet/Lemmy/issues/1996))
84 - Trying out an upgraded version of html5ever. [#1964](https://github.com/LemmyNet/Lemmy/issues/1964) ([#1991](https://github.com/LemmyNet/Lemmy/issues/1991))
85 - Adding min setup password length to the docs. Fixes [#1989](https://github.com/LemmyNet/Lemmy/issues/1989) ([#1990](https://github.com/LemmyNet/Lemmy/issues/1990))
86 - Test pleroma follow ([#1988](https://github.com/LemmyNet/Lemmy/issues/1988))
87 - Remove awc ([#1979](https://github.com/LemmyNet/Lemmy/issues/1979))
88 - Consolidate reqwest clients, use reqwest-middleware for tracing
89 - Don't drop error context when adding a message to errors ([#1958](https://github.com/LemmyNet/Lemmy/issues/1958))
90 - Change lemmur repo links ([#1977](https://github.com/LemmyNet/Lemmy/issues/1977))
91 - added deps - git and ca-certificates (for federation to work) and changed adduser to useradd so that user can be added non-interactively ([#1976](https://github.com/LemmyNet/Lemmy/issues/1976))
92 - Allow comment replies from blocked users. Fixes [#1793](https://github.com/LemmyNet/Lemmy/issues/1793) ([#1969](https://github.com/LemmyNet/Lemmy/issues/1969))
93 - Fix retry infinite loops. Fixes [#1964](https://github.com/LemmyNet/Lemmy/issues/1964) ([#1967](https://github.com/LemmyNet/Lemmy/issues/1967))
94 - Add lotide activities to tests
95 - Allow single item for to, cc, and @context
96 - Adding a captcha rate limit. Fixes [#1755](https://github.com/LemmyNet/Lemmy/issues/1755) ([#1941](https://github.com/LemmyNet/Lemmy/issues/1941))
97 - Dont send email notifications for edited comments (fixes [#1925](https://github.com/LemmyNet/Lemmy/issues/1925))
98 - Fix API dupes query. [#1878](https://github.com/LemmyNet/Lemmy/issues/1878)
99 - Fixing duped report view for admins. Fixes [#1933](https://github.com/LemmyNet/Lemmy/issues/1933) ([#1945](https://github.com/LemmyNet/Lemmy/issues/1945))
100 - Adding a GetComment endpoint. Fixes [#1919](https://github.com/LemmyNet/Lemmy/issues/1919) ([#1944](https://github.com/LemmyNet/Lemmy/issues/1944))
101 - Fix min title char count for post titles. Fixes [#1854](https://github.com/LemmyNet/Lemmy/issues/1854) ([#1940](https://github.com/LemmyNet/Lemmy/issues/1940))
102 - Adding MarkPostAsRead to API. Fixes [#1784](https://github.com/LemmyNet/Lemmy/issues/1784) ([#1946](https://github.com/LemmyNet/Lemmy/issues/1946))
103 - background-jobs 0.11 ([#1943](https://github.com/LemmyNet/Lemmy/issues/1943))
104 - Add tracing ([#1942](https://github.com/LemmyNet/Lemmy/issues/1942))
105 - Remove pointless community follower sort. ([#1939](https://github.com/LemmyNet/Lemmy/issues/1939))
106 - Use once_cell instead of lazy_static
107 - Adding unique constraint for activity ap_id. Fixes [#1878](https://github.com/LemmyNet/Lemmy/issues/1878) ([#1935](https://github.com/LemmyNet/Lemmy/issues/1935))
108 - Making public key required. Fixes [#1934](https://github.com/LemmyNet/Lemmy/issues/1934)
109 - Change NodeInfo `links` to an array
110 - Fixing fuzzy_search to escape like chars.
111 - Fix build error in [#1914](https://github.com/LemmyNet/Lemmy/issues/1914)
112 - Fix login ilike bug. Fixes [#1920](https://github.com/LemmyNet/Lemmy/issues/1920)
113 - Fix Smithereen webfinger, remove duplicate webfinger impl (fixes [#1916](https://github.com/LemmyNet/Lemmy/issues/1916))
114 - Dont announce comments, edited posts to Pleroma/Mastodon followers
115 - Community outbox should only contain activities sent by community (fixes [#1916](https://github.com/LemmyNet/Lemmy/issues/1916))
116 - Remove HTTP signature compatibility mode (its not necessary)
117 - Implement rate limits on comments
118
119 ### Lemmy UI
120
121 - Fixed an issue with post embeds not being pushed to a new line [#544](https://github.com/LemmyNet/lemmy-ui/issues/544)
122 - Adding as and lt languages, Updating translations.
123 - Temp bans ([#524](https://github.com/LemmyNet/lemmy-ui/issues/524))
124 - Fix banner. Fixes [#466](https://github.com/LemmyNet/lemmy-ui/issues/466) ([#534](https://github.com/LemmyNet/lemmy-ui/issues/534))
125 - Making the modlog badge stand out more. Fixes [#531](https://github.com/LemmyNet/lemmy-ui/issues/531) ([#539](https://github.com/LemmyNet/lemmy-ui/issues/539))
126 - Add some fallback properties for display in older browsers ([#535](https://github.com/LemmyNet/lemmy-ui/issues/535))
127 - Private instances ([#523](https://github.com/LemmyNet/lemmy-ui/issues/523))
128 - Add nord theme. Fixes [#520](https://github.com/LemmyNet/lemmy-ui/issues/520) ([#527](https://github.com/LemmyNet/lemmy-ui/issues/527))
129 - Dont receive post room comments from blocked users. ([#516](https://github.com/LemmyNet/lemmy-ui/issues/516))
130 - Using console.error for error logs. ([#517](https://github.com/LemmyNet/lemmy-ui/issues/517))
131 - Fix issue with websocket buffer.
132 - Switching to websocket-ts. [#247](https://github.com/LemmyNet/lemmy-ui/issues/247) ([#515](https://github.com/LemmyNet/lemmy-ui/issues/515))
133 - Fix native language issue. (zh_Hant) ([#513](https://github.com/LemmyNet/lemmy-ui/issues/513))
134 - Fix tippy on component mount. Fixes [#509](https://github.com/LemmyNet/lemmy-ui/issues/509) ([#511](https://github.com/LemmyNet/lemmy-ui/issues/511))
135 - Fix docker latest ([#510](https://github.com/LemmyNet/lemmy-ui/issues/510))
136 - Enabling html tags in markdown. Fixes [#498](https://github.com/LemmyNet/lemmy-ui/issues/498)
137 - Fix comment scroll bug. Fixes [#492](https://github.com/LemmyNet/lemmy-ui/issues/492)
138 - Fixing error for null person_block. Fixes [#491](https://github.com/LemmyNet/lemmy-ui/issues/491)
139 - Trying to catch promise and json parse errors. [#489](https://github.com/LemmyNet/lemmy-ui/issues/489) ([#490](https://github.com/LemmyNet/lemmy-ui/issues/490))
140
141 # Lemmy Release v0.14.0: Federation with Mastodon and Pleroma (2021-11-17)
142
143 Today is an exciting day for the Lemmy project.
144
145 Almost one year after [first enabling federation](https://lemmy.ml/post/42833), we now federate with other projects for the first time! According to some people's definition, this finally makes us part of the Fediverse.
146
147 It took a lot of work to make this possible, so big thanks to [NLnet](https://nlnet.nl/) for funding our full time work on Lemmy, and to [@lanodan](https://queer.hacktivis.me/users/lanodan) and [@asonix](https://masto.asonix.dog/@asonix) for helping to figure out how Pleroma and Mastodon federation works (it's difficult because they have almost no documentation).
148
149
150 ## Major Changes
151
152 ### Federation code rewrite
153
154 The rewrite of the federation code started by @nutomic in August is now mostly complete. As a result, the code is much cleaner, and has tests to guarantee no breaking changes between Lemmy versions. As a side effect of this rewrite, it was now relatively easy to enable federation with other projects. 
155
156 Mastodon and Pleroma users can:
157
158 - View Lemmy communities, user profiles, posts and comments
159 - Follow Lemmy communities to receive new posts and comments
160 - Replies (mentions) work in both directions, including notifications
161
162 In addition, Pleroma users can exchange private messages with Lemmy users.
163
164 Note that Pleroma and Mastodon rely on a compatibility mode in Lemmy, which means that they won't receive events like Deletes or Votes. Other projects whose federation works similar to Pleroma/Mastodon  will likely also federate.
165
166 ### Hardcoded slur filter removed
167
168 Lemmy finally has essential moderation tools (reporting, user/community blocking), so the hardcoded filter isn't necessary anymore. If you want to keep using the slur filter, copy [these lines](https://github.com/LemmyNet/lemmy/blob/b18ea3e0cc620c3f97f9804c09b92f193809b846/config/config.hjson#L8-L12) to your config file when upgrading, and adjust to your liking.
169
170 ## Upgrade notes
171
172 Federation with Pleroma/Mastodon works automatically, you don't need to change anything, assuming that your allowlist/blocklist configuration permits it.
173
174 Note that Mastodon and Pleroma are much, much bigger than Lemmy at this point, with a combined 3 milion users and 4500 instances, compared to 20.000 users and 35 instances for Lemmy ([source](https://the-federation.info/)). The existing mod tools in Lemmy might not be adequate to handle that at the moment.
175
176 Be aware that if you have federation enabled in the Lemmy config, Mastodon and Pleroma users can now fetch all posts and comments, to view them and share with their followers. The Lemmy blocklist/allowlist can not prevent this, it only prevents posts/comments from blocked instances to be shown on your own instance. The only solution to this problem is disabling federation, or waiting for [signed fetch](https://github.com/LemmyNet/lemmy/issues/868) to be implemented.
177
178 If you want to use federation, but review new instances before federating with them, use the allowlist. You can switch from open federation to allowlist federation by pasting the output of the command below into `federation.allowed_instances` in the Lemmy config.
179
180 ```
181 curl https://your-instance.com/api/v3/site | jq -c .federated_instances.linked
182 ```
183
184 The [`lemmy.hjson` `additional_slurs` field has changed its name to `slur_filter`. ](https://github.com/LemmyNet/lemmy/blob/b18ea3e0cc620c3f97f9804c09b92f193809b846/config/config.hjson#L8-L12)
185
186 Follow the [Docker or Ansible upgrade instructions here.](https://join-lemmy.org/docs/en/administration/administration.html)
187
188 ## Lemmy-Ansible
189
190 We've now separated our ansible install method (the preferred way to deploy Lemmy) into its own repo, [lemmy-ansible](https://github.com/LemmyNet/lemmy-ansible). Let us know if you need help migrating existing installations over to it.
191
192 ## Changes
193
194 ### API
195
196 - There is now a `GetUnreadCount` in the API to check the count of your unread messages, replies, and mentions.
197 - A full list of the API changes can be seen on this diff of [lemmy-js-client: 0.13.0 -> 0.14.0-rc.1](https://github.com/LemmyNet/lemmy-js-client/compare/0.13.0...0.14.0-rc.1) .
198
199 ### Lemmy Server
200
201 - More federation compat ([#1894](https://github.com/LemmyNet/Lemmy/issues/1894))
202 - Adding clippy:unwrap to husky. Fixes [#1892](https://github.com/LemmyNet/Lemmy/issues/1892) ([#1893](https://github.com/LemmyNet/Lemmy/issues/1893))
203 - Remove header guard for activitypub routes
204 - Add federation test cases for Smithereen and Mastodon
205 - Reduce stack memory usage in apub code
206 - Remove ActivityFields trait, deserialize into another struct instead
207 - Check if post or comment are deleted first. Fixes [#1864](https://github.com/LemmyNet/Lemmy/issues/1864) ([#1867](https://github.com/LemmyNet/Lemmy/issues/1867))
208 - Correctly use and document check_is_apub_id_valid() param use_strict_allowlist
209 - Convert note.content and chat_message.content to html (fixes [#1871](https://github.com/LemmyNet/Lemmy/issues/1871))
210 - Upgrade background_jobs to 0.9.1 [#1820](https://github.com/LemmyNet/Lemmy/issues/1820) ([#1875](https://github.com/LemmyNet/Lemmy/issues/1875))
211 - Fix husky fmt hook. ([#1868](https://github.com/LemmyNet/Lemmy/issues/1868))
212 - Renaming to slur_filter. Fixes [#1773](https://github.com/LemmyNet/Lemmy/issues/1773) ([#1801](https://github.com/LemmyNet/Lemmy/issues/1801))
213 - Three instance inbox bug ([#1866](https://github.com/LemmyNet/Lemmy/issues/1866))
214 - Remove ansible from this repo. ([#1829](https://github.com/LemmyNet/Lemmy/issues/1829))
215 - Rewrite collections to use new fetcher ([#1861](https://github.com/LemmyNet/Lemmy/issues/1861))
216 - Dont blank out post or community info. Fixes [#1813](https://github.com/LemmyNet/Lemmy/issues/1813) ([#1841](https://github.com/LemmyNet/Lemmy/issues/1841))
217 - Format config/defaults.hjson before committing ([#1860](https://github.com/LemmyNet/Lemmy/issues/1860))
218 - Breaking apub changes ([#1859](https://github.com/LemmyNet/Lemmy/issues/1859))
219 - Pleroma federation2 ([#1855](https://github.com/LemmyNet/Lemmy/issues/1855))
220 - Create a custom pre-commit hook, generates config/defaults.hjson  ([#1857](https://github.com/LemmyNet/Lemmy/issues/1857))
221 - Add cargo metadata to all crates ([#1853](https://github.com/LemmyNet/Lemmy/issues/1853))
222 - Add both (De)Serialize to all models ([#1851](https://github.com/LemmyNet/Lemmy/issues/1851))
223 - Adding GetUnreadCount to the API. Fixes [#1794](https://github.com/LemmyNet/Lemmy/issues/1794) ([#1842](https://github.com/LemmyNet/Lemmy/issues/1842))
224 - Federate reports ([#1830](https://github.com/LemmyNet/Lemmy/issues/1830))
225 - Fix saved posts and hide read posts issue. Fixes [#1839](https://github.com/LemmyNet/Lemmy/issues/1839) ([#1840](https://github.com/LemmyNet/Lemmy/issues/1840))
226 - Dont allow posts to deleted / removed communities. Fixes [#1827](https://github.com/LemmyNet/Lemmy/issues/1827) ([#1828](https://github.com/LemmyNet/Lemmy/issues/1828))
227 - Dont swallow API errors (fixes [#1834](https://github.com/LemmyNet/Lemmy/issues/1834)) ([#1837](https://github.com/LemmyNet/Lemmy/issues/1837))
228 - Fix federation of initial post/comment vote (fixes [#1824](https://github.com/LemmyNet/Lemmy/issues/1824)) ([#1835](https://github.com/LemmyNet/Lemmy/issues/1835))
229 - Fix clippy warnings added in nightly ([#1833](https://github.com/LemmyNet/Lemmy/issues/1833))
230 - Admins can view all reports. Fixes [#1810](https://github.com/LemmyNet/Lemmy/issues/1810) ([#1825](https://github.com/LemmyNet/Lemmy/issues/1825))
231 - Adding a message_id to emails. Fixes [#1807](https://github.com/LemmyNet/Lemmy/issues/1807) ([#1826](https://github.com/LemmyNet/Lemmy/issues/1826))
232 - Generate config docs from code ([#1786](https://github.com/LemmyNet/Lemmy/issues/1786))
233 - Trying a background_jobs fix. [#1820](https://github.com/LemmyNet/Lemmy/issues/1820) ([#1822](https://github.com/LemmyNet/Lemmy/issues/1822))
234 - mark parent as read on reply ([#1819](https://github.com/LemmyNet/Lemmy/issues/1819))
235 - Move code to apub library ([#1795](https://github.com/LemmyNet/Lemmy/issues/1795))
236 - Adding honeypot to user and post creation. Fixes [#1802](https://github.com/LemmyNet/Lemmy/issues/1802) ([#1803](https://github.com/LemmyNet/Lemmy/issues/1803))
237 - Add database host back into config file ([#1805](https://github.com/LemmyNet/Lemmy/issues/1805))
238
239 ### Lemmy UI
240
241 - Updating translations.
242 - Fixing unload ([#487](https://github.com/LemmyNet/lemmy-ui/issues/487))
243 - Fix setup password. Fixes [#478](https://github.com/LemmyNet/lemmy-ui/issues/478) ([#484](https://github.com/LemmyNet/lemmy-ui/issues/484))
244 - Adding post comment scrolling hack. Fixes [#480](https://github.com/LemmyNet/lemmy-ui/issues/480) [#486](https://github.com/LemmyNet/lemmy-ui/issues/486)
245 - Navbar links ([#476](https://github.com/LemmyNet/lemmy-ui/issues/476))
246 - Try fixing crypto node bug. Fixes [#473](https://github.com/LemmyNet/lemmy-ui/issues/473) ([#474](https://github.com/LemmyNet/lemmy-ui/issues/474))
247 - Use community title and user display name for dropdown.
248 - Mahanstreamer userpage ([#471](https://github.com/LemmyNet/lemmy-ui/issues/471))
249 - Using i18next compatibility v3 ([#465](https://github.com/LemmyNet/lemmy-ui/issues/465))
250 - Show original created time tooltip ([#462](https://github.com/LemmyNet/lemmy-ui/issues/462))
251 - Revert version of i18next to fix plurals. Fixes [#451](https://github.com/LemmyNet/lemmy-ui/issues/451) ([#460](https://github.com/LemmyNet/lemmy-ui/issues/460))
252 - Fixing cross-posts showing on initial load. Fixes [#457](https://github.com/LemmyNet/lemmy-ui/issues/457) ([#464](https://github.com/LemmyNet/lemmy-ui/issues/464))
253 - Show bot account info. Fixes [#458](https://github.com/LemmyNet/lemmy-ui/issues/458) ([#463](https://github.com/LemmyNet/lemmy-ui/issues/463))
254 - Very weak password check ([#461](https://github.com/LemmyNet/lemmy-ui/issues/461))
255 - Simplifying getunreadcount. ([#455](https://github.com/LemmyNet/lemmy-ui/issues/455))
256 - ui changes for marking comment as read on reply ([#454](https://github.com/LemmyNet/lemmy-ui/issues/454))
257 - hide mod actions appropriately fix [#441](https://github.com/LemmyNet/lemmy-ui/issues/441) ([#447](https://github.com/LemmyNet/lemmy-ui/issues/447))
258 - Add honeypot for user and form creation. Fixes [#433](https://github.com/LemmyNet/lemmy-ui/issues/433) ([#435](https://github.com/LemmyNet/lemmy-ui/issues/435))
259 # Lemmy v0.13.3 Release (2021-10-13)
260
261 - Dont swallow API errors (fixes [#1834](https://github.com/LemmyNet/lemmy/issues/1834)) ([#1837](https://github.com/LemmyNet/lemmy/issues/1837))
262 - Fix clippy warnings added in nightly ([#1833](https://github.com/LemmyNet/lemmy/issues/1833))
263 - Fix federation of initial post/comment vote (fixes [#1824](https://github.com/LemmyNet/lemmy/issues/1824)) ([#1835](https://github.com/LemmyNet/lemmy/issues/1835))
264 - Trying a background_jobs fix. [#1820](https://github.com/LemmyNet/lemmy/issues/1820)
265
266 # Lemmy v0.13.0 Release (2021-09-30)
267
268 Since our last release earlier this month, we've had [~30](https://github.com/LemmyNet/lemmy/compare/0.12.0...main) commits to Lemmy.
269
270 ## Major Changes
271
272 - Added comment and post reporting in the front end, and cleaned up the reporting API. 
273   - *Note: these are local-only currently, reports are not yet federated.*
274 - The JWT secret is now auto-generated by the database. 
275   - *Note: this will log out all users, so users will have to log in again.*
276 - Lots of smaller UI fixes listed below.
277
278 ## Upgrade notes
279
280 ### Servers
281
282 If you'd like to make a DB backup before upgrading, follow [this guide](https://join.lemmy.ml/docs/en/administration/backup_and_restore.html).
283
284 To upgrade your instance to `v0.13.0`, simply follow the instructions in the documentation:
285
286 - [Upgrade with manual Docker installation](https://join.lemmy.ml/docs/en/administration/install_docker.html#updating)
287 - [Upgrade with Ansible installation](https://join.lemmy.ml/docs/en/administration/install_ansible.html)
288
289 ## Changes
290
291 ### Lemmy Server
292
293 #### General
294
295 - Adding a user agent. Fixes [#1769](https://github.com/LemmyNet/lemmy/issues/1769)
296 - Ansible changes ([#1781](https://github.com/LemmyNet/lemmy/issues/1781))
297 - Clean up reporting ([#1776](https://github.com/LemmyNet/lemmy/issues/1776))
298 - Implement webmention support (fixes [#1395](https://github.com/LemmyNet/lemmy/issues/1395))
299 - Move jwt secret from config to database (fixes [#1728](https://github.com/LemmyNet/lemmy/issues/1728))
300 - Set a 10 char minimum password length.
301 - Dont pass accept-encoding header to pictrs (ref [#1734](https://github.com/LemmyNet/lemmy/issues/1734)) ([#1738](https://github.com/LemmyNet/lemmy/issues/1738))
302
303 #### API
304
305 - There are no breaking API changes, only the addition of reporting endpoints.
306 - A full list of the API changes can be seen on this diff of [lemmy-js-client: 0.12.0 -> 0.13.0](https://github.com/LemmyNet/lemmy-js-client/compare/0.12.0...0.13.0) .
307
308 #### Federation
309
310 - Rewrite fetcher ([#1792](https://github.com/LemmyNet/lemmy/issues/1792))
311
312 ### Lemmy UI
313
314 - Adding bn, ml, and cs langs
315 - Reporting ([#434](https://github.com/LemmyNet/lemmy-ui/issues/434))
316 - Splitting login and signup pages. Fixes [#386](https://github.com/LemmyNet/lemmy-ui/issues/386) ([#431](https://github.com/LemmyNet/lemmy-ui/issues/431))
317 - Fixing image in newtab. Fixes [#382](https://github.com/LemmyNet/lemmy-ui/issues/382) ([#430](https://github.com/LemmyNet/lemmy-ui/issues/430))
318 - Navigate away from login page if already logged in. ([#429](https://github.com/LemmyNet/lemmy-ui/issues/429))
319 - Add username validation message. Fixes [#387](https://github.com/LemmyNet/lemmy-ui/issues/387) ([#428](https://github.com/LemmyNet/lemmy-ui/issues/428))
320 - Password strength meter ([#427](https://github.com/LemmyNet/lemmy-ui/issues/427))
321 - Fix community display name overflow. Fixes [#390](https://github.com/LemmyNet/lemmy-ui/issues/390) ([#425](https://github.com/LemmyNet/lemmy-ui/issues/425))
322 - Fix logout bug. Fixes [#391](https://github.com/LemmyNet/lemmy-ui/issues/391) ([#424](https://github.com/LemmyNet/lemmy-ui/issues/424))
323 - Fix up post, profile and community forms. Fixes [#409](https://github.com/LemmyNet/lemmy-ui/issues/409) ([#423](https://github.com/LemmyNet/lemmy-ui/issues/423))
324 - Adding markdown audio and video embeds. Fixes [#420](https://github.com/LemmyNet/lemmy-ui/issues/420) ([#421](https://github.com/LemmyNet/lemmy-ui/issues/421))
325 - Adding Si simplifier ([#418](https://github.com/LemmyNet/lemmy-ui/issues/418))
326 - Fix profile paging. Fixes [#416](https://github.com/LemmyNet/lemmy-ui/issues/416) ([#417](https://github.com/LemmyNet/lemmy-ui/issues/417))
327 - Use my fork of inferno-i18next. Fixes [#413](https://github.com/LemmyNet/lemmy-ui/issues/413) ([#415](https://github.com/LemmyNet/lemmy-ui/issues/415))
328 - Add version to package.json . Fixes [#411](https://github.com/LemmyNet/lemmy-ui/issues/411)
329
330 # Lemmy v0.12.2 Release (2021-09-06)
331
332 - Fixing ARM64 builds.
333 - Fixing missing Arabic language in UI.
334 - Fixing wrongly shown subscribed communities on other user's profiles. [#402](https://github.com/LemmyNet/lemmy-ui/issues/402)
335 - Adding a robots.txt, thanks to @mahanstreamer. [#401](https://github.com/LemmyNet/lemmy-ui/pull/401)
336
337 # Lemmy v0.12.1 Release (2021-09-04)
338
339 Fixed several critical websocket bugs.
340
341 - Wasn't correctly getting comment parent user for mark as read. Fixes [#1767](https://github.com/LemmyNet/lemmy/issues/1767)
342 - Was using all recipients for simple comment return. Fixes [#1766](https://github.com/LemmyNet/lemmy/issues/1766)
343 - Fix comment scrolling bug. Fixes [#394](https://github.com/LemmyNet/lemmy-ui/issues/394)
344
345 # Lemmy v0.12.0 Release (2021-09-03)
346
347 ## Changes
348
349 Since our last release in April, we've had [~80](https://github.com/LemmyNet/lemmy/compare/0.11.0...main) commits to Lemmy.
350
351 ### Lemmy Server
352
353 #### Major Changes
354
355 *Note: Issue links are below.*
356
357 - @nutomic did a major rewrite of the federation code. It is much simpler now, and reduced from 8000 lines of code to 6400. Functionality is mostly the same, but future changes will be much easier.
358 - You can now block users and communities, and their posts / comments won't show up in your feed.
359 - Removed IFramely: Lemmy can now fetch site metadata on its own.
360 - New API docs at: https://join-lemmy.org/api
361
362 #### General
363
364 - Fix prod deploy script and clippy ([#1724](https://github.com/LemmyNet/lemmy/issues/1724))
365 - Fix image uploads. Fixes [#1725](https://github.com/LemmyNet/lemmy/issues/1725) ([#1734](https://github.com/LemmyNet/lemmy/issues/1734))
366 - Adding more site setup vars. Fixes [#678](https://github.com/LemmyNet/lemmy/issues/678) ([#1718](https://github.com/LemmyNet/lemmy/issues/1718))
367 - Dont append ? to url when cleaning it ([#1716](https://github.com/LemmyNet/lemmy/issues/1716))
368 - User / community blocking. Fixes [#426](https://github.com/LemmyNet/lemmy/issues/426) ([#1604](https://github.com/LemmyNet/lemmy/issues/1604))
369 - Swap out iframely ([#1706](https://github.com/LemmyNet/lemmy/issues/1706))
370 - Adding ModTransferCommunity to modlog in API. Fixes [#1437](https://github.com/LemmyNet/lemmy/issues/1437)
371 - Make sure bots aren't included in aggregate counts ([#1705](https://github.com/LemmyNet/lemmy/issues/1705))
372 - Don't allow deleted users to do actions. Fixes [#1656](https://github.com/LemmyNet/lemmy/issues/1656) ([#1704](https://github.com/LemmyNet/lemmy/issues/1704))
373 - When banning a user, remove communities they've created ([#1700](https://github.com/LemmyNet/lemmy/issues/1700))
374 - Distribute Lemmy via crates.io
375 - Simplify config using macros ([#1686](https://github.com/LemmyNet/lemmy/issues/1686))
376 - Simplify lemmy_context() function (dont return errors)
377 - Blank out extra info for deleted or removed content. Fixes [#1679](https://github.com/LemmyNet/lemmy/issues/1679) ([#1680](https://github.com/LemmyNet/lemmy/issues/1680))
378 - Add show_new_posts_notifs setting. Fixes [#1664](https://github.com/LemmyNet/lemmy/issues/1664) ([#1665](https://github.com/LemmyNet/lemmy/issues/1665))
379 - Adding shortname fetching for users and communities. Fixes [#1662](https://github.com/LemmyNet/lemmy/issues/1662) ([#1663](https://github.com/LemmyNet/lemmy/issues/1663))
380 - Upgrading deps, running clippy fix on nightly 1.55.0 ([#1638](https://github.com/LemmyNet/lemmy/issues/1638))
381 - Running clippy --fix ([#1647](https://github.com/LemmyNet/lemmy/issues/1647))
382 - Make captcha case-insensitive
383 - Remove tracking params from post url (fixes [#768](https://github.com/LemmyNet/lemmy/issues/768))
384 - Fix IPv6 port setup for Nginx ([#1636](https://github.com/LemmyNet/lemmy/issues/1636))
385 - Fix --cert-name for certbot. ([#1631](https://github.com/LemmyNet/lemmy/issues/1631))
386 - Change join.lemmy.ml to join-lemmy.org ([#1628](https://github.com/LemmyNet/lemmy/issues/1628))
387 - Upgrade pictrs. Fixes [#1599](https://github.com/LemmyNet/lemmy/issues/1599) ([#1600](https://github.com/LemmyNet/lemmy/issues/1600))
388 - Invalidate current logins on account deletion. Fixes [#1602](https://github.com/LemmyNet/lemmy/issues/1602) ([#1603](https://github.com/LemmyNet/lemmy/issues/1603))
389 - Upgrading api test deps ([#1608](https://github.com/LemmyNet/lemmy/issues/1608))
390 - Fix nsfw posts showing for non-logged in users. Fixes [#1614](https://github.com/LemmyNet/lemmy/issues/1614) ([#1615](https://github.com/LemmyNet/lemmy/issues/1615))
391 - Add additional slurs configuration option. Closes [#1464](https://github.com/LemmyNet/lemmy/issues/1464). ([#1612](https://github.com/LemmyNet/lemmy/issues/1612))
392 - Updating to rust 1.51.0 ([#1598](https://github.com/LemmyNet/lemmy/issues/1598))
393 - Remove brotli, zstd dependencies for faster compilation
394
395 #### API
396
397 - A full list of the API changes can be seen on this diff of [lemmy-js-client: 0.11.0 -> 0.12.0](https://github.com/LemmyNet/lemmy-js-client/compare/0.11.0...0.12.0-rc.1) .
398
399 #### Federation
400
401 - Move resolving of activitypub objects to separate api endpoint (fixes #1584)
402 - Rewrite remaining activities ([#1712](https://github.com/LemmyNet/lemmy/issues/1712))
403 - Migrate comment inReplyTo field to single value (ref [#1454](https://github.com/LemmyNet/lemmy/issues/1454))
404 - Fix issue with protocol string in actor id generation ([#1668](https://github.com/LemmyNet/lemmy/issues/1668))
405
406
407 ### Lemmy UI
408
409 - Integrating resolve_user into search. ([#377](https://github.com/LemmyNet/lemmy-ui/issues/377))
410 - Add lazy loading of images. Fixes [#329](https://github.com/LemmyNet/lemmy-ui/issues/329) ([#379](https://github.com/LemmyNet/lemmy-ui/issues/379))
411 - Adding vi, sk, mnc, and cy languages. ([#378](https://github.com/LemmyNet/lemmy-ui/issues/378))
412 - Feature/user community block ([#362](https://github.com/LemmyNet/lemmy-ui/issues/362))
413 - Swapping out iframely. ([#374](https://github.com/LemmyNet/lemmy-ui/issues/374))
414 - Adding mod transfer community ([#373](https://github.com/LemmyNet/lemmy-ui/issues/373))
415 - Remove content more ([#372](https://github.com/LemmyNet/lemmy-ui/issues/372))
416 - Scroll to comments on post's x comments button ([#312](https://github.com/LemmyNet/lemmy-ui/issues/312))
417 - Remove websocket connection messages. Fixes [#355](https://github.com/LemmyNet/lemmy-ui/issues/355)
418 - Center spinner, make smaller. Fixes [#203](https://github.com/LemmyNet/lemmy-ui/issues/203)
419 - Fix font issues. Fixes [#354](https://github.com/LemmyNet/lemmy-ui/issues/354)
420 - Have setting to disable notifs for new posts. Fixes [#132](https://github.com/LemmyNet/lemmy-ui/issues/132) ([#345](https://github.com/LemmyNet/lemmy-ui/issues/345))
421 - Remove max length constraints on actors. Fixes [#350](https://github.com/LemmyNet/lemmy-ui/issues/350) ([#351](https://github.com/LemmyNet/lemmy-ui/issues/351))
422 - Fix captcha replay bug. Fixes [#348](https://github.com/LemmyNet/lemmy-ui/issues/348) ([#349](https://github.com/LemmyNet/lemmy-ui/issues/349))
423 - Removing community and user routes in favor of shortnames. Fixes [#317](https://github.com/LemmyNet/lemmy-ui/issues/317) ([#343](https://github.com/LemmyNet/lemmy-ui/issues/343))
424 - Don't use default subscribed for communities page.
425 - Adding Listing type to communities page, default local. [#190](https://github.com/LemmyNet/lemmy-ui/issues/190) ([#342](https://github.com/LemmyNet/lemmy-ui/issues/342))
426 - Fix language bug on mobile browsers
427 - Collapse sidebar on mobile. Fixes [#335](https://github.com/LemmyNet/lemmy-ui/issues/335) ([#340](https://github.com/LemmyNet/lemmy-ui/issues/340))
428 - Re-organized components folder. ([#339](https://github.com/LemmyNet/lemmy-ui/issues/339))
429 - Fixing too many large spinners ([#337](https://github.com/LemmyNet/lemmy-ui/issues/337))
430 - Moving comment link to top bar. Fixes #307 ([#336](https://github.com/LemmyNet/lemmy-ui/issues/336))
431 - Fix/ws error messages ([#334](https://github.com/LemmyNet/lemmy-ui/issues/334))
432 - Make spinner bigger. Fixes [#203](https://github.com/LemmyNet/lemmy-ui/issues/203)
433 - Fix preview description html. Fixes [#110](https://github.com/LemmyNet/lemmy-ui/issues/110)
434 - Always show previous paginator, extract paginator component.
435 - Use better comment collapse icon, and add text. Fixes [#318](https://github.com/LemmyNet/lemmy-ui/issues/318)
436 - Fix symbols issue. Fixes [#319](https://github.com/LemmyNet/lemmy-ui/issues/319)
437 - Don't restore scroll position on page refresh. Fixes [#186](https://github.com/LemmyNet/lemmy-ui/issues/186)
438 - Insert triple backticks for 'code' button when multiple lines are selected. ([#311](https://github.com/LemmyNet/lemmy-ui/issues/311))
439 - Change join.lemmy-ui.ml to join-lemmy-ui.org
440 - Adding a comment here placeholder. Fixes [#301](https://github.com/LemmyNet/lemmy-ui/issues/301)
441 - Fix non-local community and person links. Fixes [#290](https://github.com/LemmyNet/lemmy-ui/issues/290)
442 - Fix navbar bug. Fixes [#289](https://github.com/LemmyNet/lemmy-ui/issues/289)
443 - Hide names of mods / admins without priveleges. Fixes [#285](https://github.com/LemmyNet/lemmy-ui/issues/285)
444 - Adding URL search type. Fixes [#286](https://github.com/LemmyNet/lemmy-ui/issues/286)
445 - Add a link to joinlemmy-ui on lemmy-ui.ml signup. Fixes [#235](https://github.com/LemmyNet/lemmy-ui/issues/235)
446 - Fix duped site description. Fixes [#281](https://github.com/LemmyNet/lemmy-ui/issues/281)
447
448 ## Upgrade notes
449
450 ### Servers
451
452 You may need to add this to your `lemmy.hjson`:
453
454 `pictrs_url: "http://pictrs:8080"`
455
456 If you'd like to make a DB backup before upgrading, follow [this guide](https://join.lemmy.ml/docs/en/administration/backup_and_restore.html).
457
458 To upgrade your instance to `v0.12.0`, simply follow the instructions in the documentation:
459
460 - [Upgrade with manual Docker installation](https://join.lemmy.ml/docs/en/administration/install_docker.html#updating)
461 - [Upgrade with Ansible installation](https://join.lemmy.ml/docs/en/administration/install_ansible.html)
462
463 ### Clients / Apps
464
465 - A full list of the API changes can be seen on this diff of [lemmy-js-client: 0.11.0 -> 0.12.0](https://github.com/LemmyNet/lemmy-js-client/compare/0.11.0...0.12.0-rc.1) .
466
467 # Lemmy v0.11.3 Release (2021-07-30)
468
469 ## Changes
470
471 Since our last release, we've had [~30](https://github.com/LemmyNet/lemmy/compare/0.11.0...main) commits to Lemmy, and [~60](https://github.com/LemmyNet/lemmy-ui/compare/0.11.0...main) to Lemmy UI.
472
473 ### Lemmy Server
474
475 - Blank out extra info for deleted or removed content. Fixes [#1679](https://github.com/LemmyNet/Lemmy/issues/1679) 
476 - Add show_new_posts_notifs setting. Fixes [#1664](https://github.com/LemmyNet/Lemmy/issues/1664)
477 - Fix issue with protocol string in actor id generation [#1668](https://github.com/LemmyNet/Lemmy/issues/1668)
478 - Adding shortname fetching for users and communities. Fixes [#1662](https://github.com/LemmyNet/Lemmy/issues/1662)
479 - Make captcha case-insensitive.
480 - Remove tracking params from post url (fixes [#768](https://github.com/LemmyNet/Lemmy/issues/768))
481 - Upgrade pictrs. Fixes [#1599](https://github.com/LemmyNet/Lemmy/issues/1599)
482 - Invalidate current logins on account deletion. Fixes [#1602](https://github.com/LemmyNet/Lemmy/issues/1602)
483 - Fix nsfw posts showing for non-logged in users. Fixes [#1614](https://github.com/LemmyNet/Lemmy/issues/1614)
484 - Add additional slurs configuration option. Closes [#1464](https://github.com/LemmyNet/Lemmy/issues/1464).
485 - Updating to rust 1.51.0
486
487 ### Lemmy UI
488
489 - Have setting to disable notifs for new posts. Fixes [#132](https://github.com/LemmyNet/lemmy-ui/issues/132)
490 - Remove max length constraints on actors. Fixes [#350](https://github.com/LemmyNet/lemmy-ui/issues/350)
491 - Fix captcha replay bug. Fixes [#348](https://github.com/LemmyNet/lemmy-ui/issues/348)
492 - Removing community and user routes in favor of shortnames. Fixes [#317](https://github.com/LemmyNet/lemmy-ui/issues/317)
493 - Add front end helpers 1 [(#346](https://github.com/LemmyNet/lemmy-ui/issues/346))
494 - Don't use default subscribed for communities page.
495 - Adding Listing type to communities page, default local. [#190](https://github.com/LemmyNet/lemmy-ui/issues/190)
496 - Fix language bug on mobile browsers.
497 - Collapse sidebar on mobile. Fixes [#335](https://github.com/LemmyNet/lemmy-ui/issues/335)
498 - Re-organized components folder. [(#339](https://github.com/LemmyNet/lemmy-ui/issues/339))
499 - Moving comment link to top bar. Fixes [#307](https://github.com/LemmyNet/lemmy-ui/issues/307)
500 - Make spinner bigger. Fixes [#203](https://github.com/LemmyNet/lemmy-ui/issues/203)
501 - Fix preview description html. Fixes [#110](https://github.com/LemmyNet/lemmy-ui/issues/110)
502 - Update darkly, make danger darker. Fixes [#16](https://github.com/LemmyNet/lemmy-ui/issues/16)
503 - Always show previous paginator, extract paginator component.
504 - Use better comment collapse icon, and add text. Fixes [#318](https://github.com/LemmyNet/lemmy-ui/issues/318)
505 - Fix symbols issue. Fixes [#319](https://github.com/LemmyNet/lemmy-ui/issues/319)
506 - Don't restore scroll position on page refresh. Fixes [#186](https://github.com/LemmyNet/lemmy-ui/issues/186)
507 - Insert triple backticks for 'code' button when multiple lines are selected. [(#311](https://github.com/LemmyNet/lemmy-ui/issues/311))
508 - Adding a comment here placeholder. Fixes [#301](https://github.com/LemmyNet/lemmy-ui/issues/301)
509 - Fix non-local community and person links. Fixes [#290](https://github.com/LemmyNet/lemmy-ui/issues/290)
510 - Fix navbar bug. Fixes [#289](https://github.com/LemmyNet/lemmy-ui/issues/289)
511 - Hide names of mods / admins without priveleges. Fixes [#285](https://github.com/LemmyNet/lemmy-ui/issues/285)
512 - Adding URL search type. Fixes [#286](https://github.com/LemmyNet/lemmy-ui/issues/286)
513 - Add a link to joinlemmy on lemmy.ml signup. Fixes [#235](https://github.com/LemmyNet/lemmy-ui/issues/235)
514 - Fix duped site description. Fixes [#281](https://github.com/LemmyNet/lemmy-ui/issues/281)
515
516 ### API
517
518 - Added `show_new_posts_notifs` boolean to `SaveUserSettings`, and `LocalUserSettings`.
519 - A full list of the API changes can be seen on this diff of [lemmy-js-client: 0.11.0 -> 0.11.3](https://github.com/LemmyNet/lemmy-js-client/compare/0.11.0...0.11.3-rc.4) .
520
521 ### Federation
522
523 - No changes in this release, but there will be many soon.
524
525 ## Upgrade notes
526
527 To upgrade your instance to `0.11.3`, simply follow the instructions in the documentation:
528
529 - [Upgrade with manual Docker installation](https://join-lemmy.org/docs/en/administration/install_docker.html#updating)
530 - [Upgrade with Ansible installation](https://join-lemmy.org/docs/en/administration/install_ansible.html)
531
532 # Lemmy v0.11.0 Release (2021-04-27)
533
534 ## Changes
535
536 Since our last release this month, we've had [~60](https://github.com/LemmyNet/lemmy/compare/0.10.0...main) commits to Lemmy.
537
538 ### Lemmy Server
539
540 #### Major Changes
541
542 - Add option to disable strict allowlist ( [#1486](https://github.com/LemmyNet/lemmy/issues/1486)) [documentation](https://join-lemmy.org/docs/en/federation/administration.html) 
543 - Add option to limit community creation to admins only ([#1587](https://github.com/LemmyNet/lemmy/issues/1587))
544 - Many search improvements:
545   - Don't search for communities or users when the id is included.
546   - Add creator id to search.
547
548 #### General
549
550 - Adding a user setting to show / hide scores. Fixes [#1503](https://github.com/LemmyNet/lemmy/issues/1503)
551 - Add option to hide read posts. Fixes [#1561](https://github.com/LemmyNet/lemmy/issues/1561)
552 - Mark accounts as bot, and hide bot posts/comments
553 - Adding a short site description, to be used for joinlemmy instance list
554 - Adding matrix id validation. Fixes [#1520](https://github.com/LemmyNet/lemmy/issues/1520)
555 - Adding users active monthly for community sort. Fixes [#1527](https://github.com/LemmyNet/lemmy/issues/1527)
556 - Don't allow zero-space char in display name. Fixes [#1317](https://github.com/LemmyNet/lemmy/issues/1317)
557 - Adding more rust captcha features. Fixes [#1248](https://github.com/LemmyNet/lemmy/issues/1248)
558 - Fixing slur filter regex. Fixes [#1593](https://github.com/LemmyNet/lemmy/issues/1593)
559
560 #### API
561
562 - Added `ChangePassword` as a separate endpoint from `SaveUserSettings`
563 - No other breaking changes, but many fields that were previously required are now optional.
564 - A full list of the API changes can be seen on this diff of [lemmy-js-client: 0.10.0 -> 0.11.0](https://github.com/LemmyNet/lemmy-js-client/compare/0.10.0...0.11.0-rc.13) .
565
566 #### Federation
567
568 - Implement federated bans fixes [#1298](https://github.com/LemmyNet/lemmy/issues/1298)
569 - Remote mods can update/delete/undelete communities.
570
571 ### Lemmy UI
572
573 - Updating translations.
574 - Add UI version to UI via docker. Fixes [#263](https://github.com/LemmyNet/lemmy-ui/issues/263)
575 - Add Korean language
576 - Add check for unused languages in update_translations.sh
577 - Validate matrix id on the front end. Fixes [#245](https://github.com/LemmyNet/lemmy-ui/issues/245)
578 - Communities page sorts by monthly active users. Fixes [#244](https://github.com/LemmyNet/lemmy-ui/issues/244)
579 - Correctly render HTML in popup notifications
580 - Fix html notif bug. Fixes [#254](https://github.com/LemmyNet/lemmy-ui/issues/254)
581 - Fixing issue with debounce. Fixes [#236](https://github.com/LemmyNet/lemmy-ui/issues/236)
582
583 ## Upgrade notes
584
585 ### Servers
586
587 If you'd like to make a DB backup before upgrading, follow [this guide](https://join-lemmy.org/docs/en/administration/backup_and_restore.html).
588
589 To upgrade your instance to `v0.10.0`, simply follow the instructions in the documentation:
590
591 - [Upgrade with manual Docker installation](https://join-lemmy.org/docs/en/administration/install_docker.html#updating)
592 - [Upgrade with Ansible installation](https://join-lemmy.org/docs/en/administration/install_ansible.html)
593
594 ### Clients / Apps
595
596 - A full list of the API changes can be seen on this diff of [lemmy-js-client: 0.10.0 -> 0.11.0](https://github.com/LemmyNet/lemmy-js-client/compare/0.10.0...0.11.0-rc.13) .
597
598 # Lemmy v0.10.3 Release (2021-04-07)
599
600 - Fixing instances page.
601 - Fixed unban not working.
602 - Fixed post title fetching and cross-post search.
603 - Fixed navigating to a user page.
604
605 # Lemmy v0.10.2 Release (2021-04-05)
606
607 - Forcing a crash if config.hjson fails to load. Should show errors easier.
608
609 # Lemmy v0.10.0 Release (2021-04-05)
610
611 ## Changes
612
613 Since our last release in February, we've had [~150](https://github.com/LemmyNet/lemmy/compare/0.9.9...main) commits to Lemmy. The biggest changes, as we'll outline below, are a split of Lemmy's user tables into federated and local tables, necessitating a `v3` of Lemmy's API, federated moderation, i18n support in join-lemmy.org, and lots of back-end cleanup.
614
615 ### Lemmy Server
616
617 #### General
618
619 - Rewrote config implementation, finally allowing us to use newer Rust versions.
620 - Removed categories. 
621 - Various refactors.
622
623 #### API
624
625 - A full list of the API changes can be seen on this diff of [lemmy-js-client: 0.9.9 -> 0.10.0](https://github.com/LemmyNet/lemmy-js-client/compare/0.9.9...0.10.0-rc.13) .
626 - Login invalidation on password change, thanks to @Mart-Bogdan
627
628 #### Federation
629
630 - It is now possible to add users from other instances as community mods.
631 - Federating Matrix ID.
632 - Many changes for better compatibility with ActivityPub standard.
633
634 #### Database 
635
636 - Split the `user_` into `person` and `local_user` tables.
637 - Strictly typed commonly used ID columns, to prevent DB errors using `i32` as ids.
638 - Strictly typed URL fields, thanks to ajyoon.
639 - Created default DB forms, now used in all the unit tests.
640
641 ### Lemmy UI
642
643 - Now using utf-8 emojis.
644 - Support for all the above changes to Lemmy.
645 - Typescript-safe i18n strings, thanks to @shilangyu.
646 - Added expandable post text (click on open book icon).
647 - Prettier cross-posting, which does smart quoting.
648 - Bugfixes for restoring scroll position on post page, custom site favicons, and autocomplete for login fields.
649
650 ### Lemmy Docs
651
652 - Gazconroy built an [Async API spec for Lemmy](https://join-lemmy.org/api/index.html), that now serves as our main API docs.
653
654 ### join-lemmy.org
655
656 - Rewrote in inferno isomorphic, added i18n support via [weblate](https://weblate.yerbamate.ml/projects/lemmy/joinlemmy/).
657 - Added a section on the support page thanking contributors.
658 - Changed some page urls / titles
659
660 ## Upgrade notes
661
662 **Important**: there are multiple breaking changes:
663
664 - Configuration via environment variables is not supported anymore, you must have all your config in the [lemmy.hjson](https://github.com/LemmyNet/lemmy/blob/main/ansible/templates/config.hjson) file ( except for `LEMMY_CONFIG_LOCATION` ).
665 - The config format for `allowed_instances` and `blocked_instances` has changed, and you need to adjust your config file manually:
666     - before: `allowed_instances: ds9.lemmy.ml,enterprise.lemmy.ml`
667     - now: `allowed_instances: ["ds9.lemmy.ml", "enterprise.lemmy.ml"]` , and only one of the `allowed_instances` or `blocked_instances` blocks can be set.
668 - The API has been upgraded from `v2` to `v3`, so all clients need to be updated: [lemmy-js-client: 0.9.9 -> 0.10.0](https://github.com/LemmyNet/lemmy-js-client/compare/0.9.9...0.10.0-rc.13) .
669
670 If you'd like to make a DB backup before upgrading, follow [this guide](https://join-lemmy.org/docs/en/administration/backup_and_restore.html).
671
672 To upgrade your instance to `v0.10.0`, simply follow the instructions in the documentation:
673
674 - [Upgrade with manual Docker installation](https://join-lemmy.org/docs/en/administration/install_docker.html#updating)
675 - [Upgrade with Ansible installation](https://join-lemmy.org/docs/en/administration/install_ansible.html)
676
677
678 ## Compilation time
679
680 || v0.9.0 (Rust 1.47) | v0.10.0 (Rust 1.47) | v0.10.0 (Rust 1.51) |
681 |-| -------- | -------- | -------- |
682 |Clean | 140s     | 146s     | 119s     |
683 | Incremental | 28s | 22s | 19s |
684
685 Despite ongoing efforts to speed up compilation, it has actually gotten slower when comparing with the same Rust version. Only thanks to improvements in newer Rust versions has our build process gotten faster. This could be simply because we added more code, while Lemmy v0.9.0 had 22.4k lines of Rust, v0.10.0 has 23.8k (an increase of 6%).
686
687 v0.9.0 build graph:
688 ![](https://lemmy.ml/pictrs/image/GVBqFnrLqG.jpg)
689
690 v0.10.0 build graph:
691 ![](https://lemmy.ml/pictrs/image/NllzjVEyNK.jpg)
692
693 We extracted the crates `lemmy_api_crud` and `lemmy_apub_receive` from `lemmy_api` and `lemmy_apub`, respectively, and renamed `lemmy_structs` to `lemmy_api_common`. In the second graph you can see how parts of the api and apub crates are now built nicely in parallel, speeding up builds on multi-core systems.
694
695 On the other hand, some crates have gotten much slower to compile, in particular `lemmy_db_queries` (6.5s slower), `lemmy_apub` (6.5s slower if we include `lemmy_apub_receive`). And `lemmy_db_views` is quite slow, just as before.
696
697 # Lemmy v0.9.9 Release (2021-02-19)
698
699 ## Changes
700
701 ### Lemmy backend
702 - Added an federated activity query sorting order.
703 - Explicitly marking posts and comments as public.
704 - Added a `NewComment` / forum sort for posts.
705 - Fixed an issue with not setting correct published time for fetched posts.
706 - Fixed an issue with an open docker port on lemmy-ui.
707 - Using lemmy post link for RSS link.
708 - Fixed reason and display name lengths to use char counts instead.
709
710 ### Lemmy-ui
711
712 - Updated translations.
713 - Made websocket host configurable.
714 - Added some accessibility features.
715 - Always showing password reset link.
716
717 # Lemmy v0.9.7 Release (2021-02-08)
718
719 ## Changes
720
721 - Posts and comments are no longer live-sorted (meaning most content should stay in place).
722 - Fixed an issue with the create post title field not expanding when copied from iframely suggestion.
723 - Fixed broken federated community paging / sorting.
724 - Added aria attributes for accessibility, thx to @Mitch Lillie.
725 - Updated translations and added croatian.
726 - No changes to lemmy back-end.
727
728 # Lemmy v0.9.6 Release (2021-02-05)
729
730 ## Changes
731
732 - Fixed inbox_urls not being correctly set, which broke federation in `v0.9.5`. Added some logging to catch these.
733 - Fixing community search not using auth.
734 - Moved docs to https://join-lemmy.org
735 - Fixed an issue w/ lemmy-ui with forms being cleared out.
736
737 # Lemmy v0.9.4 Pre-Release (2021-02-02)
738
739 ## Changes
740
741 ### Lemmy
742
743 - Fixed a critical bug with votes and comment unlike responses not being `0` for your user.
744 - Fixed a critical bug with comment creation not checking if its parent comment is in the post.
745 - Serving proper activities for community outbox.
746 - Added some active user counts, including `users_active_day`, `users_active_week`, `users_active_month`, `users_active_half_year` to `SiteAggregates` and `CommunityAggregates`. (Also added to lemmy-ui)
747 - Made sure banned users can't follow.
748 - Added `FederatedInstances` to `SiteResponse`, to show allowed and blocked instances. (Also added to lemmy-ui)
749 - Added a `MostComments` sort for posts. (Also added to lemmy-ui)
750
751 ### Lemmy-UI
752
753 - Added a scroll position restore to lemmy-ui.
754 - Reworked the combined inbox so incoming comments don't wipe out your current form.
755 - Fixed an updated bug on the user page.
756 - Fixed cross-post titles and body getting clipped.
757 - Fixing the post creation title height.
758 - Squashed some other smaller bugs.
759
760 # Lemmy v0.9.0 Release (2021-01-25)
761
762 ## Changes
763
764 Since our last release in October of last year, and we've had [~450](https://github.com/LemmyNet/lemmy/compare/v0.8.0...main) commits.
765
766 The biggest changes, as we'll outline below, are a re-work of Lemmy's database structure, a `v2` of Lemmy's API, and activitypub compliance fixes. The new re-worked DB is much faster, easier to maintain, and [now supports hierarchical rather than flat objects in the new API](https://github.com/LemmyNet/lemmy/issues/1275).
767
768 We've also seen the first release of [Lemmur](https://github.com/LemmurOrg/lemmur/releases/tag/v0.1.1), an android / iOS (soon) / windows / linux client, as well as [Lemmer](https://github.com/uuttff8/Lemmy-iOS), a native iOS client. Much thanks to @krawieck, @shilangyu, and @uuttff8 for making these great clients. If you can, please contribute to their [patreon](https://www.patreon.com/lemmur) to help fund lemmur development.
769
770 ## LemmyNet projects
771
772 ### Lemmy Server
773
774 - [Moved views from SQL to Diesel](https://github.com/LemmyNet/lemmy/issues/1275). This was a spinal replacement for much of lemmy.
775   - Removed all the old fast_tables and triggers, and created new aggregates tables.
776 - Added a `v2` of the API to support the hierarchical objects created from the above changes.
777 - Moved continuous integration to [drone](https://cloud.drone.io/LemmyNet/lemmy/), now includes formatting, clippy, and cargo build checks, unit testing, and federation testing. [Drone also deploys both amd64 and arm64 images to dockerhub.](https://hub.docker.com/r/dessalines/lemmy)
778 - Split out documentation into git submodule.
779 - Shortened slur filter to avoid false positives.
780 - Added query performance testing and comparisons. Added indexes to make sure every query is `< 30 ms`.
781 - Added compilation time testing.
782
783 ### Federation
784
785 This release includes some bug fixes for federation, and some changes to get us closer to compliance with the ActivityPub standard.
786
787 - [Community bans now federating](https://github.com/LemmyNet/lemmy/issues/1287).
788 - [Local posts sometimes got marked as remote](https://github.com/LemmyNet/lemmy/issues/1302).
789 - [Creator of post/comment was not notified about new child comments](https://github.com/LemmyNet/lemmy/issues/1325).
790 - [Community deletion now federated](https://github.com/LemmyNet/lemmy/issues/1256).
791
792 None of these are breaking changes, so federation between 0.9.0 and 0.8.11 will work without problems.
793
794 ### Lemmy javascript / typescript client
795
796 - Updated the [lemmy-js-client](https://github.com/LemmyNet/lemmy-js-client) to use the new `v2` API. Our API docs now reference this project's files, to show what the http / websocket forms and responses should look like.
797 - Drone now handles publishing its [npm packages.](https://www.npmjs.com/package/lemmy-js-client)
798
799 ### Lemmy-UI
800
801 - Updated it to use the `v2` API via `lemmy-js-client`, required changing nearly every component.
802 - Added a live comment count.
803 - Added drone deploying, and builds for ARM.
804 - Fixed community link wrapping.
805 - Various other bug fixes.
806
807
808 ### Lemmy Docs
809
810 - We moved documentation into a separate git repository, and support translation for the docs now!
811 - Moved our code of conduct into the documentation.
812
813 ## Upgrading
814
815 If you'd like to make a DB backup before upgrading, follow [this guide](https://join-lemmy.org/docs/en/administration/backup_and_restore.html).
816
817 - [Upgrade with manual Docker installation](https://join-lemmy.org/docs/en/administration/install_docker.html#updating)
818 - [Upgrade with Ansible installation](https://join-lemmy.org/docs/en/administration/install_ansible.html)
819
820 # Lemmy v0.8.0 Release (2020-10-16)
821
822 ## Changes
823
824 We've been working at warp speed since our `v0.7.0` release in June, adding over [870 commits](https://github.com/LemmyNet/lemmy/compare/v0.7.0...main) since then. :sweat: 
825
826 Here are some of the bigger changes:
827
828 ### LemmyNet projects
829
830 - Created [LemmyNet](https://github.com/LemmyNet), where all lemmy-related projects live.
831 - Split out the frontend into a separete repository, [lemmy-ui](https://github.com/LemmyNet/lemmy-ui)
832 - Created a [lemmy-js-client](https://github.com/LemmyNet/lemmy-js-client), for any js / typescript developers.
833 - Split out i18n [lemmy-translations](https://github.com/LemmyNet/lemmy-translations), that any app or site developers can import and use. Lemmy currently supports [~30 languages!](https://weblate.yerbamate.ml/projects/lemmy/lemmy/)
834
835 ### Lemmy Server
836
837 #### Federation
838
839 - The first **federation public beta release**, woohoo :fireworks: 
840 - All Lemmy functionality now works over ActivityPub (except turning remote users into mods/admins)
841 - Instance allowlist and blocklist
842 - Documentation for [admins](https://join-lemmy.org/docs/administration_federation.html) and [devs](https://join-lemmy.org/docs/contributing_federation_overview.html) on how federation works
843 - Upgraded to newest versions of @asonix activitypub libraries
844 - Full local federation setup for manual testing
845 - Automated testing for nearly every federation action
846 - Many additional security checks
847 - Lots and lots of refactoring
848 - Asynchronous sending of outgoing activities
849
850 ### User Interface
851
852 - Separated the UI from the server code, in [lemmy-ui](https://github.com/LemmyNet/lemmy-ui).
853 - The UI can now read with javascript disabled! 
854 - It's now a fully isomorphic application using [inferno-isomorphic](https://infernojs.org/docs/guides/isomorphic). This means that page loads are now much faster, as the server does the work.
855 - The UI now also supports open-graph and twitter cards! Linking to lemmy posts (from whatever platform you use) looks pretty now: ![](https://i.imgur.com/6TZ2v7s.png)
856 - Improved the search page ( more features incoming ).
857 - The default view is now `Local`, instead of `All`, since all would show all federated posts.
858 - User settings are now shared across browsers ( a page refresh will pick up changes ).
859 - A much leaner mobile view.
860
861 #### Backend
862
863 - Re-organized the rust codebase into separate workspaces for backend and frontend.
864 - Removed materialized views, making the database **a lot faster**.
865 - New post sorts `Active` (previously called hot), and `Hot`. Active shows posts with recent comments, hot shows highly ranked posts.
866 - New sort for `Local` ( meaning from local communities).
867 - Customizeable site, user, and community icons and banners.
868 - Added user preferred names / display names, bios, and cakedays.
869 - Visual / Audio captchas through the lemmy API.
870 - Lots of API field verifications.
871 - Upgraded to pictrs-v2 ( thanks to @asonix )
872 - Wayyy too many bugfixes to count.
873
874 ## Contributors
875
876 We'd also like to thank both the [NLnet foundation](https://nlnet.nl/) for their support in allowing us to work full-time on Lemmy ( as well as their support for [other important open-source projects](https://nlnet.nl/project/current.html) ), [those who sponsor us](https://lemmy.ml/sponsors), and those who [help translate Lemmy](https://weblate.yerbamate.ml/projects/lemmy/). Every little bit does help. We remain committed to never allowing advertisements, monetizing, or venture-capital in Lemmy; software should be communal, and should benefit humanity, not a small group of company owners. 
877
878 ## Upgrading
879
880 - [with manual Docker installation](https://join-lemmy.org/docs/administration_install_docker.html#updating)
881 - [with Ansible installation](https://join-lemmy.org/docs/administration_install_ansible.html)
882
883 ## Testing Federation
884
885 Federation is finally ready in Lemmy, pending possible bugs or other issues. So for now we suggest to enable federation only on test servers, or try it on our own test servers ( [enterprise](https://enterprise.lemmy.ml/), [ds9](https://ds9.lemmy.ml/), [voyager](https://voyager.lemmy.ml/) ).
886
887 If everything goes well, after a few weeks we will enable federation on lemmy.ml, at first with a limited number of trusted instances. We will also likely change the domain to https://lemmy.ml . Keep in mind that changing domains after turning on federation will break things.
888
889 To enable on your instance, edit your [lemmy.hjson](https://github.com/LemmyNet/lemmy/blob/main/config/defaults.hjson#L60) federation section to `enabled: true`, and restart.
890
891 ### Connecting to another server
892
893 The server https://ds9.lemmy.ml has open federation, so after either adding it to the `allowed_instances` list in your `config.hjson`, or if you have open federation, you don't need to add it explicitly.
894
895 To federate / connect with a server, type in `!community_name@server.tld`, in your server's search box [like so](https://voyager.lemmy.ml/search/q/!main%40ds9.lemmy.ml/type/All/sort/TopAll/page/1).
896
897 To connect with the `main` community on ds9, the search is `!main@ds9.lemmy.ml`.
898
899 You can then click the community, and you will see a local version of the community, which you can subscribe to. New posts and comments from `!main@ds9.lemmy.ml` will now show up on your front page, or `/c/All`
900
901 # Lemmy v0.7.40 Pre-Release (2020-08-05)
902
903 We've [added a lot](https://github.com/LemmyNet/lemmy/compare/v0.7.40...v0.7.0) in this pre-release:
904
905 - New post sorts `Active` (previously called hot), and `Hot`. Active shows posts with recent comments, hot shows highly ranked posts.
906 - Customizeable site icon and banner, user icon and banner, and community icon and banner.
907 - Added user preferred names / display names, bios, and cakedays.
908 - User settings are now shared across browsers (a page refresh will pick up changes).
909 - Visual / Audio captchas through the lemmy API.
910 - Lots of UI prettiness.
911 - Lots of bug fixes.
912 - Lots of additional translations.
913 - Lots of federation prepping / additions / refactors.
914
915 This release removes the need for you to have a pictrs nginx route (the requests are now routed through lemmy directly). Follow the upgrade instructions below to replace your nginx with the new one.
916
917 ## Upgrading
918
919 **With Ansible:**
920
921 ```
922 # run these commands locally
923 git pull
924 cd ansible
925 ansible-playbook lemmy.yml
926 ```
927
928 **With manual Docker installation:**
929 ```
930 # run these commands on your server
931 cd /lemmy
932 wget https://raw.githubusercontent.com/LemmyNet/lemmy/master/ansible/templates/nginx.conf
933 # Replace the {{ vars }}
934 sudo mv nginx.conf /etc/nginx/sites-enabled/lemmy.conf
935 sudo nginx -s reload
936 wget https://raw.githubusercontent.com/LemmyNet/lemmy/master/docker/prod/docker-compose.yml
937 sudo docker-compose up -d
938 ```
939
940
941 # Lemmy v0.7.0 Release (2020-06-23)
942
943 This release replaces [pictshare](https://github.com/HaschekSolutions/pictshare)
944 with [pict-rs](https://git.asonix.dog/asonix/pict-rs), which improves performance
945 and security.
946
947 Overall, since our last major release in January (v0.6.0), we have closed over
948 [100 issues!](https://github.com/LemmyNet/lemmy/milestone/16?closed=1)
949
950 - Site-wide list of recent comments
951 - Reconnecting websockets
952 - Many more themes, including a default light one.
953 - Expandable embeds for post links (and thumbnails), from
954 [iframely](https://github.com/itteco/iframely)
955 - Better icons
956 - Emoji autocomplete to post and message bodies, and an Emoji Picker
957 - Post body now searchable
958 - Community title and description is now searchable
959 - Simplified cross-posts
960 - Better documentation
961 - LOTS more languages
962 - Lots of bugs squashed
963 - And more ...
964
965 ## Upgrading
966
967 Before starting the upgrade, make sure that you have a working backup of your
968 database and image files. See our
969 [documentation](https://join-lemmy.org/docs/administration_backup_and_restore.html)
970 for backup instructions.
971
972 **With Ansible:**
973
974 ```
975 # deploy with ansible from your local lemmy git repo
976 git pull
977 cd ansible
978 ansible-playbook lemmy.yml
979 # connect via ssh to run the migration script
980 ssh your-server
981 cd /lemmy/
982 wget https://raw.githubusercontent.com/LemmyNet/lemmy/master/docker/prod/migrate-pictshare-to-pictrs.bash
983 chmod +x migrate-pictshare-to-pictrs.bash
984 sudo ./migrate-pictshare-to-pictrs.bash
985 ```
986
987 **With manual Docker installation:**
988 ```
989 # run these commands on your server
990 cd /lemmy
991 wget https://raw.githubusercontent.com/LemmyNet/lemmy/master/ansible/templates/nginx.conf
992 # Replace the {{ vars }}
993 sudo mv nginx.conf /etc/nginx/sites-enabled/lemmy.conf
994 sudo nginx -s reload
995 wget https://raw.githubusercontent.com/LemmyNet/lemmy/master/docker/prod/docker-compose.yml
996 wget https://raw.githubusercontent.com/LemmyNet/lemmy/master/docker/prod/migrate-pictshare-to-pictrs.bash
997 chmod +x migrate-pictshare-to-pictrs.bash
998 sudo bash migrate-pictshare-to-pictrs.bash
999 ```
1000
1001 **Note:** After upgrading, all users need to reload the page, then logout and
1002 login again, so that images are loaded correctly.
1003
1004 # Lemmy v0.6.0 Release (2020-01-16)
1005
1006 `v0.6.0` is here, and we've closed [41 issues!](https://github.com/LemmyNet/lemmy/milestone/15?closed=1) 
1007
1008 This is the biggest release by far:
1009
1010 - Avatars!
1011 - Optional Email notifications for username mentions, post and comment replies.
1012 - Ability to change your password and email address.
1013 - Can set a custom language.
1014 - Lemmy-wide settings to disable downvotes, and close registration.
1015 - A better documentation system, hosted in lemmy itself.
1016 - [Huge DB performance gains](https://github.com/LemmyNet/lemmy/issues/411) (everthing down to < `30ms`) by using materialized views. 
1017 - Fixed major issue with similar post URL and title searching.
1018 - Upgraded to Actix `2.0`
1019 - Faster comment / post voting.
1020 - Better small screen support.
1021 - Lots of bug fixes, refactoring of back end code.
1022
1023 Another major announcement is that Lemmy now has another lead developer besides me, [@felix@radical.town](https://radical.town/@felix). Theyve created a better documentation system, implemented RSS feeds, simplified docker and project configs, upgraded actix, working on federation, a whole lot else.
1024
1025 https://lemmy.ml