]> Untitled Git - lemmy.git/blob - RELEASES.md
Adding v0.12.0 release notes.
[lemmy.git] / RELEASES.md
1 # Lemmy v0.12.0 Release (2021-09-03)
2
3 ## Changes
4
5 Since our last release in April, we've had [~80](https://github.com/LemmyNet/lemmy/compare/0.11.0...main) commits to Lemmy.
6
7 ### Lemmy Server
8
9 #### Major Changes
10
11 *Note: Issue links are below.*
12
13 - @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.
14 - You can now block users and communities, and their posts / comments won't show up in your feed.
15 - Removed IFramely: Lemmy can now fetch site metadata on its own.
16 - New API docs at: https://join-lemmy.org/api
17
18 #### General
19
20 - Fix prod deploy script and clippy ([#1724](https://github.com/LemmyNet/lemmy/issues/1724))
21 - Fix image uploads. Fixes [#1725](https://github.com/LemmyNet/lemmy/issues/1725) ([#1734](https://github.com/LemmyNet/lemmy/issues/1734))
22 - Adding more site setup vars. Fixes [#678](https://github.com/LemmyNet/lemmy/issues/678) ([#1718](https://github.com/LemmyNet/lemmy/issues/1718))
23 - Dont append ? to url when cleaning it ([#1716](https://github.com/LemmyNet/lemmy/issues/1716))
24 - User / community blocking. Fixes [#426](https://github.com/LemmyNet/lemmy/issues/426) ([#1604](https://github.com/LemmyNet/lemmy/issues/1604))
25 - Swap out iframely ([#1706](https://github.com/LemmyNet/lemmy/issues/1706))
26 - Adding ModTransferCommunity to modlog in API. Fixes [#1437](https://github.com/LemmyNet/lemmy/issues/1437)
27 - Make sure bots aren't included in aggregate counts ([#1705](https://github.com/LemmyNet/lemmy/issues/1705))
28 - 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))
29 - When banning a user, remove communities they've created ([#1700](https://github.com/LemmyNet/lemmy/issues/1700))
30 - Distribute Lemmy via crates.io
31 - Simplify config using macros ([#1686](https://github.com/LemmyNet/lemmy/issues/1686))
32 - Simplify lemmy_context() function (dont return errors)
33 - 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))
34 - Add show_new_posts_notifs setting. Fixes [#1664](https://github.com/LemmyNet/lemmy/issues/1664) ([#1665](https://github.com/LemmyNet/lemmy/issues/1665))
35 - Adding shortname fetching for users and communities. Fixes [#1662](https://github.com/LemmyNet/lemmy/issues/1662) ([#1663](https://github.com/LemmyNet/lemmy/issues/1663))
36 - Upgrading deps, running clippy fix on nightly 1.55.0 ([#1638](https://github.com/LemmyNet/lemmy/issues/1638))
37 - Running clippy --fix ([#1647](https://github.com/LemmyNet/lemmy/issues/1647))
38 - Make captcha case-insensitive
39 - Remove tracking params from post url (fixes [#768](https://github.com/LemmyNet/lemmy/issues/768))
40 - Fix IPv6 port setup for Nginx ([#1636](https://github.com/LemmyNet/lemmy/issues/1636))
41 - Fix --cert-name for certbot. ([#1631](https://github.com/LemmyNet/lemmy/issues/1631))
42 - Change join.lemmy.ml to join-lemmy.org ([#1628](https://github.com/LemmyNet/lemmy/issues/1628))
43 - Upgrade pictrs. Fixes [#1599](https://github.com/LemmyNet/lemmy/issues/1599) ([#1600](https://github.com/LemmyNet/lemmy/issues/1600))
44 - Invalidate current logins on account deletion. Fixes [#1602](https://github.com/LemmyNet/lemmy/issues/1602) ([#1603](https://github.com/LemmyNet/lemmy/issues/1603))
45 - Upgrading api test deps ([#1608](https://github.com/LemmyNet/lemmy/issues/1608))
46 - 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))
47 - Add additional slurs configuration option. Closes [#1464](https://github.com/LemmyNet/lemmy/issues/1464). ([#1612](https://github.com/LemmyNet/lemmy/issues/1612))
48 - Updating to rust 1.51.0 ([#1598](https://github.com/LemmyNet/lemmy/issues/1598))
49 - Remove brotli, zstd dependencies for faster compilation
50
51 #### API
52
53 - 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) .
54
55 #### Federation
56
57 - Move resolving of activitypub objects to separate api endpoint (fixes #1584)
58 - Rewrite remaining activities ([#1712](https://github.com/LemmyNet/lemmy/issues/1712))
59 - Migrate comment inReplyTo field to single value (ref [#1454](https://github.com/LemmyNet/lemmy/issues/1454))
60 - Fix issue with protocol string in actor id generation ([#1668](https://github.com/LemmyNet/lemmy/issues/1668))
61
62
63 ### Lemmy UI
64
65 - Integrating resolve_user into search. ([#377](https://github.com/LemmyNet/lemmy-ui/issues/377))
66 - Add lazy loading of images. Fixes [#329](https://github.com/LemmyNet/lemmy-ui/issues/329) ([#379](https://github.com/LemmyNet/lemmy-ui/issues/379))
67 - Adding vi, sk, mnc, and cy languages. ([#378](https://github.com/LemmyNet/lemmy-ui/issues/378))
68 - Feature/user community block ([#362](https://github.com/LemmyNet/lemmy-ui/issues/362))
69 - Swapping out iframely. ([#374](https://github.com/LemmyNet/lemmy-ui/issues/374))
70 - Adding mod transfer community ([#373](https://github.com/LemmyNet/lemmy-ui/issues/373))
71 - Remove content more ([#372](https://github.com/LemmyNet/lemmy-ui/issues/372))
72 - Scroll to comments on post's x comments button ([#312](https://github.com/LemmyNet/lemmy-ui/issues/312))
73 - Remove websocket connection messages. Fixes [#355](https://github.com/LemmyNet/lemmy-ui/issues/355)
74 - Center spinner, make smaller. Fixes [#203](https://github.com/LemmyNet/lemmy-ui/issues/203)
75 - Fix font issues. Fixes [#354](https://github.com/LemmyNet/lemmy-ui/issues/354)
76 - 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))
77 - 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))
78 - Fix captcha replay bug. Fixes [#348](https://github.com/LemmyNet/lemmy-ui/issues/348) ([#349](https://github.com/LemmyNet/lemmy-ui/issues/349))
79 - 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))
80 - Don't use default subscribed for communities page.
81 - 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))
82 - Fix language bug on mobile browsers
83 - Collapse sidebar on mobile. Fixes [#335](https://github.com/LemmyNet/lemmy-ui/issues/335) ([#340](https://github.com/LemmyNet/lemmy-ui/issues/340))
84 - Re-organized components folder. ([#339](https://github.com/LemmyNet/lemmy-ui/issues/339))
85 - Fixing too many large spinners ([#337](https://github.com/LemmyNet/lemmy-ui/issues/337))
86 - Moving comment link to top bar. Fixes #307 ([#336](https://github.com/LemmyNet/lemmy-ui/issues/336))
87 - Fix/ws error messages ([#334](https://github.com/LemmyNet/lemmy-ui/issues/334))
88 - Make spinner bigger. Fixes [#203](https://github.com/LemmyNet/lemmy-ui/issues/203)
89 - Fix preview description html. Fixes [#110](https://github.com/LemmyNet/lemmy-ui/issues/110)
90 - Always show previous paginator, extract paginator component.
91 - Use better comment collapse icon, and add text. Fixes [#318](https://github.com/LemmyNet/lemmy-ui/issues/318)
92 - Fix symbols issue. Fixes [#319](https://github.com/LemmyNet/lemmy-ui/issues/319)
93 - Don't restore scroll position on page refresh. Fixes [#186](https://github.com/LemmyNet/lemmy-ui/issues/186)
94 - Insert triple backticks for 'code' button when multiple lines are selected. ([#311](https://github.com/LemmyNet/lemmy-ui/issues/311))
95 - Change join.lemmy-ui.ml to join-lemmy-ui.org
96 - Adding a comment here placeholder. Fixes [#301](https://github.com/LemmyNet/lemmy-ui/issues/301)
97 - Fix non-local community and person links. Fixes [#290](https://github.com/LemmyNet/lemmy-ui/issues/290)
98 - Fix navbar bug. Fixes [#289](https://github.com/LemmyNet/lemmy-ui/issues/289)
99 - Hide names of mods / admins without priveleges. Fixes [#285](https://github.com/LemmyNet/lemmy-ui/issues/285)
100 - Adding URL search type. Fixes [#286](https://github.com/LemmyNet/lemmy-ui/issues/286)
101 - Add a link to joinlemmy-ui on lemmy-ui.ml signup. Fixes [#235](https://github.com/LemmyNet/lemmy-ui/issues/235)
102 - Fix duped site description. Fixes [#281](https://github.com/LemmyNet/lemmy-ui/issues/281)
103
104 ## Upgrade notes
105
106 ### Servers
107
108 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).
109
110 To upgrade your instance to `v0.12.0`, simply follow the instructions in the documentation:
111
112 - [Upgrade with manual Docker installation](https://join.lemmy.ml/docs/en/administration/install_docker.html#updating)
113 - [Upgrade with Ansible installation](https://join.lemmy.ml/docs/en/administration/install_ansible.html)
114
115 ### Clients / Apps
116
117 - 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) .
118
119 # Lemmy v0.11.3 Release (2021-07-30)
120
121 ## Changes
122
123 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.
124
125 ### Lemmy Server
126
127 - Blank out extra info for deleted or removed content. Fixes [#1679](https://github.com/LemmyNet/Lemmy/issues/1679) 
128 - Add show_new_posts_notifs setting. Fixes [#1664](https://github.com/LemmyNet/Lemmy/issues/1664)
129 - Fix issue with protocol string in actor id generation [#1668](https://github.com/LemmyNet/Lemmy/issues/1668)
130 - Adding shortname fetching for users and communities. Fixes [#1662](https://github.com/LemmyNet/Lemmy/issues/1662)
131 - Make captcha case-insensitive.
132 - Remove tracking params from post url (fixes [#768](https://github.com/LemmyNet/Lemmy/issues/768))
133 - Upgrade pictrs. Fixes [#1599](https://github.com/LemmyNet/Lemmy/issues/1599)
134 - Invalidate current logins on account deletion. Fixes [#1602](https://github.com/LemmyNet/Lemmy/issues/1602)
135 - Fix nsfw posts showing for non-logged in users. Fixes [#1614](https://github.com/LemmyNet/Lemmy/issues/1614)
136 - Add additional slurs configuration option. Closes [#1464](https://github.com/LemmyNet/Lemmy/issues/1464).
137 - Updating to rust 1.51.0
138
139 ### Lemmy UI
140
141 - Have setting to disable notifs for new posts. Fixes [#132](https://github.com/LemmyNet/lemmy-ui/issues/132)
142 - Remove max length constraints on actors. Fixes [#350](https://github.com/LemmyNet/lemmy-ui/issues/350)
143 - Fix captcha replay bug. Fixes [#348](https://github.com/LemmyNet/lemmy-ui/issues/348)
144 - Removing community and user routes in favor of shortnames. Fixes [#317](https://github.com/LemmyNet/lemmy-ui/issues/317)
145 - Add front end helpers 1 [(#346](https://github.com/LemmyNet/lemmy-ui/issues/346))
146 - Don't use default subscribed for communities page.
147 - Adding Listing type to communities page, default local. [#190](https://github.com/LemmyNet/lemmy-ui/issues/190)
148 - Fix language bug on mobile browsers.
149 - Collapse sidebar on mobile. Fixes [#335](https://github.com/LemmyNet/lemmy-ui/issues/335)
150 - Re-organized components folder. [(#339](https://github.com/LemmyNet/lemmy-ui/issues/339))
151 - Moving comment link to top bar. Fixes [#307](https://github.com/LemmyNet/lemmy-ui/issues/307)
152 - Make spinner bigger. Fixes [#203](https://github.com/LemmyNet/lemmy-ui/issues/203)
153 - Fix preview description html. Fixes [#110](https://github.com/LemmyNet/lemmy-ui/issues/110)
154 - Update darkly, make danger darker. Fixes [#16](https://github.com/LemmyNet/lemmy-ui/issues/16)
155 - Always show previous paginator, extract paginator component.
156 - Use better comment collapse icon, and add text. Fixes [#318](https://github.com/LemmyNet/lemmy-ui/issues/318)
157 - Fix symbols issue. Fixes [#319](https://github.com/LemmyNet/lemmy-ui/issues/319)
158 - Don't restore scroll position on page refresh. Fixes [#186](https://github.com/LemmyNet/lemmy-ui/issues/186)
159 - Insert triple backticks for 'code' button when multiple lines are selected. [(#311](https://github.com/LemmyNet/lemmy-ui/issues/311))
160 - Adding a comment here placeholder. Fixes [#301](https://github.com/LemmyNet/lemmy-ui/issues/301)
161 - Fix non-local community and person links. Fixes [#290](https://github.com/LemmyNet/lemmy-ui/issues/290)
162 - Fix navbar bug. Fixes [#289](https://github.com/LemmyNet/lemmy-ui/issues/289)
163 - Hide names of mods / admins without priveleges. Fixes [#285](https://github.com/LemmyNet/lemmy-ui/issues/285)
164 - Adding URL search type. Fixes [#286](https://github.com/LemmyNet/lemmy-ui/issues/286)
165 - Add a link to joinlemmy on lemmy.ml signup. Fixes [#235](https://github.com/LemmyNet/lemmy-ui/issues/235)
166 - Fix duped site description. Fixes [#281](https://github.com/LemmyNet/lemmy-ui/issues/281)
167
168 ### API
169
170 - Added `show_new_posts_notifs` boolean to `SaveUserSettings`, and `LocalUserSettings`.
171 - 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) .
172
173 ### Federation
174
175 - No changes in this release, but there will be many soon.
176
177 ## Upgrade notes
178
179 To upgrade your instance to `0.11.3`, simply follow the instructions in the documentation:
180
181 - [Upgrade with manual Docker installation](https://join-lemmy.org/docs/en/administration/install_docker.html#updating)
182 - [Upgrade with Ansible installation](https://join-lemmy.org/docs/en/administration/install_ansible.html)
183
184 # Lemmy v0.11.0 Release (2021-04-27)
185
186 ## Changes
187
188 Since our last release this month, we've had [~60](https://github.com/LemmyNet/lemmy/compare/0.10.0...main) commits to Lemmy.
189
190 ### Lemmy Server
191
192 #### Major Changes
193
194 - Add option to disable strict allowlist ( [#1486](https://github.com/LemmyNet/lemmy/issues/1486)) [documentation](https://join-lemmy.org/docs/en/federation/administration.html) 
195 - Add option to limit community creation to admins only ([#1587](https://github.com/LemmyNet/lemmy/issues/1587))
196 - Many search improvements:
197   - Don't search for communities or users when the id is included.
198   - Add creator id to search.
199
200 #### General
201
202 - Adding a user setting to show / hide scores. Fixes [#1503](https://github.com/LemmyNet/lemmy/issues/1503)
203 - Add option to hide read posts. Fixes [#1561](https://github.com/LemmyNet/lemmy/issues/1561)
204 - Mark accounts as bot, and hide bot posts/comments
205 - Adding a short site description, to be used for joinlemmy instance list
206 - Adding matrix id validation. Fixes [#1520](https://github.com/LemmyNet/lemmy/issues/1520)
207 - Adding users active monthly for community sort. Fixes [#1527](https://github.com/LemmyNet/lemmy/issues/1527)
208 - Don't allow zero-space char in display name. Fixes [#1317](https://github.com/LemmyNet/lemmy/issues/1317)
209 - Adding more rust captcha features. Fixes [#1248](https://github.com/LemmyNet/lemmy/issues/1248)
210 - Fixing slur filter regex. Fixes [#1593](https://github.com/LemmyNet/lemmy/issues/1593)
211
212 #### API
213
214 - Added `ChangePassword` as a separate endpoint from `SaveUserSettings`
215 - No other breaking changes, but many fields that were previously required are now optional.
216 - 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) .
217
218 #### Federation
219
220 - Implement federated bans fixes [#1298](https://github.com/LemmyNet/lemmy/issues/1298)
221 - Remote mods can update/delete/undelete communities.
222
223 ### Lemmy UI
224
225 - Updating translations.
226 - Add UI version to UI via docker. Fixes [#263](https://github.com/LemmyNet/lemmy-ui/issues/263)
227 - Add Korean language
228 - Add check for unused languages in update_translations.sh
229 - Validate matrix id on the front end. Fixes [#245](https://github.com/LemmyNet/lemmy-ui/issues/245)
230 - Communities page sorts by monthly active users. Fixes [#244](https://github.com/LemmyNet/lemmy-ui/issues/244)
231 - Correctly render HTML in popup notifications
232 - Fix html notif bug. Fixes [#254](https://github.com/LemmyNet/lemmy-ui/issues/254)
233 - Fixing issue with debounce. Fixes [#236](https://github.com/LemmyNet/lemmy-ui/issues/236)
234
235 ## Upgrade notes
236
237 ### Servers
238
239 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).
240
241 To upgrade your instance to `v0.10.0`, simply follow the instructions in the documentation:
242
243 - [Upgrade with manual Docker installation](https://join-lemmy.org/docs/en/administration/install_docker.html#updating)
244 - [Upgrade with Ansible installation](https://join-lemmy.org/docs/en/administration/install_ansible.html)
245
246 ### Clients / Apps
247
248 - 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) .
249
250 # Lemmy v0.10.3 Release (2021-04-07)
251
252 - Fixing instances page.
253 - Fixed unban not working.
254 - Fixed post title fetching and cross-post search.
255 - Fixed navigating to a user page.
256
257 # Lemmy v0.10.2 Release (2021-04-05)
258
259 - Forcing a crash if config.hjson fails to load. Should show errors easier.
260
261 # Lemmy v0.10.0 Release (2021-04-05)
262
263 ## Changes
264
265 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.
266
267 ### Lemmy Server
268
269 #### General
270
271 - Rewrote config implementation, finally allowing us to use newer Rust versions.
272 - Removed categories. 
273 - Various refactors.
274
275 #### API
276
277 - 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) .
278 - Login invalidation on password change, thanks to @Mart-Bogdan
279
280 #### Federation
281
282 - It is now possible to add users from other instances as community mods.
283 - Federating Matrix ID.
284 - Many changes for better compatibility with ActivityPub standard.
285
286 #### Database 
287
288 - Split the `user_` into `person` and `local_user` tables.
289 - Strictly typed commonly used ID columns, to prevent DB errors using `i32` as ids.
290 - Strictly typed URL fields, thanks to ajyoon.
291 - Created default DB forms, now used in all the unit tests.
292
293 ### Lemmy UI
294
295 - Now using utf-8 emojis.
296 - Support for all the above changes to Lemmy.
297 - Typescript-safe i18n strings, thanks to @shilangyu.
298 - Added expandable post text (click on open book icon).
299 - Prettier cross-posting, which does smart quoting.
300 - Bugfixes for restoring scroll position on post page, custom site favicons, and autocomplete for login fields.
301
302 ### Lemmy Docs
303
304 - Gazconroy built an [Async API spec for Lemmy](https://join-lemmy.org/api/index.html), that now serves as our main API docs.
305
306 ### join-lemmy.org
307
308 - Rewrote in inferno isomorphic, added i18n support via [weblate](https://weblate.yerbamate.ml/projects/lemmy/joinlemmy/).
309 - Added a section on the support page thanking contributors.
310 - Changed some page urls / titles
311
312 ## Upgrade notes
313
314 **Important**: there are multiple breaking changes:
315
316 - 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` ).
317 - The config format for `allowed_instances` and `blocked_instances` has changed, and you need to adjust your config file manually:
318     - before: `allowed_instances: ds9.lemmy.ml,enterprise.lemmy.ml`
319     - now: `allowed_instances: ["ds9.lemmy.ml", "enterprise.lemmy.ml"]` , and only one of the `allowed_instances` or `blocked_instances` blocks can be set.
320 - 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) .
321
322 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).
323
324 To upgrade your instance to `v0.10.0`, simply follow the instructions in the documentation:
325
326 - [Upgrade with manual Docker installation](https://join-lemmy.org/docs/en/administration/install_docker.html#updating)
327 - [Upgrade with Ansible installation](https://join-lemmy.org/docs/en/administration/install_ansible.html)
328
329
330 ## Compilation time
331
332 || v0.9.0 (Rust 1.47) | v0.10.0 (Rust 1.47) | v0.10.0 (Rust 1.51) |
333 |-| -------- | -------- | -------- |
334 |Clean | 140s     | 146s     | 119s     |
335 | Incremental | 28s | 22s | 19s |
336
337 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%).
338
339 v0.9.0 build graph:
340 ![](https://lemmy.ml/pictrs/image/GVBqFnrLqG.jpg)
341
342 v0.10.0 build graph:
343 ![](https://lemmy.ml/pictrs/image/NllzjVEyNK.jpg)
344
345 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.
346
347 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.
348
349 # Lemmy v0.9.9 Release (2021-02-19)
350
351 ## Changes
352
353 ### Lemmy backend
354 - Added an federated activity query sorting order.
355 - Explicitly marking posts and comments as public.
356 - Added a `NewComment` / forum sort for posts.
357 - Fixed an issue with not setting correct published time for fetched posts.
358 - Fixed an issue with an open docker port on lemmy-ui.
359 - Using lemmy post link for RSS link.
360 - Fixed reason and display name lengths to use char counts instead.
361
362 ### Lemmy-ui
363
364 - Updated translations.
365 - Made websocket host configurable.
366 - Added some accessibility features.
367 - Always showing password reset link.
368
369 # Lemmy v0.9.7 Release (2021-02-08)
370
371 ## Changes
372
373 - Posts and comments are no longer live-sorted (meaning most content should stay in place).
374 - Fixed an issue with the create post title field not expanding when copied from iframely suggestion.
375 - Fixed broken federated community paging / sorting.
376 - Added aria attributes for accessibility, thx to @Mitch Lillie.
377 - Updated translations and added croatian.
378 - No changes to lemmy back-end.
379
380 # Lemmy v0.9.6 Release (2021-02-05)
381
382 ## Changes
383
384 - Fixed inbox_urls not being correctly set, which broke federation in `v0.9.5`. Added some logging to catch these.
385 - Fixing community search not using auth.
386 - Moved docs to https://join-lemmy.org
387 - Fixed an issue w/ lemmy-ui with forms being cleared out.
388
389 # Lemmy v0.9.4 Pre-Release (2021-02-02)
390
391 ## Changes
392
393 ### Lemmy
394
395 - Fixed a critical bug with votes and comment unlike responses not being `0` for your user.
396 - Fixed a critical bug with comment creation not checking if its parent comment is in the post.
397 - Serving proper activities for community outbox.
398 - 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)
399 - Made sure banned users can't follow.
400 - Added `FederatedInstances` to `SiteResponse`, to show allowed and blocked instances. (Also added to lemmy-ui)
401 - Added a `MostComments` sort for posts. (Also added to lemmy-ui)
402
403 ### Lemmy-UI
404
405 - Added a scroll position restore to lemmy-ui.
406 - Reworked the combined inbox so incoming comments don't wipe out your current form.
407 - Fixed an updated bug on the user page.
408 - Fixed cross-post titles and body getting clipped.
409 - Fixing the post creation title height.
410 - Squashed some other smaller bugs.
411
412 # Lemmy v0.9.0 Release (2021-01-25)
413
414 ## Changes
415
416 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.
417
418 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).
419
420 We've also seen the first release of [Lemmur](https://github.com/krawieck/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.
421
422 ## LemmyNet projects
423
424 ### Lemmy Server
425
426 - [Moved views from SQL to Diesel](https://github.com/LemmyNet/lemmy/issues/1275). This was a spinal replacement for much of lemmy.
427   - Removed all the old fast_tables and triggers, and created new aggregates tables.
428 - Added a `v2` of the API to support the hierarchical objects created from the above changes.
429 - 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)
430 - Split out documentation into git submodule.
431 - Shortened slur filter to avoid false positives.
432 - Added query performance testing and comparisons. Added indexes to make sure every query is `< 30 ms`.
433 - Added compilation time testing.
434
435 ### Federation
436
437 This release includes some bug fixes for federation, and some changes to get us closer to compliance with the ActivityPub standard.
438
439 - [Community bans now federating](https://github.com/LemmyNet/lemmy/issues/1287).
440 - [Local posts sometimes got marked as remote](https://github.com/LemmyNet/lemmy/issues/1302).
441 - [Creator of post/comment was not notified about new child comments](https://github.com/LemmyNet/lemmy/issues/1325).
442 - [Community deletion now federated](https://github.com/LemmyNet/lemmy/issues/1256).
443
444 None of these are breaking changes, so federation between 0.9.0 and 0.8.11 will work without problems.
445
446 ### Lemmy javascript / typescript client
447
448 - 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.
449 - Drone now handles publishing its [npm packages.](https://www.npmjs.com/package/lemmy-js-client)
450
451 ### Lemmy-UI
452
453 - Updated it to use the `v2` API via `lemmy-js-client`, required changing nearly every component.
454 - Added a live comment count.
455 - Added drone deploying, and builds for ARM.
456 - Fixed community link wrapping.
457 - Various other bug fixes.
458
459
460 ### Lemmy Docs
461
462 - We moved documentation into a separate git repository, and support translation for the docs now!
463 - Moved our code of conduct into the documentation.
464
465 ## Upgrading
466
467 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).
468
469 - [Upgrade with manual Docker installation](https://join-lemmy.org/docs/en/administration/install_docker.html#updating)
470 - [Upgrade with Ansible installation](https://join-lemmy.org/docs/en/administration/install_ansible.html)
471
472 # Lemmy v0.8.0 Release (2020-10-16)
473
474 ## Changes
475
476 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: 
477
478 Here are some of the bigger changes:
479
480 ### LemmyNet projects
481
482 - Created [LemmyNet](https://github.com/LemmyNet), where all lemmy-related projects live.
483 - Split out the frontend into a separete repository, [lemmy-ui](https://github.com/LemmyNet/lemmy-ui)
484 - Created a [lemmy-js-client](https://github.com/LemmyNet/lemmy-js-client), for any js / typescript developers.
485 - 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/)
486
487 ### Lemmy Server
488
489 #### Federation
490
491 - The first **federation public beta release**, woohoo :fireworks: 
492 - All Lemmy functionality now works over ActivityPub (except turning remote users into mods/admins)
493 - Instance allowlist and blocklist
494 - 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
495 - Upgraded to newest versions of @asonix activitypub libraries
496 - Full local federation setup for manual testing
497 - Automated testing for nearly every federation action
498 - Many additional security checks
499 - Lots and lots of refactoring
500 - Asynchronous sending of outgoing activities
501
502 ### User Interface
503
504 - Separated the UI from the server code, in [lemmy-ui](https://github.com/LemmyNet/lemmy-ui).
505 - The UI can now read with javascript disabled! 
506 - 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.
507 - 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)
508 - Improved the search page ( more features incoming ).
509 - The default view is now `Local`, instead of `All`, since all would show all federated posts.
510 - User settings are now shared across browsers ( a page refresh will pick up changes ).
511 - A much leaner mobile view.
512
513 #### Backend
514
515 - Re-organized the rust codebase into separate workspaces for backend and frontend.
516 - Removed materialized views, making the database **a lot faster**.
517 - New post sorts `Active` (previously called hot), and `Hot`. Active shows posts with recent comments, hot shows highly ranked posts.
518 - New sort for `Local` ( meaning from local communities).
519 - Customizeable site, user, and community icons and banners.
520 - Added user preferred names / display names, bios, and cakedays.
521 - Visual / Audio captchas through the lemmy API.
522 - Lots of API field verifications.
523 - Upgraded to pictrs-v2 ( thanks to @asonix )
524 - Wayyy too many bugfixes to count.
525
526 ## Contributors
527
528 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. 
529
530 ## Upgrading
531
532 - [with manual Docker installation](https://join-lemmy.org/docs/administration_install_docker.html#updating)
533 - [with Ansible installation](https://join-lemmy.org/docs/administration_install_ansible.html)
534
535 ## Testing Federation
536
537 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/) ).
538
539 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.
540
541 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.
542
543 ### Connecting to another server
544
545 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.
546
547 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).
548
549 To connect with the `main` community on ds9, the search is `!main@ds9.lemmy.ml`.
550
551 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`
552
553 # Lemmy v0.7.40 Pre-Release (2020-08-05)
554
555 We've [added a lot](https://github.com/LemmyNet/lemmy/compare/v0.7.40...v0.7.0) in this pre-release:
556
557 - New post sorts `Active` (previously called hot), and `Hot`. Active shows posts with recent comments, hot shows highly ranked posts.
558 - Customizeable site icon and banner, user icon and banner, and community icon and banner.
559 - Added user preferred names / display names, bios, and cakedays.
560 - User settings are now shared across browsers (a page refresh will pick up changes).
561 - Visual / Audio captchas through the lemmy API.
562 - Lots of UI prettiness.
563 - Lots of bug fixes.
564 - Lots of additional translations.
565 - Lots of federation prepping / additions / refactors.
566
567 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.
568
569 ## Upgrading
570
571 **With Ansible:**
572
573 ```
574 # run these commands locally
575 git pull
576 cd ansible
577 ansible-playbook lemmy.yml
578 ```
579
580 **With manual Docker installation:**
581 ```
582 # run these commands on your server
583 cd /lemmy
584 wget https://raw.githubusercontent.com/LemmyNet/lemmy/master/ansible/templates/nginx.conf
585 # Replace the {{ vars }}
586 sudo mv nginx.conf /etc/nginx/sites-enabled/lemmy.conf
587 sudo nginx -s reload
588 wget https://raw.githubusercontent.com/LemmyNet/lemmy/master/docker/prod/docker-compose.yml
589 sudo docker-compose up -d
590 ```
591
592
593 # Lemmy v0.7.0 Release (2020-06-23)
594
595 This release replaces [pictshare](https://github.com/HaschekSolutions/pictshare)
596 with [pict-rs](https://git.asonix.dog/asonix/pict-rs), which improves performance
597 and security.
598
599 Overall, since our last major release in January (v0.6.0), we have closed over
600 [100 issues!](https://github.com/LemmyNet/lemmy/milestone/16?closed=1)
601
602 - Site-wide list of recent comments
603 - Reconnecting websockets
604 - Many more themes, including a default light one.
605 - Expandable embeds for post links (and thumbnails), from
606 [iframely](https://github.com/itteco/iframely)
607 - Better icons
608 - Emoji autocomplete to post and message bodies, and an Emoji Picker
609 - Post body now searchable
610 - Community title and description is now searchable
611 - Simplified cross-posts
612 - Better documentation
613 - LOTS more languages
614 - Lots of bugs squashed
615 - And more ...
616
617 ## Upgrading
618
619 Before starting the upgrade, make sure that you have a working backup of your
620 database and image files. See our
621 [documentation](https://join-lemmy.org/docs/administration_backup_and_restore.html)
622 for backup instructions.
623
624 **With Ansible:**
625
626 ```
627 # deploy with ansible from your local lemmy git repo
628 git pull
629 cd ansible
630 ansible-playbook lemmy.yml
631 # connect via ssh to run the migration script
632 ssh your-server
633 cd /lemmy/
634 wget https://raw.githubusercontent.com/LemmyNet/lemmy/master/docker/prod/migrate-pictshare-to-pictrs.bash
635 chmod +x migrate-pictshare-to-pictrs.bash
636 sudo ./migrate-pictshare-to-pictrs.bash
637 ```
638
639 **With manual Docker installation:**
640 ```
641 # run these commands on your server
642 cd /lemmy
643 wget https://raw.githubusercontent.com/LemmyNet/lemmy/master/ansible/templates/nginx.conf
644 # Replace the {{ vars }}
645 sudo mv nginx.conf /etc/nginx/sites-enabled/lemmy.conf
646 sudo nginx -s reload
647 wget https://raw.githubusercontent.com/LemmyNet/lemmy/master/docker/prod/docker-compose.yml
648 wget https://raw.githubusercontent.com/LemmyNet/lemmy/master/docker/prod/migrate-pictshare-to-pictrs.bash
649 chmod +x migrate-pictshare-to-pictrs.bash
650 sudo bash migrate-pictshare-to-pictrs.bash
651 ```
652
653 **Note:** After upgrading, all users need to reload the page, then logout and
654 login again, so that images are loaded correctly.
655
656 # Lemmy v0.6.0 Release (2020-01-16)
657
658 `v0.6.0` is here, and we've closed [41 issues!](https://github.com/LemmyNet/lemmy/milestone/15?closed=1) 
659
660 This is the biggest release by far:
661
662 - Avatars!
663 - Optional Email notifications for username mentions, post and comment replies.
664 - Ability to change your password and email address.
665 - Can set a custom language.
666 - Lemmy-wide settings to disable downvotes, and close registration.
667 - A better documentation system, hosted in lemmy itself.
668 - [Huge DB performance gains](https://github.com/LemmyNet/lemmy/issues/411) (everthing down to < `30ms`) by using materialized views. 
669 - Fixed major issue with similar post URL and title searching.
670 - Upgraded to Actix `2.0`
671 - Faster comment / post voting.
672 - Better small screen support.
673 - Lots of bug fixes, refactoring of back end code.
674
675 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.
676
677 https://lemmy.ml