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