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