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