]> Untitled Git - lemmy.git/blob - RELEASES.md
Adding 0.16.6 release
[lemmy.git] / RELEASES.md
1 #  Lemmy v0.16.6 Release : bug fixes (2022-07-19)
2
3 A few bug fixes:
4
5 - Fix problem where actors can have empty public key (fixes [#2347](https://github.com/LemmyNet/lemmy/issues/2347)) ([#2348](https://github.com/LemmyNet/lemmy/issues/2348))
6 - Be more explicit about returning deleted actors or not ([#2335](https://github.com/LemmyNet/lemmy/issues/2335))
7 - Dont allow blocking admin ([#2340](https://github.com/LemmyNet/lemmy/issues/2340))
8 - Increase RSS fetch limit to 20. Fixes [#2319](https://github.com/LemmyNet/lemmy/issues/2319) ([#2327](https://github.com/LemmyNet/lemmy/issues/2327))
9 - Fix length of post_report.original_post_name db field (fixes [#2311](https://github.com/LemmyNet/lemmy/issues/2311)) ([#2315](https://github.com/LemmyNet/lemmy/issues/2315))
10 - Add pub use for db crates in api_common ([#2305](https://github.com/LemmyNet/lemmy/issues/2305))
11 - Accept private like ([#1968](https://github.com/LemmyNet/lemmy/issues/1968)) ([#2301](https://github.com/LemmyNet/lemmy/issues/2301))
12
13 #  Lemmy v0.16.4 Release : Peertube federation, Rust API and other improvements (2022-05-27)
14
15 ## What is Lemmy?
16
17 Lemmy is a self-hosted social link aggregation and discussion platform. It is completely free and open, and not controlled by any company. This means that there is no advertising, tracking, or secret algorithms. Content is organized into communities, so it is easy to subscribe to topics that you are interested in, and ignore others. Voting is used to bring the most interesting items to the top.
18
19 ## Major changes
20
21 This version adds a new community setting "restricted". If this is active, only moderators can post in the community (but anyone can comment). This can be useful for announcements or blogs.
22
23 In your site settings there is a new field for legal information. This can be used to present terms of service, privacy policy etc.
24
25 We've also added an admin setting for the default post listing type. This determines whether users without login, and newly registered users, will see the `Local` or `All` timeline by default.
26
27 HTML tags are now disabled in markdown, as the were causing some issues.
28
29 ### Federation
30
31 Lemmy now federates with [Peertube](https://joinpeertube.org/)! Be aware that this requires Peertube [v4.2.0-rc.1](https://github.com/Chocobozzz/PeerTube/releases/tag/v4.2.0-rc.1) or later. You can now follow Peertube channels from Lemmy and comment on videos. If there is other functionality that you would like to see federated, please open an issue (the same goes for federation with other projects).
32
33 When browsing remote Lemmy communities, you will now see the site description and rules in the sidebar. Some federated actions did not generate mod log entries previously, this has been fixed. Also, federation with Friendica was approved, Lemmy now correctly receives comments with hashtags. Additionally, the previous version had a check which rejected federation in case the domain of user avatars or banners didn't match the user's domain. This check broke federation with some instances,
34 and was removed.
35
36 ### Rust API
37
38 If you are thinking of developing a Rust application which interacts with Lemmy, this is now much easier. The [lemmy-api-common](https://crates.io/crates/lemmy_api_common) crate has a new feature which disables all heavy dependencies (like diesel) by default. You can add the crate to your project, and interact with Lemmy API using the exact same structs that Lemmy itself uses. For an example, have a look at [lemmyBB](https://github.com/Nutomic/lemmyBB). Its in a very early stage,
39 so contributions are welcome!
40
41 In other development news, our test instances ([ds9.lemmy.ml](https://ds9.lemmy.ml/), [voyager.lemmy.ml](https://voyager.lemmy.ml/), [enterprise.lemmy.ml](https://enterprise.lemmy.ml/)) are now updated automatically every night with the latest development version. This should make it easier for admins and users to test new features before they are released. At the same time, [join-lemmy.org](https://join-lemmy.org/) and its instance list are also updated automatically every night.
42
43 ## Upgrade notes
44
45 Follow the [Docker or Ansible upgrade instructions here.](https://join-lemmy.org/docs/en/administration/administration.html)
46
47 ## Support development
48
49 We (@dessalines and @nutomic) have been working full-time on Lemmy for almost two years. This is largely thanks to support from [NLnet foundation](https://nlnet.nl/). 
50
51 If you'd like to support development, and make sure that we will always be available to work full time on Lemmy, consider [donating to support its development](https://join-lemmy.org/donate). We've spent hundreds of hours on Lemmy, and would like to be able to add more developers to our little open-source co-op as time goes on.
52
53 ## Changes
54
55 ### API
56
57 - A full list of the API changes can be seen on this diff of [lemmy-js-client: 0.16.0 -> 0.16.4](https://github.com/LemmyNet/lemmy-js-client/compare/0.16.0-rc.1...0.16.4-rc.3) .
58
59 ### Lemmy
60
61 - Add legal information (fixes [#721](https://github.com/LemmyNet/lemmy/issues/721)) ([#2273](https://github.com/LemmyNet/lemmy/issues/2273))
62 - Add drone task for nightly build ([#2264](https://github.com/LemmyNet/lemmy/issues/2264))
63 - Fixing malformed rosetta translations. Fixes [#2231](https://github.com/LemmyNet/lemmy/issues/2231)
64 - Make opentelemetry dependency optional
65 - Remove check that avatars/banners are locally hosted (fixes [#2254](https://github.com/LemmyNet/lemmy/issues/2254)) ([#2255](https://github.com/LemmyNet/lemmy/issues/2255))
66 - Simplify building plain/html emails ([#2251](https://github.com/LemmyNet/lemmy/issues/2251))
67 - Federate with Peertube ([#2244](https://github.com/LemmyNet/lemmy/issues/2244))
68 - Derive default for api request structs, move type enums ([#2245](https://github.com/LemmyNet/lemmy/issues/2245))
69 - Add cargo feature for building lemmy_api_common with mininum deps ([#2243](https://github.com/LemmyNet/lemmy/issues/2243))
70 - Add restricted community field to CreateCommunity, UpdateCommunity (ref [#2235](https://github.com/LemmyNet/lemmy/issues/2235)) ([#2242](https://github.com/LemmyNet/lemmy/issues/2242))
71 - Implement restricted community (only mods can post) (fixes [#187](https://github.com/LemmyNet/lemmy/issues/187)) ([#2235](https://github.com/LemmyNet/lemmy/issues/2235))
72 - Update community statistics after post or comment is deleted by user ([#2193](https://github.com/LemmyNet/lemmy/issues/2193))
73 - Accept comments with hashtags from Friendica ([#2236](https://github.com/LemmyNet/lemmy/issues/2236))
74 - Remove unused dependencies ([#2239](https://github.com/LemmyNet/lemmy/issues/2239))
75 - Fix link metadata unit test ([#2237](https://github.com/LemmyNet/lemmy/issues/2237))
76 - Dont return "admin" for GET user when no id/name is provided (fixes [#1546](https://github.com/LemmyNet/lemmy/issues/1546)) ([#2233](https://github.com/LemmyNet/lemmy/issues/2233))
77 - Federation: dont overwrite local object from Announce activity ([#2232](https://github.com/LemmyNet/lemmy/issues/2232))
78 - Require registration application by default ([#2229](https://github.com/LemmyNet/lemmy/issues/2229))
79 - Add default post listing type (fixes [#2195](https://github.com/LemmyNet/lemmy/issues/2195)) ([#2209](https://github.com/LemmyNet/lemmy/issues/2209))
80 - Show deny reason to users after a failed login. Fixes [#2191](https://github.com/LemmyNet/lemmy/issues/2191) ([#2206](https://github.com/LemmyNet/lemmy/issues/2206))
81 - Fix allowlist / blocklist description location. Fixes [#2214](https://github.com/LemmyNet/lemmy/issues/2214) ([#2215](https://github.com/LemmyNet/lemmy/issues/2215))
82 - Split apart api files ([#2216](https://github.com/LemmyNet/lemmy/issues/2216))
83 - Changing default listing type to Local from Subscribed.
84 - Expose remote site info in GetCommunity API (fixes [#2208](https://github.com/LemmyNet/lemmy/issues/2208)) ([#2210](https://github.com/LemmyNet/lemmy/issues/2210))
85 - Fixing unstable post sorts. Fixes [#2188](https://github.com/LemmyNet/lemmy/issues/2188) ([#2204](https://github.com/LemmyNet/lemmy/issues/2204))
86 - Adding lemmy_ui_debug for future debug testing. ([#2211](https://github.com/LemmyNet/lemmy/issues/2211))
87 - Fixing generate unique changeme ([#2205](https://github.com/LemmyNet/lemmy/issues/2205))
88 - Change Person, Instance types ([#2200](https://github.com/LemmyNet/lemmy/issues/2200))
89 - Write mod log for federated sticky/lock post actions ([#2203](https://github.com/LemmyNet/lemmy/issues/2203))
90
91 ### Lemmy-UI
92
93 - Adding Legal info ([#666](https://github.com/LemmyNet/lemmy-ui/issues/666))
94 - Add nightly dev drone cron build. ([#664](https://github.com/LemmyNet/lemmy-ui/issues/664))
95 - Add LEMMY_UI_CUSTOM_SCRIPT env var. Fixes [#655](https://github.com/LemmyNet/lemmy-ui/issues/655) ([#656](https://github.com/LemmyNet/lemmy-ui/issues/656))
96 - Turn off html in markdown. Fixes [#650](https://github.com/LemmyNet/lemmy-ui/issues/650) ([#657](https://github.com/LemmyNet/lemmy-ui/issues/657))
97 - Add posting restricted to mods ([#642](https://github.com/LemmyNet/lemmy-ui/issues/642))
98 - Add default post listing ([#645](https://github.com/LemmyNet/lemmy-ui/issues/645))
99 - Don't render markdown for summaries. Fixes [#658](https://github.com/LemmyNet/lemmy-ui/issues/658) ([#659](https://github.com/LemmyNet/lemmy-ui/issues/659))
100 - Set content security policy http header for all responses ([#621](https://github.com/LemmyNet/lemmy-ui/issues/621))
101 - Adding site sidebar for remote communities. Fixes [#626](https://github.com/LemmyNet/lemmy-ui/issues/626) ([#640](https://github.com/LemmyNet/lemmy-ui/issues/640))
102 - Properly debouncing tribute mentions. Fixes [#633](https://github.com/LemmyNet/lemmy-ui/issues/633) ([#639](https://github.com/LemmyNet/lemmy-ui/issues/639))
103 - Adding litely-red and darkly-red themes. ([#636](https://github.com/LemmyNet/lemmy-ui/issues/636))
104 - Fixing initial loading of admin page. Fixes [#635](https://github.com/LemmyNet/lemmy-ui/issues/635) ([#638](https://github.com/LemmyNet/lemmy-ui/issues/638))
105 - Fixing helmet theme bug. Fixes [#628](https://github.com/LemmyNet/lemmy-ui/issues/628) ([#629](https://github.com/LemmyNet/lemmy-ui/issues/629))
106 - Adding site ban from profile page. Fixes [#588](https://github.com/LemmyNet/lemmy-ui/issues/588) ([#627](https://github.com/LemmyNet/lemmy-ui/issues/627))
107 - Adding sidebar and subscribed collapse. Fixes [#609](https://github.com/LemmyNet/lemmy-ui/issues/609) ([#622](https://github.com/LemmyNet/lemmy-ui/issues/622))
108 - Adding a LEMMY_UI_DEBUG flag for eruda debugging ([#624](https://github.com/LemmyNet/lemmy-ui/issues/624))
109 - Adds OC ([#620](https://github.com/LemmyNet/lemmy-ui/issues/620))
110
111 # Lemmy v0.16.3 Release (2022-04-08)
112
113 ## What is Lemmy?
114
115 Lemmy is a self-hosted social link aggregation and discussion platform. It is completely free and open, and not controlled by any company. This means that there is no advertising, tracking, or secret algorithms. Content is organized into communities, so it is easy to subscribe to topics that you are interested in, and ignore others. Voting is used to bring the most interesting items to the top.
116
117 ## Major Changes
118
119 A full list of fixes is below, but this patch release includes federation compatibility and bug fixes, as well as fixing vulnerabilities in our websocket rate limiting.
120
121 ## Upgrade notes
122
123 Besides the addition of a [search rate limit to the lemmy.hjson](https://github.com/LemmyNet/lemmy/blob/main/config/defaults.hjson#L39), there are no config or API changes.
124
125 Follow the [Docker or Ansible upgrade instructions here.](https://join-lemmy.org/docs/en/administration/administration.html)
126
127 ## Support development
128
129 We (@dessalines and @nutomic) have been working full-time on Lemmy for almost two years. This is largely thanks to support from [NLnet foundation](https://nlnet.nl/). If you would like to support our efforts, please consider [donating](https://join-lemmy.org/donate).
130
131 If you'd like to support development, and make sure that we will always be available to work full time on Lemmy, consider [donating to support its development](https://join-lemmy.org/donate). We've spent hundreds of hours on Lemmy, and would like to be able to add more developers to our little open-source co-op as time goes on.
132
133 ## Changes
134
135 ### Lemmy Server
136
137 - Federate user account deletion (fixes [#1284](https://github.com/LemmyNet/lemmy/issues/1284)) ([#2199](https://github.com/LemmyNet/lemmy/issues/2199))
138 - Dont federate initial upvote ([#2196](https://github.com/LemmyNet/lemmy/issues/2196))
139 - Add missing mod log entries for federated actions (fixes [#1489](https://github.com/LemmyNet/lemmy/issues/1489)) ([#2198](https://github.com/LemmyNet/lemmy/issues/2198))
140 - Make sure application questionaire is required. Fixes [#2189](https://github.com/LemmyNet/lemmy/issues/2189)
141 - Fix verify_mod_action check for remote admin actions ([#2190](https://github.com/LemmyNet/lemmy/issues/2190))
142 - Run cargo upgrade ([#2176](https://github.com/LemmyNet/lemmy/issues/2176))
143 - Migrate towards using page.attachment field for url (ref [#2144](https://github.com/LemmyNet/lemmy/issues/2144)) ([#2182](https://github.com/LemmyNet/lemmy/issues/2182))
144 - Exclude removed/deleted posts from community outbox ([#2184](https://github.com/LemmyNet/lemmy/issues/2184))
145 - Fetch community outbox in parallel (fixes [#2180](https://github.com/LemmyNet/lemmy/issues/2180)) ([#2181](https://github.com/LemmyNet/lemmy/issues/2181))
146 - Adding a ban expires update job. Fixes [#2177](https://github.com/LemmyNet/lemmy/issues/2177)
147 - Add email translations ([#2175](https://github.com/LemmyNet/lemmy/issues/2175))
148 - Add test files for Friendica federation (fixes [#2144](https://github.com/LemmyNet/lemmy/issues/2144)) ([#2167](https://github.com/LemmyNet/lemmy/issues/2167))
149 - Lowering search rate limit. Fixes [#2153](https://github.com/LemmyNet/lemmy/issues/2153) ([#2154](https://github.com/LemmyNet/lemmy/issues/2154))
150 - Rate limit ws joins ([#2171](https://github.com/LemmyNet/lemmy/issues/2171))
151 - Delete unused diesel.toml file ([#2166](https://github.com/LemmyNet/lemmy/issues/2166))
152 - Rate limit websocket joins. ([#2165](https://github.com/LemmyNet/lemmy/issues/2165))
153 - Doing tests in sequential order. Fixes [#2158](https://github.com/LemmyNet/lemmy/issues/2158) ([#2163](https://github.com/LemmyNet/lemmy/issues/2163))
154 - Dont log errors when rate limit is hit (fixes [#2157](https://github.com/LemmyNet/lemmy/issues/2157)) ([#2161](https://github.com/LemmyNet/lemmy/issues/2161))
155 - Fix rate limit check for register. Fixes [#2159](https://github.com/LemmyNet/lemmy/issues/2159)
156 - GNU social compatibility ([#2100](https://github.com/LemmyNet/lemmy/issues/2100))
157 - Consolidate and lower reqwest timeouts. Fixes [#2150](https://github.com/LemmyNet/lemmy/issues/2150) ([#2151](https://github.com/LemmyNet/lemmy/issues/2151))
158 - Check that config is valid before saving ([#2152](https://github.com/LemmyNet/lemmy/issues/2152))
159 - Dont log error if duplicate activity is received (fixes [#2146](https://github.com/LemmyNet/lemmy/issues/2146)) ([#2148](https://github.com/LemmyNet/lemmy/issues/2148))
160 - WIP: Email localization (fixes [#500](https://github.com/LemmyNet/lemmy/issues/500)) ([#2053](https://github.com/LemmyNet/lemmy/issues/2053))
161 - If viewed actor isnt in db, fetch it from other instance ([#2145](https://github.com/LemmyNet/lemmy/issues/2145))
162 - Show rate limit algorithm. Fixes [#2136](https://github.com/LemmyNet/lemmy/issues/2136)
163 - Adjust retry interval for sending activities ([#2141](https://github.com/LemmyNet/lemmy/issues/2141))
164 - Add jerboa link to readme. Fixes [#2137](https://github.com/LemmyNet/lemmy/issues/2137)
165 - Forbid remote URLs for avatars/banners (fixes [#1618](https://github.com/LemmyNet/lemmy/issues/1618)) ([#2132](https://github.com/LemmyNet/lemmy/issues/2132))
166 - Remove docker/prod unused files (fixes [#2086](https://github.com/LemmyNet/lemmy/issues/2086)) ([#2133](https://github.com/LemmyNet/lemmy/issues/2133))
167 - Rework error handling (fixes [#1714](https://github.com/LemmyNet/lemmy/issues/1714)) ([#2135](https://github.com/LemmyNet/lemmy/issues/2135))
168 - Dont allow admin to add mod to remote community ([#2129](https://github.com/LemmyNet/lemmy/issues/2129))
169 - Reject federated downvotes if downvotes are disabled (fixes [#2124](https://github.com/LemmyNet/lemmy/issues/2124)) ([#2128](https://github.com/LemmyNet/lemmy/issues/2128))
170
171 ### Lemmy UI
172
173 - Dont allow community urls like /c/{id} (fixes [#611](https://github.com/LemmyNet/lemmy-ui/issues/611)) ([#612](https://github.com/LemmyNet/lemmy-ui/issues/612))
174 - Fix loading indicator on search page (fixes [#443](https://github.com/LemmyNet/lemmy-ui/issues/443)) ([#606](https://github.com/LemmyNet/lemmy-ui/issues/606))
175 - Upgrade deps ([#604](https://github.com/LemmyNet/lemmy-ui/issues/604))
176 - Remove auth token from error message. Fixes [#600](https://github.com/LemmyNet/lemmy-ui/issues/600) ([#601](https://github.com/LemmyNet/lemmy-ui/issues/601))
177 - Fix error during new site setup ([#596](https://github.com/LemmyNet/lemmy-ui/issues/596))
178 - Differentiate between mods and admins in mod log ([#597](https://github.com/LemmyNet/lemmy-ui/issues/597))
179 - Fix comment fedilink (fixes [#594](https://github.com/LemmyNet/lemmy-ui/issues/594)) ([#595](https://github.com/LemmyNet/lemmy-ui/issues/595))
180
181 # Lemmy v0.16.1 Release
182
183 A few bug fixes:
184
185 ## Lemmy
186
187 - Revert "Add logging to debug federation issues (ref [#2096](https://github.com/LemmyNet/lemmy/issues/2096)) ([#2099](https://github.com/LemmyNet/lemmy/issues/2099))" ([#2130](https://github.com/LemmyNet/lemmy/issues/2130))
188 - Dont allow admin to add mod to remote community ([#2129](https://github.com/LemmyNet/lemmy/issues/2129))
189 - Reject federated downvotes if downvotes are disabled (fixes [#2124](https://github.com/LemmyNet/lemmy/issues/2124)) ([#2128](https://github.com/LemmyNet/lemmy/issues/2128))
190
191 ## Lemmy-ui
192
193 - Fix error during new site setup ([#596](https://github.com/LemmyNet/lemmy-ui/issues/596))
194 - Differentiate between mods and admins in mod log ([#597](https://github.com/LemmyNet/lemmy-ui/issues/597))
195 - Fix comment fedilink (fixes [#594](https://github.com/LemmyNet/lemmy-ui/issues/594)) ([#595](https://github.com/LemmyNet/lemmy-ui/issues/595))
196
197 # Lemmy v0.16.0 Release: Theming and Federation improvements (2022-03-08)
198
199 ## What is Lemmy?
200
201 Lemmy is a self-hosted social link aggregation and discussion platform. It is completely free and open, and not controlled by any company. This means that there is no advertising, tracking, or secret algorithms. Content is organized into communities, so it is easy to subscribe to topics that you are interested in, and ignore others. Voting is used to bring the most interesting items to the top.
202
203 ## Major Changes
204
205 ### Theming
206
207 Customizing Lemmy is now much easier than before. Instance admins can select a default instance theme under `/admin` which applies to all users who are not logged in, and those who haven't explicitly picked a theme.
208
209 It is also possible now to add custom themes to an instance, without having to recompile lemmy-ui. When running with Docker, make sure that [these lines](https://github.com/LemmyNet/lemmy-ansible/pull/24/files) are present in docker-compose.yml (Ansible will add them automatically if you updated the repo). Then put your .css file into `./volumes/lemmy-ui/extra_themes`. The new theme can then be selected by users, or set as instance default.
210
211 For native installation (without Docker), themes are loaded by lemmy-ui from `./extra_themes` folder. A different path can be specified with `LEMMY_UI_EXTRA_THEMES_FOLDER` environment variable.
212
213 For instructions how to create a new theme, have a look at the [documentation](https://join-lemmy.org/docs/en/client_development/theming.html).
214
215 ### Federation
216
217 @nutomic made many changes to federation to increase compatibility with other software. Lemmy can now receive deletions from [Pleroma], comments from [Friendica] and communities from [lotide](https://sr.ht/~vpzom/lotide/). Other actions were already compatible before. Mastodon can now display communities even when a user with identical name exists (but the user can't be viewed in that case). There were no breaking changes necessary, so federation is fully compatible with 0.15. If you notice something in another project that doesn't federate but should, please open an issue.
218
219 Multiple users have pointed out that posts, comments and votes don't federate reliably. We first attempted to fix this in [Lemmy 0.15.4](https://lemmy.ml/post/184152) a few days ago, but that didn't help much. Later @nutomic noticed that Lemmy was only sending out activities with 4 worker threads, which is not enough for a big instance like lemmy.ml. At the same time, many of those workers were taken up by sending to broken instances, trying to connect for a minute or more. This version adds a timeout and increases the number of workers.
220
221 ### Federated bans
222
223 Until now, only community bans were federated, and the "Remove content" option didn't work over federation. The new version fixes this behaviour, so that both site bans and community bans federate, including "Remove content" option and expiry. Note that this change only affects new bans, those which were issued before upgrading to 0.16 will not be federated.
224
225 ### Hide communities
226
227 @dayinjing implemented a funcionality for instance admins to hide controversial communities. A hidden community is only visible to those users who subscribe to it. This represents a milder alternative to removing a community. This functionality is not implemented in lemmy-ui yet, but admins can hide a community like this via command line:
228 ```
229 curl -X PUT https://example.com/api/v3/community/hide \   
230     -H "Content-Type: application/json" \
231     -d \
232     '{"community_id":3,"hidden":true,"reason":"*reason for mod log*","auth":"*admin jwt token*"}'
233 ```
234
235 ### Jerboa: a new android app
236
237 To help adoption, and since most people use social media through their smartphones nowadays, @dessalines has been working on a native android app for Lemmy called [Jerboa](https://github.com/dessalines/jerboa), which is now on [F-Droid](https://f-droid.org/packages/com.jerboa) and [Google Play](https://play.google.com/store/apps/details?id=com.jerboa). 
238
239 It is still at an alpha level, but is very usable. We'd love to have experienced android developers contribute to it.
240
241 This now makes three smartphone apps for Lemmy: [Lemmur and Jerboa for Android, and Remmel for iOS](https://join-lemmy.org/apps). 
242
243
244 ## Upgrade notes
245
246 Follow the [Docker or Ansible upgrade instructions here.](https://join-lemmy.org/docs/en/administration/administration.html)
247
248 There are three lemmy.hjson config changes. See [defaults.hjson](https://github.com/LemmyNet/lemmy/blob/main/config/defaults.hjson) for comments and default values.
249
250 - changed boolean `email.use_tls` to `email.tls_type`
251 - added `setup.default_theme`
252 - added `federation.worker_count`
253
254 ## Support development
255
256 We (@dessalines and @nutomic) have been working full-time on Lemmy for almost two years. This is largely thanks to support from [NLnet foundation](https://nlnet.nl/). If you would like to support our efforts, please consider [donating](https://join-lemmy.org/donate).
257
258 If you'd like to support development, and make sure that we will always be available to work full time on Lemmy, consider [donating to support its development](https://join-lemmy.org/donate). We've spent hundreds of hours on Lemmy, and would like to be able to add more developers to our little open-source co-op as time goes on.
259
260 ## Changes
261
262 ### API
263
264 - A full list of the API changes can be seen on this diff of [lemmy-js-client: 0.15.0 -> 0.16.0](https://github.com/LemmyNet/lemmy-js-client/compare/0.15.0-rc.34...0.16.0-rc.1) .
265
266 ### Config
267
268 - The config changes are [here.](https://github.com/LemmyNet/lemmy/compare/0.15.2...main#diff-bcc84ad7bb4d0687c679cb6b3711052d8eba74a8188578c7516a8fdb5584d01a)
269
270 ### Lemmy Server
271
272 - Make delete activities backwards compatible with 0.15 ([#2114](https://github.com/LemmyNet/lemmy/issues/2114))
273 - Make activity queue worker count configurable, log stats ([#2113](https://github.com/LemmyNet/lemmy/issues/2113))
274 - Add timeout for sending activities ([#2112](https://github.com/LemmyNet/lemmy/issues/2112))
275 - Update `actix-*` dependencies to stable v4.
276 - Show nsfw communities if you are logged in and searching communities ([#2105](https://github.com/LemmyNet/lemmy/issues/2105))
277 - Fix resending activities (fixes [#1282](https://github.com/LemmyNet/lemmy/issues/1282)) ([#2109](https://github.com/LemmyNet/lemmy/issues/2109))
278 - Dont hardcode site id in Site::update ([#2110](https://github.com/LemmyNet/lemmy/issues/2110))
279 - send plain-text in email along with html ([#2107](https://github.com/LemmyNet/lemmy/issues/2107))
280 - Add site option for default theme ([#2104](https://github.com/LemmyNet/lemmy/issues/2104))
281 - Hide community v2 ([#2055](https://github.com/LemmyNet/lemmy/issues/2055))
282 - Reorganize federation tests ([#2092](https://github.com/LemmyNet/lemmy/issues/2092))
283 - Add logging to debug federation issues (ref [#2096](https://github.com/LemmyNet/lemmy/issues/2096)) ([#2099](https://github.com/LemmyNet/lemmy/issues/2099))
284 - Adding a reqwest timeout. Fixes [#2089](https://github.com/LemmyNet/lemmy/issues/2089) ([#2097](https://github.com/LemmyNet/lemmy/issues/2097))
285 - Upgrade to Rust 2021 edition ([#2093](https://github.com/LemmyNet/lemmy/issues/2093))
286 - Merge different delete activities for better compatibility (fixes [#2066](https://github.com/LemmyNet/lemmy/issues/2066)) ([#2073](https://github.com/LemmyNet/lemmy/issues/2073))
287 - Implement instance actor ([#1798](https://github.com/LemmyNet/lemmy/issues/1798))
288 - Use doku(skip) for opentelemetry_url config value (ref [#2085](https://github.com/LemmyNet/lemmy/issues/2085)) ([#2091](https://github.com/LemmyNet/lemmy/issues/2091))
289 - Alpha-ordering community follows. Fixes [#2062](https://github.com/LemmyNet/lemmy/issues/2062) ([#2079](https://github.com/LemmyNet/lemmy/issues/2079))
290 - Add federation tests for Friendica, improve parsing of source field (fixes [#2057](https://github.com/LemmyNet/lemmy/issues/2057)) ([#2070](https://github.com/LemmyNet/lemmy/issues/2070))
291
292 ### Lemmy UI
293
294 - Rename theme files from *.min.css to *.css ([#590](https://github.com/LemmyNet/lemmy-ui/issues/590))
295 - Custom themes ([#584](https://github.com/LemmyNet/lemmy-ui/issues/584))
296 - Add option to set site default theme (fixes [#559](https://github.com/LemmyNet/lemmy-ui/issues/559))
297 - Adding nofollow to links. Fixes [#542](https://github.com/LemmyNet/lemmy-ui/issues/542) ([#543](https://github.com/LemmyNet/lemmy-ui/issues/543))
298 - Fix language names ([#580](https://github.com/LemmyNet/lemmy-ui/issues/580))
299 - Move fedi link in post listing location. Fixes [#569](https://github.com/LemmyNet/lemmy-ui/issues/569) ([#583](https://github.com/LemmyNet/lemmy-ui/issues/583))
300 - Don't redirect on server error. Fixes [#570](https://github.com/LemmyNet/lemmy-ui/issues/570) ([#582](https://github.com/LemmyNet/lemmy-ui/issues/582))
301 - Smart select inner content after bold or italics. Fixes [#497](https://github.com/LemmyNet/lemmy-ui/issues/497) ([#577](https://github.com/LemmyNet/lemmy-ui/issues/577))
302 - Fix comment jumping. Fixes [#529](https://github.com/LemmyNet/lemmy-ui/issues/529) ([#576](https://github.com/LemmyNet/lemmy-ui/issues/576))
303 - Add federated post and comment links. Fixes [#569](https://github.com/LemmyNet/lemmy-ui/issues/569) ([#575](https://github.com/LemmyNet/lemmy-ui/issues/575))
304 - Fix community comments iso fetch. Fixes [#572](https://github.com/LemmyNet/lemmy-ui/issues/572) ([#574](https://github.com/LemmyNet/lemmy-ui/issues/574))
305 - Don't allow transfer site. ([#551](https://github.com/LemmyNet/lemmy-ui/issues/551))
306 - Fix report page bugs. Fixes [#558](https://github.com/LemmyNet/lemmy-ui/issues/558) ([#568](https://github.com/LemmyNet/lemmy-ui/issues/568))
307 - Fix post title link bug. Fixes [#547](https://github.com/LemmyNet/lemmy-ui/issues/547) ([#563](https://github.com/LemmyNet/lemmy-ui/issues/563))
308 - Add markdown footnotes. Fixes [#561](https://github.com/LemmyNet/lemmy-ui/issues/561) ([#562](https://github.com/LemmyNet/lemmy-ui/issues/562))
309
310 # Lemmy v0.15.2 Release (2022-01-27)
311
312 A few bug fixes:
313
314 - Dont make webfinger request when viewing community/user profile (fixes [#1896](https://github.com/LemmyNet/lemmy/issues/1896)) ([#2049](https://github.com/LemmyNet/lemmy/issues/2049))
315 - Case-insensitive username at login ([#2010](https://github.com/LemmyNet/lemmy/issues/2010))
316 - Put community last in webfinger response (fixes [#2037](https://github.com/LemmyNet/lemmy/issues/2037)) ([#2047](https://github.com/LemmyNet/lemmy/issues/2047))
317 - Dont check for ban in MarkCommentAsRead (fixes [#2045](https://github.com/LemmyNet/lemmy/issues/2045)) ([#2054](https://github.com/LemmyNet/lemmy/issues/2054))
318 - Empty post bodies ([#2050](https://github.com/LemmyNet/lemmy/issues/2050))
319 - Add tombstone tests, better test errors ([#2046](https://github.com/LemmyNet/lemmy/issues/2046))
320 - Accept single object as to for arrays too ([#2048](https://github.com/LemmyNet/lemmy/issues/2048))
321 - Cleaning optional post bodies. Fixes [#2039](https://github.com/LemmyNet/lemmy/issues/2039) ([#2043](https://github.com/LemmyNet/lemmy/issues/2043))
322 - Fixing liking comment on blocked person. Fixes [#2033](https://github.com/LemmyNet/lemmy/issues/2033) ([#2042](https://github.com/LemmyNet/lemmy/issues/2042))
323 - Add tests for lotide federation, make lotide groups fetchable ([#2035](https://github.com/LemmyNet/lemmy/issues/2035))
324 - Remove unneeded dependency on activitystreams ([#2034](https://github.com/LemmyNet/lemmy/issues/2034))
325 - Fixing private instance check. Fixes [#2064](https://github.com/LemmyNet/lemmy/issues/2064) ([#2065](https://github.com/LemmyNet/lemmy/issues/2065))
326
327 # Lemmy v0.15.1 Release (2022-01-12)
328
329 Lemmy now has private instances, optional registration applications, optional email verification, and temporary bans! These are described in detail below.
330
331 Special thanks to @asonix for adding [tokio-console](https://github.com/LemmyNet/Lemmy/issues/2003) and [Jaeger + opentelemetry](https://github.com/LemmyNet/Lemmy/issues/1992) to our dev setups, so we can better identify performance bottlenecks.
332
333
334 ## What is Lemmy?
335
336 [Lemmy](https://join-lemmy.org/) is similar to sites like Reddit, Lobste.rs, or Hacker News: you subscribe to communities you're interested in, post links and discussions, then vote and comment on them. Lemmy isn't just a reddit alternative; its a network of interconnected communities ran by different people and organizations, all combining to create a single, personalized front page of your favorite news, articles, and memes.
337
338 ## Major Changes
339
340 ### Required email verification
341
342 Admins can turn this on, and new users will need to verify their emails. Current users will not have to do this.
343
344 ### Registration applications
345
346 Admins can now optionally make new users fill out an application to join your server. There is a new panel in their top bar where they can approve or deny pending applications.
347
348 This works in conjunction with the *require_email* field. If that is also turned on, the application will only be shown after their email has been verified. The user will receive an email when they have been accepted.
349
350 ### Closed / Private instances
351
352 The instance settings now includes a *private instance* option, which if turned on, will only let logged in users view your site. Private instances was one of our first issues, and it was a large effort, so its great to finally have this completed.
353
354 ### Temporary Bans
355
356 When banning users from your site or community, moderators can now optionally give a number of days for the ban to last.
357
358 ### Allow comment replies from blocked users
359
360 It used to be that if a user blocked you, you couldn't respond to their public posts and comments. This is now fixed. They won't see your content, but others can.
361
362 ## Upgrade notes
363
364 Follow the [Docker or Ansible upgrade instructions here.](https://join-lemmy.org/docs/en/administration/administration.html)
365
366 ## Support development
367
368 If you'd like to support development, and make sure that we will always be available to work full time on Lemmy, consider [donating to support its development](https://join-lemmy.org/donate). We've spent hundreds of hours on Lemmy, and would like to be able to add more developers to our little open-source co-op as time goes on.
369
370 ## Changes
371
372 ### API
373
374 We've removed a list of banned users from `GetSite`, added a few endpoints related to registration applications, made a few changes allowing temporary bans, site settings, made a few changes to the login response. These are non-destructive and current clients should work with this release. 
375
376 - A full list of the API changes can be seen on this diff of [lemmy-js-client: 0.14.0 -> 0.15.0](https://github.com/LemmyNet/lemmy-js-client/compare/0.14.0-rc.1...0.15.0-rc.34) .
377
378 ### Config
379
380 There is a new rate limit for creating new comments in the [config.hjson](https://github.com/LemmyNet/lemmy/blob/main/config/defaults.hjson#L36).
381
382 ### Lemmy Server
383
384 - Adding temporary bans. Fixes [#1423](https://github.com/LemmyNet/Lemmy/issues/1423) ([#1999](https://github.com/LemmyNet/Lemmy/issues/1999))
385 - Add console-subscriber ([#2003](https://github.com/LemmyNet/Lemmy/issues/2003))
386 - Opentelemetry ([#1992](https://github.com/LemmyNet/Lemmy/issues/1992))
387 - Use correct encoding when fetching non-UTF-8 site metadata ([#2015](https://github.com/LemmyNet/Lemmy/issues/2015))
388 - Adding a banned endpoint for admins. Removing it from GetSite. Fixes [#1806](https://github.com/LemmyNet/Lemmy/issues/1806)
389 - Prevent panic on InboxRequestGuard
390 - Case-insensitive webfinger response. Fixes [#1955](https://github.com/LemmyNet/Lemmy/issues/1955) & [#1986](https://github.com/LemmyNet/Lemmy/issues/1986) ([#2005](https://github.com/LemmyNet/Lemmy/issues/2005))
391 - First pass at invite-only migration. ([#1949](https://github.com/LemmyNet/Lemmy/issues/1949))
392 - Upgrading pictrs. ([#1996](https://github.com/LemmyNet/Lemmy/issues/1996))
393 - Trying out an upgraded version of html5ever. [#1964](https://github.com/LemmyNet/Lemmy/issues/1964) ([#1991](https://github.com/LemmyNet/Lemmy/issues/1991))
394 - Adding min setup password length to the docs. Fixes [#1989](https://github.com/LemmyNet/Lemmy/issues/1989) ([#1990](https://github.com/LemmyNet/Lemmy/issues/1990))
395 - Test pleroma follow ([#1988](https://github.com/LemmyNet/Lemmy/issues/1988))
396 - Remove awc ([#1979](https://github.com/LemmyNet/Lemmy/issues/1979))
397 - Consolidate reqwest clients, use reqwest-middleware for tracing
398 - Don't drop error context when adding a message to errors ([#1958](https://github.com/LemmyNet/Lemmy/issues/1958))
399 - Change lemmur repo links ([#1977](https://github.com/LemmyNet/Lemmy/issues/1977))
400 - added deps - git and ca-certificates (for federation to work) and changed adduser to useradd so that user can be added non-interactively ([#1976](https://github.com/LemmyNet/Lemmy/issues/1976))
401 - Allow comment replies from blocked users. Fixes [#1793](https://github.com/LemmyNet/Lemmy/issues/1793) ([#1969](https://github.com/LemmyNet/Lemmy/issues/1969))
402 - Fix retry infinite loops. Fixes [#1964](https://github.com/LemmyNet/Lemmy/issues/1964) ([#1967](https://github.com/LemmyNet/Lemmy/issues/1967))
403 - Add lotide activities to tests
404 - Allow single item for to, cc, and @context
405 - Adding a captcha rate limit. Fixes [#1755](https://github.com/LemmyNet/Lemmy/issues/1755) ([#1941](https://github.com/LemmyNet/Lemmy/issues/1941))
406 - Dont send email notifications for edited comments (fixes [#1925](https://github.com/LemmyNet/Lemmy/issues/1925))
407 - Fix API dupes query. [#1878](https://github.com/LemmyNet/Lemmy/issues/1878)
408 - Fixing duped report view for admins. Fixes [#1933](https://github.com/LemmyNet/Lemmy/issues/1933) ([#1945](https://github.com/LemmyNet/Lemmy/issues/1945))
409 - Adding a GetComment endpoint. Fixes [#1919](https://github.com/LemmyNet/Lemmy/issues/1919) ([#1944](https://github.com/LemmyNet/Lemmy/issues/1944))
410 - Fix min title char count for post titles. Fixes [#1854](https://github.com/LemmyNet/Lemmy/issues/1854) ([#1940](https://github.com/LemmyNet/Lemmy/issues/1940))
411 - Adding MarkPostAsRead to API. Fixes [#1784](https://github.com/LemmyNet/Lemmy/issues/1784) ([#1946](https://github.com/LemmyNet/Lemmy/issues/1946))
412 - background-jobs 0.11 ([#1943](https://github.com/LemmyNet/Lemmy/issues/1943))
413 - Add tracing ([#1942](https://github.com/LemmyNet/Lemmy/issues/1942))
414 - Remove pointless community follower sort. ([#1939](https://github.com/LemmyNet/Lemmy/issues/1939))
415 - Use once_cell instead of lazy_static
416 - Adding unique constraint for activity ap_id. Fixes [#1878](https://github.com/LemmyNet/Lemmy/issues/1878) ([#1935](https://github.com/LemmyNet/Lemmy/issues/1935))
417 - Making public key required. Fixes [#1934](https://github.com/LemmyNet/Lemmy/issues/1934)
418 - Change NodeInfo `links` to an array
419 - Fixing fuzzy_search to escape like chars.
420 - Fix build error in [#1914](https://github.com/LemmyNet/Lemmy/issues/1914)
421 - Fix login ilike bug. Fixes [#1920](https://github.com/LemmyNet/Lemmy/issues/1920)
422 - Fix Smithereen webfinger, remove duplicate webfinger impl (fixes [#1916](https://github.com/LemmyNet/Lemmy/issues/1916))
423 - Dont announce comments, edited posts to Pleroma/Mastodon followers
424 - Community outbox should only contain activities sent by community (fixes [#1916](https://github.com/LemmyNet/Lemmy/issues/1916))
425 - Remove HTTP signature compatibility mode (its not necessary)
426 - Implement rate limits on comments
427
428 ### Lemmy UI
429
430 - Fixed an issue with post embeds not being pushed to a new line [#544](https://github.com/LemmyNet/lemmy-ui/issues/544)
431 - Adding as and lt languages, Updating translations.
432 - Temp bans ([#524](https://github.com/LemmyNet/lemmy-ui/issues/524))
433 - Fix banner. Fixes [#466](https://github.com/LemmyNet/lemmy-ui/issues/466) ([#534](https://github.com/LemmyNet/lemmy-ui/issues/534))
434 - Making the modlog badge stand out more. Fixes [#531](https://github.com/LemmyNet/lemmy-ui/issues/531) ([#539](https://github.com/LemmyNet/lemmy-ui/issues/539))
435 - Add some fallback properties for display in older browsers ([#535](https://github.com/LemmyNet/lemmy-ui/issues/535))
436 - Private instances ([#523](https://github.com/LemmyNet/lemmy-ui/issues/523))
437 - Add nord theme. Fixes [#520](https://github.com/LemmyNet/lemmy-ui/issues/520) ([#527](https://github.com/LemmyNet/lemmy-ui/issues/527))
438 - Dont receive post room comments from blocked users. ([#516](https://github.com/LemmyNet/lemmy-ui/issues/516))
439 - Using console.error for error logs. ([#517](https://github.com/LemmyNet/lemmy-ui/issues/517))
440 - Fix issue with websocket buffer.
441 - Switching to websocket-ts. [#247](https://github.com/LemmyNet/lemmy-ui/issues/247) ([#515](https://github.com/LemmyNet/lemmy-ui/issues/515))
442 - Fix native language issue. (zh_Hant) ([#513](https://github.com/LemmyNet/lemmy-ui/issues/513))
443 - Fix tippy on component mount. Fixes [#509](https://github.com/LemmyNet/lemmy-ui/issues/509) ([#511](https://github.com/LemmyNet/lemmy-ui/issues/511))
444 - Fix docker latest ([#510](https://github.com/LemmyNet/lemmy-ui/issues/510))
445 - Enabling html tags in markdown. Fixes [#498](https://github.com/LemmyNet/lemmy-ui/issues/498)
446 - Fix comment scroll bug. Fixes [#492](https://github.com/LemmyNet/lemmy-ui/issues/492)
447 - Fixing error for null person_block. Fixes [#491](https://github.com/LemmyNet/lemmy-ui/issues/491)
448 - Trying to catch promise and json parse errors. [#489](https://github.com/LemmyNet/lemmy-ui/issues/489) ([#490](https://github.com/LemmyNet/lemmy-ui/issues/490))
449
450 # Lemmy Release v0.14.0: Federation with Mastodon and Pleroma (2021-11-17)
451
452 Today is an exciting day for the Lemmy project.
453
454 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.
455
456 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).
457
458
459 ## Major Changes
460
461 ### Federation code rewrite
462
463 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. 
464
465 Mastodon and Pleroma users can:
466
467 - View Lemmy communities, user profiles, posts and comments
468 - Follow Lemmy communities to receive new posts and comments
469 - Replies (mentions) work in both directions, including notifications
470
471 In addition, Pleroma users can exchange private messages with Lemmy users.
472
473 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.
474
475 ### Hardcoded slur filter removed
476
477 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.
478
479 ## Upgrade notes
480
481 Federation with Pleroma/Mastodon works automatically, you don't need to change anything, assuming that your allowlist/blocklist configuration permits it.
482
483 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.
484
485 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.
486
487 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.
488
489 ```
490 curl https://your-instance.com/api/v3/site | jq -c .federated_instances.linked
491 ```
492
493 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)
494
495 Follow the [Docker or Ansible upgrade instructions here.](https://join-lemmy.org/docs/en/administration/administration.html)
496
497 ## Lemmy-Ansible
498
499 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.
500
501 ## Changes
502
503 ### API
504
505 - There is now a `GetUnreadCount` in the API to check the count of your unread messages, replies, and mentions.
506 - 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) .
507
508 ### Lemmy Server
509
510 - More federation compat ([#1894](https://github.com/LemmyNet/Lemmy/issues/1894))
511 - Adding clippy:unwrap to husky. Fixes [#1892](https://github.com/LemmyNet/Lemmy/issues/1892) ([#1893](https://github.com/LemmyNet/Lemmy/issues/1893))
512 - Remove header guard for activitypub routes
513 - Add federation test cases for Smithereen and Mastodon
514 - Reduce stack memory usage in apub code
515 - Remove ActivityFields trait, deserialize into another struct instead
516 - 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))
517 - Correctly use and document check_is_apub_id_valid() param use_strict_allowlist
518 - Convert note.content and chat_message.content to html (fixes [#1871](https://github.com/LemmyNet/Lemmy/issues/1871))
519 - Upgrade background_jobs to 0.9.1 [#1820](https://github.com/LemmyNet/Lemmy/issues/1820) ([#1875](https://github.com/LemmyNet/Lemmy/issues/1875))
520 - Fix husky fmt hook. ([#1868](https://github.com/LemmyNet/Lemmy/issues/1868))
521 - Renaming to slur_filter. Fixes [#1773](https://github.com/LemmyNet/Lemmy/issues/1773) ([#1801](https://github.com/LemmyNet/Lemmy/issues/1801))
522 - Three instance inbox bug ([#1866](https://github.com/LemmyNet/Lemmy/issues/1866))
523 - Remove ansible from this repo. ([#1829](https://github.com/LemmyNet/Lemmy/issues/1829))
524 - Rewrite collections to use new fetcher ([#1861](https://github.com/LemmyNet/Lemmy/issues/1861))
525 - Dont blank out post or community info. Fixes [#1813](https://github.com/LemmyNet/Lemmy/issues/1813) ([#1841](https://github.com/LemmyNet/Lemmy/issues/1841))
526 - Format config/defaults.hjson before committing ([#1860](https://github.com/LemmyNet/Lemmy/issues/1860))
527 - Breaking apub changes ([#1859](https://github.com/LemmyNet/Lemmy/issues/1859))
528 - Pleroma federation2 ([#1855](https://github.com/LemmyNet/Lemmy/issues/1855))
529 - Create a custom pre-commit hook, generates config/defaults.hjson  ([#1857](https://github.com/LemmyNet/Lemmy/issues/1857))
530 - Add cargo metadata to all crates ([#1853](https://github.com/LemmyNet/Lemmy/issues/1853))
531 - Add both (De)Serialize to all models ([#1851](https://github.com/LemmyNet/Lemmy/issues/1851))
532 - Adding GetUnreadCount to the API. Fixes [#1794](https://github.com/LemmyNet/Lemmy/issues/1794) ([#1842](https://github.com/LemmyNet/Lemmy/issues/1842))
533 - Federate reports ([#1830](https://github.com/LemmyNet/Lemmy/issues/1830))
534 - 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))
535 - Dont allow posts to deleted / removed communities. Fixes [#1827](https://github.com/LemmyNet/Lemmy/issues/1827) ([#1828](https://github.com/LemmyNet/Lemmy/issues/1828))
536 - Dont swallow API errors (fixes [#1834](https://github.com/LemmyNet/Lemmy/issues/1834)) ([#1837](https://github.com/LemmyNet/Lemmy/issues/1837))
537 - Fix federation of initial post/comment vote (fixes [#1824](https://github.com/LemmyNet/Lemmy/issues/1824)) ([#1835](https://github.com/LemmyNet/Lemmy/issues/1835))
538 - Fix clippy warnings added in nightly ([#1833](https://github.com/LemmyNet/Lemmy/issues/1833))
539 - Admins can view all reports. Fixes [#1810](https://github.com/LemmyNet/Lemmy/issues/1810) ([#1825](https://github.com/LemmyNet/Lemmy/issues/1825))
540 - Adding a message_id to emails. Fixes [#1807](https://github.com/LemmyNet/Lemmy/issues/1807) ([#1826](https://github.com/LemmyNet/Lemmy/issues/1826))
541 - Generate config docs from code ([#1786](https://github.com/LemmyNet/Lemmy/issues/1786))
542 - Trying a background_jobs fix. [#1820](https://github.com/LemmyNet/Lemmy/issues/1820) ([#1822](https://github.com/LemmyNet/Lemmy/issues/1822))
543 - mark parent as read on reply ([#1819](https://github.com/LemmyNet/Lemmy/issues/1819))
544 - Move code to apub library ([#1795](https://github.com/LemmyNet/Lemmy/issues/1795))
545 - Adding honeypot to user and post creation. Fixes [#1802](https://github.com/LemmyNet/Lemmy/issues/1802) ([#1803](https://github.com/LemmyNet/Lemmy/issues/1803))
546 - Add database host back into config file ([#1805](https://github.com/LemmyNet/Lemmy/issues/1805))
547
548 ### Lemmy UI
549
550 - Updating translations.
551 - Fixing unload ([#487](https://github.com/LemmyNet/lemmy-ui/issues/487))
552 - Fix setup password. Fixes [#478](https://github.com/LemmyNet/lemmy-ui/issues/478) ([#484](https://github.com/LemmyNet/lemmy-ui/issues/484))
553 - Adding post comment scrolling hack. Fixes [#480](https://github.com/LemmyNet/lemmy-ui/issues/480) [#486](https://github.com/LemmyNet/lemmy-ui/issues/486)
554 - Navbar links ([#476](https://github.com/LemmyNet/lemmy-ui/issues/476))
555 - Try fixing crypto node bug. Fixes [#473](https://github.com/LemmyNet/lemmy-ui/issues/473) ([#474](https://github.com/LemmyNet/lemmy-ui/issues/474))
556 - Use community title and user display name for dropdown.
557 - Mahanstreamer userpage ([#471](https://github.com/LemmyNet/lemmy-ui/issues/471))
558 - Using i18next compatibility v3 ([#465](https://github.com/LemmyNet/lemmy-ui/issues/465))
559 - Show original created time tooltip ([#462](https://github.com/LemmyNet/lemmy-ui/issues/462))
560 - 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))
561 - 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))
562 - Show bot account info. Fixes [#458](https://github.com/LemmyNet/lemmy-ui/issues/458) ([#463](https://github.com/LemmyNet/lemmy-ui/issues/463))
563 - Very weak password check ([#461](https://github.com/LemmyNet/lemmy-ui/issues/461))
564 - Simplifying getunreadcount. ([#455](https://github.com/LemmyNet/lemmy-ui/issues/455))
565 - ui changes for marking comment as read on reply ([#454](https://github.com/LemmyNet/lemmy-ui/issues/454))
566 - hide mod actions appropriately fix [#441](https://github.com/LemmyNet/lemmy-ui/issues/441) ([#447](https://github.com/LemmyNet/lemmy-ui/issues/447))
567 - 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))
568 # Lemmy v0.13.3 Release (2021-10-13)
569
570 - Dont swallow API errors (fixes [#1834](https://github.com/LemmyNet/lemmy/issues/1834)) ([#1837](https://github.com/LemmyNet/lemmy/issues/1837))
571 - Fix clippy warnings added in nightly ([#1833](https://github.com/LemmyNet/lemmy/issues/1833))
572 - Fix federation of initial post/comment vote (fixes [#1824](https://github.com/LemmyNet/lemmy/issues/1824)) ([#1835](https://github.com/LemmyNet/lemmy/issues/1835))
573 - Trying a background_jobs fix. [#1820](https://github.com/LemmyNet/lemmy/issues/1820)
574
575 # Lemmy v0.13.0 Release (2021-09-30)
576
577 Since our last release earlier this month, we've had [~30](https://github.com/LemmyNet/lemmy/compare/0.12.0...main) commits to Lemmy.
578
579 ## Major Changes
580
581 - Added comment and post reporting in the front end, and cleaned up the reporting API. 
582   - *Note: these are local-only currently, reports are not yet federated.*
583 - The JWT secret is now auto-generated by the database. 
584   - *Note: this will log out all users, so users will have to log in again.*
585 - Lots of smaller UI fixes listed below.
586
587 ## Upgrade notes
588
589 ### Servers
590
591 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).
592
593 To upgrade your instance to `v0.13.0`, simply follow the instructions in the documentation:
594
595 - [Upgrade with manual Docker installation](https://join.lemmy.ml/docs/en/administration/install_docker.html#updating)
596 - [Upgrade with Ansible installation](https://join.lemmy.ml/docs/en/administration/install_ansible.html)
597
598 ## Changes
599
600 ### Lemmy Server
601
602 #### General
603
604 - Adding a user agent. Fixes [#1769](https://github.com/LemmyNet/lemmy/issues/1769)
605 - Ansible changes ([#1781](https://github.com/LemmyNet/lemmy/issues/1781))
606 - Clean up reporting ([#1776](https://github.com/LemmyNet/lemmy/issues/1776))
607 - Implement webmention support (fixes [#1395](https://github.com/LemmyNet/lemmy/issues/1395))
608 - Move jwt secret from config to database (fixes [#1728](https://github.com/LemmyNet/lemmy/issues/1728))
609 - Set a 10 char minimum password length.
610 - Dont pass accept-encoding header to pictrs (ref [#1734](https://github.com/LemmyNet/lemmy/issues/1734)) ([#1738](https://github.com/LemmyNet/lemmy/issues/1738))
611
612 #### API
613
614 - There are no breaking API changes, only the addition of reporting endpoints.
615 - 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) .
616
617 #### Federation
618
619 - Rewrite fetcher ([#1792](https://github.com/LemmyNet/lemmy/issues/1792))
620
621 ### Lemmy UI
622
623 - Adding bn, ml, and cs langs
624 - Reporting ([#434](https://github.com/LemmyNet/lemmy-ui/issues/434))
625 - Splitting login and signup pages. Fixes [#386](https://github.com/LemmyNet/lemmy-ui/issues/386) ([#431](https://github.com/LemmyNet/lemmy-ui/issues/431))
626 - Fixing image in newtab. Fixes [#382](https://github.com/LemmyNet/lemmy-ui/issues/382) ([#430](https://github.com/LemmyNet/lemmy-ui/issues/430))
627 - Navigate away from login page if already logged in. ([#429](https://github.com/LemmyNet/lemmy-ui/issues/429))
628 - Add username validation message. Fixes [#387](https://github.com/LemmyNet/lemmy-ui/issues/387) ([#428](https://github.com/LemmyNet/lemmy-ui/issues/428))
629 - Password strength meter ([#427](https://github.com/LemmyNet/lemmy-ui/issues/427))
630 - Fix community display name overflow. Fixes [#390](https://github.com/LemmyNet/lemmy-ui/issues/390) ([#425](https://github.com/LemmyNet/lemmy-ui/issues/425))
631 - Fix logout bug. Fixes [#391](https://github.com/LemmyNet/lemmy-ui/issues/391) ([#424](https://github.com/LemmyNet/lemmy-ui/issues/424))
632 - 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))
633 - 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))
634 - Adding Si simplifier ([#418](https://github.com/LemmyNet/lemmy-ui/issues/418))
635 - Fix profile paging. Fixes [#416](https://github.com/LemmyNet/lemmy-ui/issues/416) ([#417](https://github.com/LemmyNet/lemmy-ui/issues/417))
636 - 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))
637 - Add version to package.json . Fixes [#411](https://github.com/LemmyNet/lemmy-ui/issues/411)
638
639 # Lemmy v0.12.2 Release (2021-09-06)
640
641 - Fixing ARM64 builds.
642 - Fixing missing Arabic language in UI.
643 - Fixing wrongly shown subscribed communities on other user's profiles. [#402](https://github.com/LemmyNet/lemmy-ui/issues/402)
644 - Adding a robots.txt, thanks to @mahanstreamer. [#401](https://github.com/LemmyNet/lemmy-ui/pull/401)
645
646 # Lemmy v0.12.1 Release (2021-09-04)
647
648 Fixed several critical websocket bugs.
649
650 - Wasn't correctly getting comment parent user for mark as read. Fixes [#1767](https://github.com/LemmyNet/lemmy/issues/1767)
651 - Was using all recipients for simple comment return. Fixes [#1766](https://github.com/LemmyNet/lemmy/issues/1766)
652 - Fix comment scrolling bug. Fixes [#394](https://github.com/LemmyNet/lemmy-ui/issues/394)
653
654 # Lemmy v0.12.0 Release (2021-09-03)
655
656 ## Changes
657
658 Since our last release in April, we've had [~80](https://github.com/LemmyNet/lemmy/compare/0.11.0...main) commits to Lemmy.
659
660 ### Lemmy Server
661
662 #### Major Changes
663
664 *Note: Issue links are below.*
665
666 - @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.
667 - You can now block users and communities, and their posts / comments won't show up in your feed.
668 - Removed IFramely: Lemmy can now fetch site metadata on its own.
669 - New API docs at: https://join-lemmy.org/api
670
671 #### General
672
673 - Fix prod deploy script and clippy ([#1724](https://github.com/LemmyNet/lemmy/issues/1724))
674 - Fix image uploads. Fixes [#1725](https://github.com/LemmyNet/lemmy/issues/1725) ([#1734](https://github.com/LemmyNet/lemmy/issues/1734))
675 - Adding more site setup vars. Fixes [#678](https://github.com/LemmyNet/lemmy/issues/678) ([#1718](https://github.com/LemmyNet/lemmy/issues/1718))
676 - Dont append ? to url when cleaning it ([#1716](https://github.com/LemmyNet/lemmy/issues/1716))
677 - User / community blocking. Fixes [#426](https://github.com/LemmyNet/lemmy/issues/426) ([#1604](https://github.com/LemmyNet/lemmy/issues/1604))
678 - Swap out iframely ([#1706](https://github.com/LemmyNet/lemmy/issues/1706))
679 - Adding ModTransferCommunity to modlog in API. Fixes [#1437](https://github.com/LemmyNet/lemmy/issues/1437)
680 - Make sure bots aren't included in aggregate counts ([#1705](https://github.com/LemmyNet/lemmy/issues/1705))
681 - 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))
682 - When banning a user, remove communities they've created ([#1700](https://github.com/LemmyNet/lemmy/issues/1700))
683 - Distribute Lemmy via crates.io
684 - Simplify config using macros ([#1686](https://github.com/LemmyNet/lemmy/issues/1686))
685 - Simplify lemmy_context() function (dont return errors)
686 - 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))
687 - Add show_new_posts_notifs setting. Fixes [#1664](https://github.com/LemmyNet/lemmy/issues/1664) ([#1665](https://github.com/LemmyNet/lemmy/issues/1665))
688 - Adding shortname fetching for users and communities. Fixes [#1662](https://github.com/LemmyNet/lemmy/issues/1662) ([#1663](https://github.com/LemmyNet/lemmy/issues/1663))
689 - Upgrading deps, running clippy fix on nightly 1.55.0 ([#1638](https://github.com/LemmyNet/lemmy/issues/1638))
690 - Running clippy --fix ([#1647](https://github.com/LemmyNet/lemmy/issues/1647))
691 - Make captcha case-insensitive
692 - Remove tracking params from post url (fixes [#768](https://github.com/LemmyNet/lemmy/issues/768))
693 - Fix IPv6 port setup for Nginx ([#1636](https://github.com/LemmyNet/lemmy/issues/1636))
694 - Fix --cert-name for certbot. ([#1631](https://github.com/LemmyNet/lemmy/issues/1631))
695 - Change join.lemmy.ml to join-lemmy.org ([#1628](https://github.com/LemmyNet/lemmy/issues/1628))
696 - Upgrade pictrs. Fixes [#1599](https://github.com/LemmyNet/lemmy/issues/1599) ([#1600](https://github.com/LemmyNet/lemmy/issues/1600))
697 - Invalidate current logins on account deletion. Fixes [#1602](https://github.com/LemmyNet/lemmy/issues/1602) ([#1603](https://github.com/LemmyNet/lemmy/issues/1603))
698 - Upgrading api test deps ([#1608](https://github.com/LemmyNet/lemmy/issues/1608))
699 - 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))
700 - Add additional slurs configuration option. Closes [#1464](https://github.com/LemmyNet/lemmy/issues/1464). ([#1612](https://github.com/LemmyNet/lemmy/issues/1612))
701 - Updating to rust 1.51.0 ([#1598](https://github.com/LemmyNet/lemmy/issues/1598))
702 - Remove brotli, zstd dependencies for faster compilation
703
704 #### API
705
706 - 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) .
707
708 #### Federation
709
710 - Move resolving of activitypub objects to separate api endpoint (fixes #1584)
711 - Rewrite remaining activities ([#1712](https://github.com/LemmyNet/lemmy/issues/1712))
712 - Migrate comment inReplyTo field to single value (ref [#1454](https://github.com/LemmyNet/lemmy/issues/1454))
713 - Fix issue with protocol string in actor id generation ([#1668](https://github.com/LemmyNet/lemmy/issues/1668))
714
715
716 ### Lemmy UI
717
718 - Integrating resolve_user into search. ([#377](https://github.com/LemmyNet/lemmy-ui/issues/377))
719 - Add lazy loading of images. Fixes [#329](https://github.com/LemmyNet/lemmy-ui/issues/329) ([#379](https://github.com/LemmyNet/lemmy-ui/issues/379))
720 - Adding vi, sk, mnc, and cy languages. ([#378](https://github.com/LemmyNet/lemmy-ui/issues/378))
721 - Feature/user community block ([#362](https://github.com/LemmyNet/lemmy-ui/issues/362))
722 - Swapping out iframely. ([#374](https://github.com/LemmyNet/lemmy-ui/issues/374))
723 - Adding mod transfer community ([#373](https://github.com/LemmyNet/lemmy-ui/issues/373))
724 - Remove content more ([#372](https://github.com/LemmyNet/lemmy-ui/issues/372))
725 - Scroll to comments on post's x comments button ([#312](https://github.com/LemmyNet/lemmy-ui/issues/312))
726 - Remove websocket connection messages. Fixes [#355](https://github.com/LemmyNet/lemmy-ui/issues/355)
727 - Center spinner, make smaller. Fixes [#203](https://github.com/LemmyNet/lemmy-ui/issues/203)
728 - Fix font issues. Fixes [#354](https://github.com/LemmyNet/lemmy-ui/issues/354)
729 - 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))
730 - 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))
731 - Fix captcha replay bug. Fixes [#348](https://github.com/LemmyNet/lemmy-ui/issues/348) ([#349](https://github.com/LemmyNet/lemmy-ui/issues/349))
732 - 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))
733 - Don't use default subscribed for communities page.
734 - 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))
735 - Fix language bug on mobile browsers
736 - Collapse sidebar on mobile. Fixes [#335](https://github.com/LemmyNet/lemmy-ui/issues/335) ([#340](https://github.com/LemmyNet/lemmy-ui/issues/340))
737 - Re-organized components folder. ([#339](https://github.com/LemmyNet/lemmy-ui/issues/339))
738 - Fixing too many large spinners ([#337](https://github.com/LemmyNet/lemmy-ui/issues/337))
739 - Moving comment link to top bar. Fixes #307 ([#336](https://github.com/LemmyNet/lemmy-ui/issues/336))
740 - Fix/ws error messages ([#334](https://github.com/LemmyNet/lemmy-ui/issues/334))
741 - Make spinner bigger. Fixes [#203](https://github.com/LemmyNet/lemmy-ui/issues/203)
742 - Fix preview description html. Fixes [#110](https://github.com/LemmyNet/lemmy-ui/issues/110)
743 - Always show previous paginator, extract paginator component.
744 - Use better comment collapse icon, and add text. Fixes [#318](https://github.com/LemmyNet/lemmy-ui/issues/318)
745 - Fix symbols issue. Fixes [#319](https://github.com/LemmyNet/lemmy-ui/issues/319)
746 - Don't restore scroll position on page refresh. Fixes [#186](https://github.com/LemmyNet/lemmy-ui/issues/186)
747 - Insert triple backticks for 'code' button when multiple lines are selected. ([#311](https://github.com/LemmyNet/lemmy-ui/issues/311))
748 - Change join.lemmy-ui.ml to join-lemmy-ui.org
749 - Adding a comment here placeholder. Fixes [#301](https://github.com/LemmyNet/lemmy-ui/issues/301)
750 - Fix non-local community and person links. Fixes [#290](https://github.com/LemmyNet/lemmy-ui/issues/290)
751 - Fix navbar bug. Fixes [#289](https://github.com/LemmyNet/lemmy-ui/issues/289)
752 - Hide names of mods / admins without priveleges. Fixes [#285](https://github.com/LemmyNet/lemmy-ui/issues/285)
753 - Adding URL search type. Fixes [#286](https://github.com/LemmyNet/lemmy-ui/issues/286)
754 - Add a link to joinlemmy-ui on lemmy-ui.ml signup. Fixes [#235](https://github.com/LemmyNet/lemmy-ui/issues/235)
755 - Fix duped site description. Fixes [#281](https://github.com/LemmyNet/lemmy-ui/issues/281)
756
757 ## Upgrade notes
758
759 ### Servers
760
761 You may need to add this to your `lemmy.hjson`:
762
763 `pictrs_url: "http://pictrs:8080"`
764
765 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).
766
767 To upgrade your instance to `v0.12.0`, simply follow the instructions in the documentation:
768
769 - [Upgrade with manual Docker installation](https://join.lemmy.ml/docs/en/administration/install_docker.html#updating)
770 - [Upgrade with Ansible installation](https://join.lemmy.ml/docs/en/administration/install_ansible.html)
771
772 ### Clients / Apps
773
774 - 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) .
775
776 # Lemmy v0.11.3 Release (2021-07-30)
777
778 ## Changes
779
780 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.
781
782 ### Lemmy Server
783
784 - Blank out extra info for deleted or removed content. Fixes [#1679](https://github.com/LemmyNet/Lemmy/issues/1679) 
785 - Add show_new_posts_notifs setting. Fixes [#1664](https://github.com/LemmyNet/Lemmy/issues/1664)
786 - Fix issue with protocol string in actor id generation [#1668](https://github.com/LemmyNet/Lemmy/issues/1668)
787 - Adding shortname fetching for users and communities. Fixes [#1662](https://github.com/LemmyNet/Lemmy/issues/1662)
788 - Make captcha case-insensitive.
789 - Remove tracking params from post url (fixes [#768](https://github.com/LemmyNet/Lemmy/issues/768))
790 - Upgrade pictrs. Fixes [#1599](https://github.com/LemmyNet/Lemmy/issues/1599)
791 - Invalidate current logins on account deletion. Fixes [#1602](https://github.com/LemmyNet/Lemmy/issues/1602)
792 - Fix nsfw posts showing for non-logged in users. Fixes [#1614](https://github.com/LemmyNet/Lemmy/issues/1614)
793 - Add additional slurs configuration option. Closes [#1464](https://github.com/LemmyNet/Lemmy/issues/1464).
794 - Updating to rust 1.51.0
795
796 ### Lemmy UI
797
798 - Have setting to disable notifs for new posts. Fixes [#132](https://github.com/LemmyNet/lemmy-ui/issues/132)
799 - Remove max length constraints on actors. Fixes [#350](https://github.com/LemmyNet/lemmy-ui/issues/350)
800 - Fix captcha replay bug. Fixes [#348](https://github.com/LemmyNet/lemmy-ui/issues/348)
801 - Removing community and user routes in favor of shortnames. Fixes [#317](https://github.com/LemmyNet/lemmy-ui/issues/317)
802 - Add front end helpers 1 [(#346](https://github.com/LemmyNet/lemmy-ui/issues/346))
803 - Don't use default subscribed for communities page.
804 - Adding Listing type to communities page, default local. [#190](https://github.com/LemmyNet/lemmy-ui/issues/190)
805 - Fix language bug on mobile browsers.
806 - Collapse sidebar on mobile. Fixes [#335](https://github.com/LemmyNet/lemmy-ui/issues/335)
807 - Re-organized components folder. [(#339](https://github.com/LemmyNet/lemmy-ui/issues/339))
808 - Moving comment link to top bar. Fixes [#307](https://github.com/LemmyNet/lemmy-ui/issues/307)
809 - Make spinner bigger. Fixes [#203](https://github.com/LemmyNet/lemmy-ui/issues/203)
810 - Fix preview description html. Fixes [#110](https://github.com/LemmyNet/lemmy-ui/issues/110)
811 - Update darkly, make danger darker. Fixes [#16](https://github.com/LemmyNet/lemmy-ui/issues/16)
812 - Always show previous paginator, extract paginator component.
813 - Use better comment collapse icon, and add text. Fixes [#318](https://github.com/LemmyNet/lemmy-ui/issues/318)
814 - Fix symbols issue. Fixes [#319](https://github.com/LemmyNet/lemmy-ui/issues/319)
815 - Don't restore scroll position on page refresh. Fixes [#186](https://github.com/LemmyNet/lemmy-ui/issues/186)
816 - Insert triple backticks for 'code' button when multiple lines are selected. [(#311](https://github.com/LemmyNet/lemmy-ui/issues/311))
817 - Adding a comment here placeholder. Fixes [#301](https://github.com/LemmyNet/lemmy-ui/issues/301)
818 - Fix non-local community and person links. Fixes [#290](https://github.com/LemmyNet/lemmy-ui/issues/290)
819 - Fix navbar bug. Fixes [#289](https://github.com/LemmyNet/lemmy-ui/issues/289)
820 - Hide names of mods / admins without priveleges. Fixes [#285](https://github.com/LemmyNet/lemmy-ui/issues/285)
821 - Adding URL search type. Fixes [#286](https://github.com/LemmyNet/lemmy-ui/issues/286)
822 - Add a link to joinlemmy on lemmy.ml signup. Fixes [#235](https://github.com/LemmyNet/lemmy-ui/issues/235)
823 - Fix duped site description. Fixes [#281](https://github.com/LemmyNet/lemmy-ui/issues/281)
824
825 ### API
826
827 - Added `show_new_posts_notifs` boolean to `SaveUserSettings`, and `LocalUserSettings`.
828 - 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) .
829
830 ### Federation
831
832 - No changes in this release, but there will be many soon.
833
834 ## Upgrade notes
835
836 To upgrade your instance to `0.11.3`, simply follow the instructions in the documentation:
837
838 - [Upgrade with manual Docker installation](https://join-lemmy.org/docs/en/administration/install_docker.html#updating)
839 - [Upgrade with Ansible installation](https://join-lemmy.org/docs/en/administration/install_ansible.html)
840
841 # Lemmy v0.11.0 Release (2021-04-27)
842
843 ## Changes
844
845 Since our last release this month, we've had [~60](https://github.com/LemmyNet/lemmy/compare/0.10.0...main) commits to Lemmy.
846
847 ### Lemmy Server
848
849 #### Major Changes
850
851 - Add option to disable strict allowlist ( [#1486](https://github.com/LemmyNet/lemmy/issues/1486)) [documentation](https://join-lemmy.org/docs/en/federation/administration.html) 
852 - Add option to limit community creation to admins only ([#1587](https://github.com/LemmyNet/lemmy/issues/1587))
853 - Many search improvements:
854   - Don't search for communities or users when the id is included.
855   - Add creator id to search.
856
857 #### General
858
859 - Adding a user setting to show / hide scores. Fixes [#1503](https://github.com/LemmyNet/lemmy/issues/1503)
860 - Add option to hide read posts. Fixes [#1561](https://github.com/LemmyNet/lemmy/issues/1561)
861 - Mark accounts as bot, and hide bot posts/comments
862 - Adding a short site description, to be used for joinlemmy instance list
863 - Adding matrix id validation. Fixes [#1520](https://github.com/LemmyNet/lemmy/issues/1520)
864 - Adding users active monthly for community sort. Fixes [#1527](https://github.com/LemmyNet/lemmy/issues/1527)
865 - Don't allow zero-space char in display name. Fixes [#1317](https://github.com/LemmyNet/lemmy/issues/1317)
866 - Adding more rust captcha features. Fixes [#1248](https://github.com/LemmyNet/lemmy/issues/1248)
867 - Fixing slur filter regex. Fixes [#1593](https://github.com/LemmyNet/lemmy/issues/1593)
868
869 #### API
870
871 - Added `ChangePassword` as a separate endpoint from `SaveUserSettings`
872 - No other breaking changes, but many fields that were previously required are now optional.
873 - 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) .
874
875 #### Federation
876
877 - Implement federated bans fixes [#1298](https://github.com/LemmyNet/lemmy/issues/1298)
878 - Remote mods can update/delete/undelete communities.
879
880 ### Lemmy UI
881
882 - Updating translations.
883 - Add UI version to UI via docker. Fixes [#263](https://github.com/LemmyNet/lemmy-ui/issues/263)
884 - Add Korean language
885 - Add check for unused languages in update_translations.sh
886 - Validate matrix id on the front end. Fixes [#245](https://github.com/LemmyNet/lemmy-ui/issues/245)
887 - Communities page sorts by monthly active users. Fixes [#244](https://github.com/LemmyNet/lemmy-ui/issues/244)
888 - Correctly render HTML in popup notifications
889 - Fix html notif bug. Fixes [#254](https://github.com/LemmyNet/lemmy-ui/issues/254)
890 - Fixing issue with debounce. Fixes [#236](https://github.com/LemmyNet/lemmy-ui/issues/236)
891
892 ## Upgrade notes
893
894 ### Servers
895
896 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).
897
898 To upgrade your instance to `v0.10.0`, simply follow the instructions in the documentation:
899
900 - [Upgrade with manual Docker installation](https://join-lemmy.org/docs/en/administration/install_docker.html#updating)
901 - [Upgrade with Ansible installation](https://join-lemmy.org/docs/en/administration/install_ansible.html)
902
903 ### Clients / Apps
904
905 - 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) .
906
907 # Lemmy v0.10.3 Release (2021-04-07)
908
909 - Fixing instances page.
910 - Fixed unban not working.
911 - Fixed post title fetching and cross-post search.
912 - Fixed navigating to a user page.
913
914 # Lemmy v0.10.2 Release (2021-04-05)
915
916 - Forcing a crash if config.hjson fails to load. Should show errors easier.
917
918 # Lemmy v0.10.0 Release (2021-04-05)
919
920 ## Changes
921
922 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.
923
924 ### Lemmy Server
925
926 #### General
927
928 - Rewrote config implementation, finally allowing us to use newer Rust versions.
929 - Removed categories. 
930 - Various refactors.
931
932 #### API
933
934 - 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) .
935 - Login invalidation on password change, thanks to @Mart-Bogdan
936
937 #### Federation
938
939 - It is now possible to add users from other instances as community mods.
940 - Federating Matrix ID.
941 - Many changes for better compatibility with ActivityPub standard.
942
943 #### Database 
944
945 - Split the `user_` into `person` and `local_user` tables.
946 - Strictly typed commonly used ID columns, to prevent DB errors using `i32` as ids.
947 - Strictly typed URL fields, thanks to ajyoon.
948 - Created default DB forms, now used in all the unit tests.
949
950 ### Lemmy UI
951
952 - Now using utf-8 emojis.
953 - Support for all the above changes to Lemmy.
954 - Typescript-safe i18n strings, thanks to @shilangyu.
955 - Added expandable post text (click on open book icon).
956 - Prettier cross-posting, which does smart quoting.
957 - Bugfixes for restoring scroll position on post page, custom site favicons, and autocomplete for login fields.
958
959 ### Lemmy Docs
960
961 - Gazconroy built an [Async API spec for Lemmy](https://join-lemmy.org/api/index.html), that now serves as our main API docs.
962
963 ### join-lemmy.org
964
965 - Rewrote in inferno isomorphic, added i18n support via [weblate](https://weblate.yerbamate.ml/projects/lemmy/joinlemmy/).
966 - Added a section on the support page thanking contributors.
967 - Changed some page urls / titles
968
969 ## Upgrade notes
970
971 **Important**: there are multiple breaking changes:
972
973 - 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` ).
974 - The config format for `allowed_instances` and `blocked_instances` has changed, and you need to adjust your config file manually:
975     - before: `allowed_instances: ds9.lemmy.ml,enterprise.lemmy.ml`
976     - now: `allowed_instances: ["ds9.lemmy.ml", "enterprise.lemmy.ml"]` , and only one of the `allowed_instances` or `blocked_instances` blocks can be set.
977 - 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) .
978
979 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).
980
981 To upgrade your instance to `v0.10.0`, simply follow the instructions in the documentation:
982
983 - [Upgrade with manual Docker installation](https://join-lemmy.org/docs/en/administration/install_docker.html#updating)
984 - [Upgrade with Ansible installation](https://join-lemmy.org/docs/en/administration/install_ansible.html)
985
986
987 ## Compilation time
988
989 || v0.9.0 (Rust 1.47) | v0.10.0 (Rust 1.47) | v0.10.0 (Rust 1.51) |
990 |-| -------- | -------- | -------- |
991 |Clean | 140s     | 146s     | 119s     |
992 | Incremental | 28s | 22s | 19s |
993
994 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%).
995
996 v0.9.0 build graph:
997 ![](https://lemmy.ml/pictrs/image/GVBqFnrLqG.jpg)
998
999 v0.10.0 build graph:
1000 ![](https://lemmy.ml/pictrs/image/NllzjVEyNK.jpg)
1001
1002 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.
1003
1004 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.
1005
1006 # Lemmy v0.9.9 Release (2021-02-19)
1007
1008 ## Changes
1009
1010 ### Lemmy backend
1011 - Added an federated activity query sorting order.
1012 - Explicitly marking posts and comments as public.
1013 - Added a `NewComment` / forum sort for posts.
1014 - Fixed an issue with not setting correct published time for fetched posts.
1015 - Fixed an issue with an open docker port on lemmy-ui.
1016 - Using lemmy post link for RSS link.
1017 - Fixed reason and display name lengths to use char counts instead.
1018
1019 ### Lemmy-ui
1020
1021 - Updated translations.
1022 - Made websocket host configurable.
1023 - Added some accessibility features.
1024 - Always showing password reset link.
1025
1026 # Lemmy v0.9.7 Release (2021-02-08)
1027
1028 ## Changes
1029
1030 - Posts and comments are no longer live-sorted (meaning most content should stay in place).
1031 - Fixed an issue with the create post title field not expanding when copied from iframely suggestion.
1032 - Fixed broken federated community paging / sorting.
1033 - Added aria attributes for accessibility, thx to @Mitch Lillie.
1034 - Updated translations and added croatian.
1035 - No changes to lemmy back-end.
1036
1037 # Lemmy v0.9.6 Release (2021-02-05)
1038
1039 ## Changes
1040
1041 - Fixed inbox_urls not being correctly set, which broke federation in `v0.9.5`. Added some logging to catch these.
1042 - Fixing community search not using auth.
1043 - Moved docs to https://join-lemmy.org
1044 - Fixed an issue w/ lemmy-ui with forms being cleared out.
1045
1046 # Lemmy v0.9.4 Pre-Release (2021-02-02)
1047
1048 ## Changes
1049
1050 ### Lemmy
1051
1052 - Fixed a critical bug with votes and comment unlike responses not being `0` for your user.
1053 - Fixed a critical bug with comment creation not checking if its parent comment is in the post.
1054 - Serving proper activities for community outbox.
1055 - 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)
1056 - Made sure banned users can't follow.
1057 - Added `FederatedInstances` to `SiteResponse`, to show allowed and blocked instances. (Also added to lemmy-ui)
1058 - Added a `MostComments` sort for posts. (Also added to lemmy-ui)
1059
1060 ### Lemmy-UI
1061
1062 - Added a scroll position restore to lemmy-ui.
1063 - Reworked the combined inbox so incoming comments don't wipe out your current form.
1064 - Fixed an updated bug on the user page.
1065 - Fixed cross-post titles and body getting clipped.
1066 - Fixing the post creation title height.
1067 - Squashed some other smaller bugs.
1068
1069 # Lemmy v0.9.0 Release (2021-01-25)
1070
1071 ## Changes
1072
1073 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.
1074
1075 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).
1076
1077 We've also seen the first release of [Lemmur](https://github.com/LemmurOrg/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.
1078
1079 ## LemmyNet projects
1080
1081 ### Lemmy Server
1082
1083 - [Moved views from SQL to Diesel](https://github.com/LemmyNet/lemmy/issues/1275). This was a spinal replacement for much of lemmy.
1084   - Removed all the old fast_tables and triggers, and created new aggregates tables.
1085 - Added a `v2` of the API to support the hierarchical objects created from the above changes.
1086 - 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)
1087 - Split out documentation into git submodule.
1088 - Shortened slur filter to avoid false positives.
1089 - Added query performance testing and comparisons. Added indexes to make sure every query is `< 30 ms`.
1090 - Added compilation time testing.
1091
1092 ### Federation
1093
1094 This release includes some bug fixes for federation, and some changes to get us closer to compliance with the ActivityPub standard.
1095
1096 - [Community bans now federating](https://github.com/LemmyNet/lemmy/issues/1287).
1097 - [Local posts sometimes got marked as remote](https://github.com/LemmyNet/lemmy/issues/1302).
1098 - [Creator of post/comment was not notified about new child comments](https://github.com/LemmyNet/lemmy/issues/1325).
1099 - [Community deletion now federated](https://github.com/LemmyNet/lemmy/issues/1256).
1100
1101 None of these are breaking changes, so federation between 0.9.0 and 0.8.11 will work without problems.
1102
1103 ### Lemmy javascript / typescript client
1104
1105 - 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.
1106 - Drone now handles publishing its [npm packages.](https://www.npmjs.com/package/lemmy-js-client)
1107
1108 ### Lemmy-UI
1109
1110 - Updated it to use the `v2` API via `lemmy-js-client`, required changing nearly every component.
1111 - Added a live comment count.
1112 - Added drone deploying, and builds for ARM.
1113 - Fixed community link wrapping.
1114 - Various other bug fixes.
1115
1116
1117 ### Lemmy Docs
1118
1119 - We moved documentation into a separate git repository, and support translation for the docs now!
1120 - Moved our code of conduct into the documentation.
1121
1122 ## Upgrading
1123
1124 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).
1125
1126 - [Upgrade with manual Docker installation](https://join-lemmy.org/docs/en/administration/install_docker.html#updating)
1127 - [Upgrade with Ansible installation](https://join-lemmy.org/docs/en/administration/install_ansible.html)
1128
1129 # Lemmy v0.8.0 Release (2020-10-16)
1130
1131 ## Changes
1132
1133 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: 
1134
1135 Here are some of the bigger changes:
1136
1137 ### LemmyNet projects
1138
1139 - Created [LemmyNet](https://github.com/LemmyNet), where all lemmy-related projects live.
1140 - Split out the frontend into a separete repository, [lemmy-ui](https://github.com/LemmyNet/lemmy-ui)
1141 - Created a [lemmy-js-client](https://github.com/LemmyNet/lemmy-js-client), for any js / typescript developers.
1142 - 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/)
1143
1144 ### Lemmy Server
1145
1146 #### Federation
1147
1148 - The first **federation public beta release**, woohoo :fireworks: 
1149 - All Lemmy functionality now works over ActivityPub (except turning remote users into mods/admins)
1150 - Instance allowlist and blocklist
1151 - 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
1152 - Upgraded to newest versions of @asonix activitypub libraries
1153 - Full local federation setup for manual testing
1154 - Automated testing for nearly every federation action
1155 - Many additional security checks
1156 - Lots and lots of refactoring
1157 - Asynchronous sending of outgoing activities
1158
1159 ### User Interface
1160
1161 - Separated the UI from the server code, in [lemmy-ui](https://github.com/LemmyNet/lemmy-ui).
1162 - The UI can now read with javascript disabled! 
1163 - 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.
1164 - 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)
1165 - Improved the search page ( more features incoming ).
1166 - The default view is now `Local`, instead of `All`, since all would show all federated posts.
1167 - User settings are now shared across browsers ( a page refresh will pick up changes ).
1168 - A much leaner mobile view.
1169
1170 #### Backend
1171
1172 - Re-organized the rust codebase into separate workspaces for backend and frontend.
1173 - Removed materialized views, making the database **a lot faster**.
1174 - New post sorts `Active` (previously called hot), and `Hot`. Active shows posts with recent comments, hot shows highly ranked posts.
1175 - New sort for `Local` ( meaning from local communities).
1176 - Customizeable site, user, and community icons and banners.
1177 - Added user preferred names / display names, bios, and cakedays.
1178 - Visual / Audio captchas through the lemmy API.
1179 - Lots of API field verifications.
1180 - Upgraded to pictrs-v2 ( thanks to @asonix )
1181 - Wayyy too many bugfixes to count.
1182
1183 ## Contributors
1184
1185 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. 
1186
1187 ## Upgrading
1188
1189 - [with manual Docker installation](https://join-lemmy.org/docs/administration_install_docker.html#updating)
1190 - [with Ansible installation](https://join-lemmy.org/docs/administration_install_ansible.html)
1191
1192 ## Testing Federation
1193
1194 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/) ).
1195
1196 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.
1197
1198 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.
1199
1200 ### Connecting to another server
1201
1202 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.
1203
1204 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).
1205
1206 To connect with the `main` community on ds9, the search is `!main@ds9.lemmy.ml`.
1207
1208 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`
1209
1210 # Lemmy v0.7.40 Pre-Release (2020-08-05)
1211
1212 We've [added a lot](https://github.com/LemmyNet/lemmy/compare/v0.7.40...v0.7.0) in this pre-release:
1213
1214 - New post sorts `Active` (previously called hot), and `Hot`. Active shows posts with recent comments, hot shows highly ranked posts.
1215 - Customizeable site icon and banner, user icon and banner, and community icon and banner.
1216 - Added user preferred names / display names, bios, and cakedays.
1217 - User settings are now shared across browsers (a page refresh will pick up changes).
1218 - Visual / Audio captchas through the lemmy API.
1219 - Lots of UI prettiness.
1220 - Lots of bug fixes.
1221 - Lots of additional translations.
1222 - Lots of federation prepping / additions / refactors.
1223
1224 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.
1225
1226 ## Upgrading
1227
1228 **With Ansible:**
1229
1230 ```
1231 # run these commands locally
1232 git pull
1233 cd ansible
1234 ansible-playbook lemmy.yml
1235 ```
1236
1237 **With manual Docker installation:**
1238 ```
1239 # run these commands on your server
1240 cd /lemmy
1241 wget https://raw.githubusercontent.com/LemmyNet/lemmy/master/ansible/templates/nginx.conf
1242 # Replace the {{ vars }}
1243 sudo mv nginx.conf /etc/nginx/sites-enabled/lemmy.conf
1244 sudo nginx -s reload
1245 wget https://raw.githubusercontent.com/LemmyNet/lemmy/master/docker/prod/docker-compose.yml
1246 sudo docker-compose up -d
1247 ```
1248
1249
1250 # Lemmy v0.7.0 Release (2020-06-23)
1251
1252 This release replaces [pictshare](https://github.com/HaschekSolutions/pictshare)
1253 with [pict-rs](https://git.asonix.dog/asonix/pict-rs), which improves performance
1254 and security.
1255
1256 Overall, since our last major release in January (v0.6.0), we have closed over
1257 [100 issues!](https://github.com/LemmyNet/lemmy/milestone/16?closed=1)
1258
1259 - Site-wide list of recent comments
1260 - Reconnecting websockets
1261 - Many more themes, including a default light one.
1262 - Expandable embeds for post links (and thumbnails), from
1263 [iframely](https://github.com/itteco/iframely)
1264 - Better icons
1265 - Emoji autocomplete to post and message bodies, and an Emoji Picker
1266 - Post body now searchable
1267 - Community title and description is now searchable
1268 - Simplified cross-posts
1269 - Better documentation
1270 - LOTS more languages
1271 - Lots of bugs squashed
1272 - And more ...
1273
1274 ## Upgrading
1275
1276 Before starting the upgrade, make sure that you have a working backup of your
1277 database and image files. See our
1278 [documentation](https://join-lemmy.org/docs/administration_backup_and_restore.html)
1279 for backup instructions.
1280
1281 **With Ansible:**
1282
1283 ```
1284 # deploy with ansible from your local lemmy git repo
1285 git pull
1286 cd ansible
1287 ansible-playbook lemmy.yml
1288 # connect via ssh to run the migration script
1289 ssh your-server
1290 cd /lemmy/
1291 wget https://raw.githubusercontent.com/LemmyNet/lemmy/master/docker/prod/migrate-pictshare-to-pictrs.bash
1292 chmod +x migrate-pictshare-to-pictrs.bash
1293 sudo ./migrate-pictshare-to-pictrs.bash
1294 ```
1295
1296 **With manual Docker installation:**
1297 ```
1298 # run these commands on your server
1299 cd /lemmy
1300 wget https://raw.githubusercontent.com/LemmyNet/lemmy/master/ansible/templates/nginx.conf
1301 # Replace the {{ vars }}
1302 sudo mv nginx.conf /etc/nginx/sites-enabled/lemmy.conf
1303 sudo nginx -s reload
1304 wget https://raw.githubusercontent.com/LemmyNet/lemmy/master/docker/prod/docker-compose.yml
1305 wget https://raw.githubusercontent.com/LemmyNet/lemmy/master/docker/prod/migrate-pictshare-to-pictrs.bash
1306 chmod +x migrate-pictshare-to-pictrs.bash
1307 sudo bash migrate-pictshare-to-pictrs.bash
1308 ```
1309
1310 **Note:** After upgrading, all users need to reload the page, then logout and
1311 login again, so that images are loaded correctly.
1312
1313 # Lemmy v0.6.0 Release (2020-01-16)
1314
1315 `v0.6.0` is here, and we've closed [41 issues!](https://github.com/LemmyNet/lemmy/milestone/15?closed=1) 
1316
1317 This is the biggest release by far:
1318
1319 - Avatars!
1320 - Optional Email notifications for username mentions, post and comment replies.
1321 - Ability to change your password and email address.
1322 - Can set a custom language.
1323 - Lemmy-wide settings to disable downvotes, and close registration.
1324 - A better documentation system, hosted in lemmy itself.
1325 - [Huge DB performance gains](https://github.com/LemmyNet/lemmy/issues/411) (everthing down to < `30ms`) by using materialized views. 
1326 - Fixed major issue with similar post URL and title searching.
1327 - Upgraded to Actix `2.0`
1328 - Faster comment / post voting.
1329 - Better small screen support.
1330 - Lots of bug fixes, refactoring of back end code.
1331
1332 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.
1333
1334 https://lemmy.ml