]> Untitled Git - lemmy.git/blob - RELEASES.md
Change join.lemmy.ml to join-lemmy.org (#1628)
[lemmy.git] / RELEASES.md
1 # Lemmy v0.11.0 Release (2021-04-27)
2
3 ## Changes
4
5 Since our last release this month, we've had [~60](https://github.com/LemmyNet/lemmy/compare/0.10.0...main) commits to Lemmy.
6
7 ### Lemmy Server
8
9 #### Major Changes
10
11 - Add option to disable strict allowlist ( [#1486](https://github.com/LemmyNet/lemmy/issues/1486)) [documentation](https://join-lemmy.org/docs/en/federation/administration.html) 
12 - Add option to limit community creation to admins only ([#1587](https://github.com/LemmyNet/lemmy/issues/1587))
13 - Many search improvements:
14   - Don't search for communities or users when the id is included.
15   - Add creator id to search.
16
17 #### General
18
19 - Adding a user setting to show / hide scores. Fixes [#1503](https://github.com/LemmyNet/lemmy/issues/1503)
20 - Add option to hide read posts. Fixes [#1561](https://github.com/LemmyNet/lemmy/issues/1561)
21 - Mark accounts as bot, and hide bot posts/comments
22 - Adding a short site description, to be used for joinlemmy instance list
23 - Adding matrix id validation. Fixes [#1520](https://github.com/LemmyNet/lemmy/issues/1520)
24 - Adding users active monthly for community sort. Fixes [#1527](https://github.com/LemmyNet/lemmy/issues/1527)
25 - Don't allow zero-space char in display name. Fixes [#1317](https://github.com/LemmyNet/lemmy/issues/1317)
26 - Adding more rust captcha features. Fixes [#1248](https://github.com/LemmyNet/lemmy/issues/1248)
27 - Fixing slur filter regex. Fixes [#1593](https://github.com/LemmyNet/lemmy/issues/1593)
28
29 #### API
30
31 - Added `ChangePassword` as a separate endpoint from `SaveUserSettings`
32 - No other breaking changes, but many fields that were previously required are now optional.
33 - 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) .
34
35 #### Federation
36
37 - Implement federated bans fixes [#1298](https://github.com/LemmyNet/lemmy/issues/1298)
38 - Remote mods can update/delete/undelete communities.
39
40 ### Lemmy UI
41
42 - Updating translations.
43 - Add UI version to UI via docker. Fixes [#263](https://github.com/LemmyNet/lemmy-ui/issues/263)
44 - Add Korean language
45 - Add check for unused languages in update_translations.sh
46 - Validate matrix id on the front end. Fixes [#245](https://github.com/LemmyNet/lemmy-ui/issues/245)
47 - Communities page sorts by monthly active users. Fixes [#244](https://github.com/LemmyNet/lemmy-ui/issues/244)
48 - Correctly render HTML in popup notifications
49 - Fix html notif bug. Fixes [#254](https://github.com/LemmyNet/lemmy-ui/issues/254)
50 - Fixing issue with debounce. Fixes [#236](https://github.com/LemmyNet/lemmy-ui/issues/236)
51
52
53 ## Upgrade notes
54
55 ### Servers
56
57 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).
58
59 To upgrade your instance to `v0.10.0`, simply follow the instructions in the documentation:
60
61 - [Upgrade with manual Docker installation](https://join-lemmy.org/docs/en/administration/install_docker.html#updating)
62 - [Upgrade with Ansible installation](https://join-lemmy.org/docs/en/administration/install_ansible.html)
63
64 ### Clients / Apps
65
66 - 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) .
67
68 # Lemmy v0.10.3 Release (2021-04-07)
69
70 - Fixing instances page.
71 - Fixed unban not working.
72 - Fixed post title fetching and cross-post search.
73 - Fixed navigating to a user page.
74
75 # Lemmy v0.10.2 Release (2021-04-05)
76
77 - Forcing a crash if config.hjson fails to load. Should show errors easier.
78
79 # Lemmy v0.10.0 Release (2021-04-05)
80
81 ## Changes
82
83 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.
84
85 ### Lemmy Server
86
87 #### General
88
89 - Rewrote config implementation, finally allowing us to use newer Rust versions.
90 - Removed categories. 
91 - Various refactors.
92
93 #### API
94
95 - 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) .
96 - Login invalidation on password change, thanks to @Mart-Bogdan
97
98 #### Federation
99
100 - It is now possible to add users from other instances as community mods.
101 - Federating Matrix ID.
102 - Many changes for better compatibility with ActivityPub standard.
103
104 #### Database 
105
106 - Split the `user_` into `person` and `local_user` tables.
107 - Strictly typed commonly used ID columns, to prevent DB errors using `i32` as ids.
108 - Strictly typed URL fields, thanks to ajyoon.
109 - Created default DB forms, now used in all the unit tests.
110
111 ### Lemmy UI
112
113 - Now using utf-8 emojis.
114 - Support for all the above changes to Lemmy.
115 - Typescript-safe i18n strings, thanks to @shilangyu.
116 - Added expandable post text (click on open book icon).
117 - Prettier cross-posting, which does smart quoting.
118 - Bugfixes for restoring scroll position on post page, custom site favicons, and autocomplete for login fields.
119
120 ### Lemmy Docs
121
122 - Gazconroy built an [Async API spec for Lemmy](https://join-lemmy.org/api/index.html), that now serves as our main API docs.
123
124 ### join-lemmy.org
125
126 - Rewrote in inferno isomorphic, added i18n support via [weblate](https://weblate.yerbamate.ml/projects/lemmy/joinlemmy/).
127 - Added a section on the support page thanking contributors.
128 - Changed some page urls / titles
129
130 ## Upgrade notes
131
132 **Important**: there are multiple breaking changes:
133
134 - 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` ).
135 - The config format for `allowed_instances` and `blocked_instances` has changed, and you need to adjust your config file manually:
136     - before: `allowed_instances: ds9.lemmy.ml,enterprise.lemmy.ml`
137     - now: `allowed_instances: ["ds9.lemmy.ml", "enterprise.lemmy.ml"]` , and only one of the `allowed_instances` or `blocked_instances` blocks can be set.
138 - 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) .
139
140 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).
141
142 To upgrade your instance to `v0.10.0`, simply follow the instructions in the documentation:
143
144 - [Upgrade with manual Docker installation](https://join-lemmy.org/docs/en/administration/install_docker.html#updating)
145 - [Upgrade with Ansible installation](https://join-lemmy.org/docs/en/administration/install_ansible.html)
146
147
148 ## Compilation time
149
150 || v0.9.0 (Rust 1.47) | v0.10.0 (Rust 1.47) | v0.10.0 (Rust 1.51) |
151 |-| -------- | -------- | -------- |
152 |Clean | 140s     | 146s     | 119s     |
153 | Incremental | 28s | 22s | 19s |
154
155 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%).
156
157 v0.9.0 build graph:
158 ![](https://lemmy.ml/pictrs/image/GVBqFnrLqG.jpg)
159
160 v0.10.0 build graph:
161 ![](https://lemmy.ml/pictrs/image/NllzjVEyNK.jpg)
162
163 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.
164
165 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.
166
167 # Lemmy v0.9.9 Release (2021-02-19)
168
169 ## Changes
170
171 ### Lemmy backend
172 - Added an federated activity query sorting order.
173 - Explicitly marking posts and comments as public.
174 - Added a `NewComment` / forum sort for posts.
175 - Fixed an issue with not setting correct published time for fetched posts.
176 - Fixed an issue with an open docker port on lemmy-ui.
177 - Using lemmy post link for RSS link.
178 - Fixed reason and display name lengths to use char counts instead.
179
180 ### Lemmy-ui
181
182 - Updated translations.
183 - Made websocket host configurable.
184 - Added some accessibility features.
185 - Always showing password reset link.
186
187 # Lemmy v0.9.7 Release (2021-02-08)
188
189 ## Changes
190
191 - Posts and comments are no longer live-sorted (meaning most content should stay in place).
192 - Fixed an issue with the create post title field not expanding when copied from iframely suggestion.
193 - Fixed broken federated community paging / sorting.
194 - Added aria attributes for accessibility, thx to @Mitch Lillie.
195 - Updated translations and added croatian.
196 - No changes to lemmy back-end.
197
198 # Lemmy v0.9.6 Release (2021-02-05)
199
200 ## Changes
201
202 - Fixed inbox_urls not being correctly set, which broke federation in `v0.9.5`. Added some logging to catch these.
203 - Fixing community search not using auth.
204 - Moved docs to https://join-lemmy.org
205 - Fixed an issue w/ lemmy-ui with forms being cleared out.
206
207 # Lemmy v0.9.4 Pre-Release (2021-02-02)
208
209 ## Changes
210
211 ### Lemmy
212
213 - Fixed a critical bug with votes and comment unlike responses not being `0` for your user.
214 - Fixed a critical bug with comment creation not checking if its parent comment is in the post.
215 - Serving proper activities for community outbox.
216 - 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)
217 - Made sure banned users can't follow.
218 - Added `FederatedInstances` to `SiteResponse`, to show allowed and blocked instances. (Also added to lemmy-ui)
219 - Added a `MostComments` sort for posts. (Also added to lemmy-ui)
220
221 ### Lemmy-UI
222
223 - Added a scroll position restore to lemmy-ui.
224 - Reworked the combined inbox so incoming comments don't wipe out your current form.
225 - Fixed an updated bug on the user page.
226 - Fixed cross-post titles and body getting clipped.
227 - Fixing the post creation title height.
228 - Squashed some other smaller bugs.
229
230 # Lemmy v0.9.0 Release (2021-01-25)
231
232 ## Changes
233
234 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.
235
236 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).
237
238 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.
239
240 ## LemmyNet projects
241
242 ### Lemmy Server
243
244 - [Moved views from SQL to Diesel](https://github.com/LemmyNet/lemmy/issues/1275). This was a spinal replacement for much of lemmy.
245   - Removed all the old fast_tables and triggers, and created new aggregates tables.
246 - Added a `v2` of the API to support the hierarchical objects created from the above changes.
247 - 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)
248 - Split out documentation into git submodule.
249 - Shortened slur filter to avoid false positives.
250 - Added query performance testing and comparisons. Added indexes to make sure every query is `< 30 ms`.
251 - Added compilation time testing.
252
253 ### Federation
254
255 This release includes some bug fixes for federation, and some changes to get us closer to compliance with the ActivityPub standard.
256
257 - [Community bans now federating](https://github.com/LemmyNet/lemmy/issues/1287).
258 - [Local posts sometimes got marked as remote](https://github.com/LemmyNet/lemmy/issues/1302).
259 - [Creator of post/comment was not notified about new child comments](https://github.com/LemmyNet/lemmy/issues/1325).
260 - [Community deletion now federated](https://github.com/LemmyNet/lemmy/issues/1256).
261
262 None of these are breaking changes, so federation between 0.9.0 and 0.8.11 will work without problems.
263
264 ### Lemmy javascript / typescript client
265
266 - 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.
267 - Drone now handles publishing its [npm packages.](https://www.npmjs.com/package/lemmy-js-client)
268
269 ### Lemmy-UI
270
271 - Updated it to use the `v2` API via `lemmy-js-client`, required changing nearly every component.
272 - Added a live comment count.
273 - Added drone deploying, and builds for ARM.
274 - Fixed community link wrapping.
275 - Various other bug fixes.
276
277
278 ### Lemmy Docs
279
280 - We moved documentation into a separate git repository, and support translation for the docs now!
281 - Moved our code of conduct into the documentation.
282
283 ## Upgrading
284
285 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).
286
287 - [Upgrade with manual Docker installation](https://join-lemmy.org/docs/en/administration/install_docker.html#updating)
288 - [Upgrade with Ansible installation](https://join-lemmy.org/docs/en/administration/install_ansible.html)
289
290 # Lemmy v0.8.0 Release (2020-10-16)
291
292 ## Changes
293
294 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: 
295
296 Here are some of the bigger changes:
297
298 ### LemmyNet projects
299
300 - Created [LemmyNet](https://github.com/LemmyNet), where all lemmy-related projects live.
301 - Split out the frontend into a separete repository, [lemmy-ui](https://github.com/LemmyNet/lemmy-ui)
302 - Created a [lemmy-js-client](https://github.com/LemmyNet/lemmy-js-client), for any js / typescript developers.
303 - 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/)
304
305 ### Lemmy Server
306
307 #### Federation
308
309 - The first **federation public beta release**, woohoo :fireworks: 
310 - All Lemmy functionality now works over ActivityPub (except turning remote users into mods/admins)
311 - Instance allowlist and blocklist
312 - 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
313 - Upgraded to newest versions of @asonix activitypub libraries
314 - Full local federation setup for manual testing
315 - Automated testing for nearly every federation action
316 - Many additional security checks
317 - Lots and lots of refactoring
318 - Asynchronous sending of outgoing activities
319
320 ### User Interface
321
322 - Separated the UI from the server code, in [lemmy-ui](https://github.com/LemmyNet/lemmy-ui).
323 - The UI can now read with javascript disabled! 
324 - 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.
325 - 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)
326 - Improved the search page ( more features incoming ).
327 - The default view is now `Local`, instead of `All`, since all would show all federated posts.
328 - User settings are now shared across browsers ( a page refresh will pick up changes ).
329 - A much leaner mobile view.
330
331 #### Backend
332
333 - Re-organized the rust codebase into separate workspaces for backend and frontend.
334 - Removed materialized views, making the database **a lot faster**.
335 - New post sorts `Active` (previously called hot), and `Hot`. Active shows posts with recent comments, hot shows highly ranked posts.
336 - New sort for `Local` ( meaning from local communities).
337 - Customizeable site, user, and community icons and banners.
338 - Added user preferred names / display names, bios, and cakedays.
339 - Visual / Audio captchas through the lemmy API.
340 - Lots of API field verifications.
341 - Upgraded to pictrs-v2 ( thanks to @asonix )
342 - Wayyy too many bugfixes to count.
343
344 ## Contributors
345
346 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. 
347
348 ## Upgrading
349
350 - [with manual Docker installation](https://join-lemmy.org/docs/administration_install_docker.html#updating)
351 - [with Ansible installation](https://join-lemmy.org/docs/administration_install_ansible.html)
352
353 ## Testing Federation
354
355 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/) ).
356
357 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.
358
359 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.
360
361 ### Connecting to another server
362
363 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.
364
365 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).
366
367 To connect with the `main` community on ds9, the search is `!main@ds9.lemmy.ml`.
368
369 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`
370
371 # Lemmy v0.7.40 Pre-Release (2020-08-05)
372
373 We've [added a lot](https://github.com/LemmyNet/lemmy/compare/v0.7.40...v0.7.0) in this pre-release:
374
375 - New post sorts `Active` (previously called hot), and `Hot`. Active shows posts with recent comments, hot shows highly ranked posts.
376 - Customizeable site icon and banner, user icon and banner, and community icon and banner.
377 - Added user preferred names / display names, bios, and cakedays.
378 - User settings are now shared across browsers (a page refresh will pick up changes).
379 - Visual / Audio captchas through the lemmy API.
380 - Lots of UI prettiness.
381 - Lots of bug fixes.
382 - Lots of additional translations.
383 - Lots of federation prepping / additions / refactors.
384
385 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.
386
387 ## Upgrading
388
389 **With Ansible:**
390
391 ```
392 # run these commands locally
393 git pull
394 cd ansible
395 ansible-playbook lemmy.yml
396 ```
397
398 **With manual Docker installation:**
399 ```
400 # run these commands on your server
401 cd /lemmy
402 wget https://raw.githubusercontent.com/LemmyNet/lemmy/master/ansible/templates/nginx.conf
403 # Replace the {{ vars }}
404 sudo mv nginx.conf /etc/nginx/sites-enabled/lemmy.conf
405 sudo nginx -s reload
406 wget https://raw.githubusercontent.com/LemmyNet/lemmy/master/docker/prod/docker-compose.yml
407 sudo docker-compose up -d
408 ```
409
410
411 # Lemmy v0.7.0 Release (2020-06-23)
412
413 This release replaces [pictshare](https://github.com/HaschekSolutions/pictshare)
414 with [pict-rs](https://git.asonix.dog/asonix/pict-rs), which improves performance
415 and security.
416
417 Overall, since our last major release in January (v0.6.0), we have closed over
418 [100 issues!](https://github.com/LemmyNet/lemmy/milestone/16?closed=1)
419
420 - Site-wide list of recent comments
421 - Reconnecting websockets
422 - Many more themes, including a default light one.
423 - Expandable embeds for post links (and thumbnails), from
424 [iframely](https://github.com/itteco/iframely)
425 - Better icons
426 - Emoji autocomplete to post and message bodies, and an Emoji Picker
427 - Post body now searchable
428 - Community title and description is now searchable
429 - Simplified cross-posts
430 - Better documentation
431 - LOTS more languages
432 - Lots of bugs squashed
433 - And more ...
434
435 ## Upgrading
436
437 Before starting the upgrade, make sure that you have a working backup of your
438 database and image files. See our
439 [documentation](https://join-lemmy.org/docs/administration_backup_and_restore.html)
440 for backup instructions.
441
442 **With Ansible:**
443
444 ```
445 # deploy with ansible from your local lemmy git repo
446 git pull
447 cd ansible
448 ansible-playbook lemmy.yml
449 # connect via ssh to run the migration script
450 ssh your-server
451 cd /lemmy/
452 wget https://raw.githubusercontent.com/LemmyNet/lemmy/master/docker/prod/migrate-pictshare-to-pictrs.bash
453 chmod +x migrate-pictshare-to-pictrs.bash
454 sudo ./migrate-pictshare-to-pictrs.bash
455 ```
456
457 **With manual Docker installation:**
458 ```
459 # run these commands on your server
460 cd /lemmy
461 wget https://raw.githubusercontent.com/LemmyNet/lemmy/master/ansible/templates/nginx.conf
462 # Replace the {{ vars }}
463 sudo mv nginx.conf /etc/nginx/sites-enabled/lemmy.conf
464 sudo nginx -s reload
465 wget https://raw.githubusercontent.com/LemmyNet/lemmy/master/docker/prod/docker-compose.yml
466 wget https://raw.githubusercontent.com/LemmyNet/lemmy/master/docker/prod/migrate-pictshare-to-pictrs.bash
467 chmod +x migrate-pictshare-to-pictrs.bash
468 sudo bash migrate-pictshare-to-pictrs.bash
469 ```
470
471 **Note:** After upgrading, all users need to reload the page, then logout and
472 login again, so that images are loaded correctly.
473
474 # Lemmy v0.6.0 Release (2020-01-16)
475
476 `v0.6.0` is here, and we've closed [41 issues!](https://github.com/LemmyNet/lemmy/milestone/15?closed=1) 
477
478 This is the biggest release by far:
479
480 - Avatars!
481 - Optional Email notifications for username mentions, post and comment replies.
482 - Ability to change your password and email address.
483 - Can set a custom language.
484 - Lemmy-wide settings to disable downvotes, and close registration.
485 - A better documentation system, hosted in lemmy itself.
486 - [Huge DB performance gains](https://github.com/LemmyNet/lemmy/issues/411) (everthing down to < `30ms`) by using materialized views. 
487 - Fixed major issue with similar post URL and title searching.
488 - Upgraded to Actix `2.0`
489 - Faster comment / post voting.
490 - Better small screen support.
491 - Lots of bug fixes, refactoring of back end code.
492
493 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.
494
495 https://lemmy.ml