Thank you for all the hard work!
Announcements
Official announcements from the Lemmy project. Subscribe to this community or add it to your RSS reader in order to be notified about new releases and important updates.
You can also find major news on join-lemmy.org
No probs!
Big thanks to all maintainers and contributors!
Good to hear it’s out 🎉 I’m so hyped for the image proxy. Storing images permanently was costly.
Yep, major thanks to @asonix for adding this to pict-rs.
Congratulations on yet another release filled with enhancements that improve user experience. 🎉
o7
Great stuff peeps! Looks like my future is very busy with having to do a complex pictrs upgrade and then a postgres and finally lemmy. Oof! 😅
Thx! Let me know if the postgres upgrade helper script I provided has any issues.
My postgres is on bare metal, so I don't think the script is setup for that,is it?
The script is pretty easy to read and follow along manually if you need to.
The script will be useless to you, besides for referencing what to do.
Export, remove pg15, install pg16, import. I think you can streamline with both installed at once as they correctly version. You could also use the in place upgrade. Aptly named: pg_upgradeclusters
But updating to 0.19.4, you do not need to go to pg16... but... you should, because of the benefits!
What benefits do you mean?
A faster db. Just the regular performance benefits, https://www.postgresql.org/about/news/postgresql-16-released-2715/
Also, Lemmy is built against v16 (now) so at some point it will eventually no longer JustWork
In order to improve interoperability with Mastodon and other microblogging platforms, Lemmy now automatically includes a hashtag with new posts. The hashtag is based on the community name, so posts to /c/lemmy will automatically have the hashtag #lemmy. This makes Lemmy posts much easier to discover.
this should be interesting
for reference, this is what it looks like on Mastodon, the post to !announcements@lemmy.ml it gets the hashtag for announcements
https://mastodon.social/@dessalines@lemmy.ml/112576601493225058
it's not really part of the message text, it's separate
image proxying also sounds good
I'm pretty sure thats due to how mastodon renders hashtags at the end of a post. Not due to how Lemmy sends it.
That's great progress, thanks for all the work!
Glad to see enhanced federation with rest of fediverse - a small detail : the link for 'Automatically includes a hashtag with new posts' should point to pull #4533 (not #4398 ) - should help discoverability from mastodon, especially if community tags become customisable.
Awesome! Thank you!
Thanks for all the hard work
That's an impressive list of QoL updates, thanks :)
I know pre 1.x.x is kind of a wild west for versioning but uh is there any logic to the version numbers here? I'd think a new feature would be a minor version bump, not patch
The convention in many Rust projects is usually that before 1.0, the patch version behaves like the minor version and the minor version behaves like a major version. So once there are breaking changes, they go to 0.20.0.
This is correct, and we've been following this for lemmy too.
This is the case with a lot of apps that follow SemVer, even though it's not an official part of the spec. It's not specific to Rust.
The other common thing I see is that if it's been at 0.x for a long time, the minor version number eventually gets "promoted" to a major version number once the app is stable. For example, React went from 0.14.x to 15.0.0.
That's my bad really. Currently we're using the patch semver to denote non-breaking changes, and the minor for breaking.
We're holding off on a major release until the API reaches stable, which like all open source projects we're reticent to do because then it puts a lot of pressure on us to match the standard of enterprise-level software developed by a large corporation.
Even though lemmy has many thousands of monthly active users, we're still really an beta-level software developed by a handful of people.
Honestly, that strategy feels like the most sensible one, since the real world often does not (or can not afford to) care to wait for v1.0.0 before using software. It's no wonder so many programming ecosystems have adopted it.
I find it a bit of a shame it's not part of the semver specification itself, which only states:
- (paraphrased) do whatever you want haha
My point is, I don't think that's "your bad." It's just how it is, and the best there currently is. Unless you think there's something that could've been done better, in which case I'm curious as to what, if you're willing to share.
Mr. Dessalines and Principal Nutomic were in the closet making 19.4 and I used one of the pre-releases and the pre-release gave me Havana Syndrome and made me into a Manchurian Candidate!
Amazing! So many features that people have been requesting. Really impressive release 🫡
Nice work
Well that settles it, I had my doubts if I should create an account and commit yo this platform as I wasn't sure if it was here to stay or not and if something like sublinks or piefed will come out on top but yeah its this update that answered it for me and I have made a permanent account lol.
That's some good improvements you have there. Great work, and thank you.
lemm.ee have upp'd to 0.19.4, and presumably turned on the Image Proxying thing - this is what I get for: https://lemm.ee/post/34040618
{"error":"unknown","message":"Request error: error sending request for url ([http://127.0.0.1:8080/image/original?proxy=https://ichef.bbci.co.uk/news/1024/branded_news/be3c/live/2a45fdb0-20ee-11ef-a3ab-e73c00cc3104.jpg)](http://127.0.0.1:8080/image/original?proxy=https://ichef.bbci.co.uk/news/1024/branded_news/be3c/live/2a45fdb0-20ee-11ef-a3ab-e73c00cc3104.jpg)): operation timed out"}
Incredible update, well worth the wait!
Congrats to everyone involved :D
The "automatically includes a hashtag with new posts" link goes to the wrong PR.
This looks like a fantastic update! Huge thanks to everyone involved!
Any plans to enable server plugins/ extensions?
Or are those already possible?
Thanks
No that's not merged yet, still needs more feedback from plugin devs.
there is an in-progress proof of concept here https://github.com/LemmyNet/lemmy/pull/4695
if you have a Github account you can "subscribe" to that to get email updates about it
something that didn't get mentioned but I think is nice, the Chat view has been fixed!
https://github.com/LemmyNet/lemmy-ui/issues/1639#issuecomment-2172090390
I believe it was fixed here https://github.com/LemmyNet/lemmy-ui/pull/2480
it even allows sorting in either direction, you can do Chat view with New or Old sort!
The upgrade went smoothly for me. Be smart with your backups with this one!
Upgrading to postgres 16 was the hardest part. You need to pg_dump the lemmy database, upgrade to postgres 16 (which will complain in the logs that the current data isn't compatible), delete the database folder (don't delete the backup file from pg_dump!), then import the backup file into postgres 16.
I had already upgraded pict-rs to version 0.5+ so that was easy.
Then I compared the new lemmy.hjson with what I already had to get the new pict-rs setting for proxied images (turned off for now).
Overall a lot more complex than previous upgrades.
Be smart with your backups with this one!
One more thing to consider if you're using Debian 12 is it comes with postgres 15, so if you you're using the bare metal to make backups, you'll need to install postgres 16 using the instructions here.
It's good to see enhancement in moderations tools , there was a lot of feedback on that so i am happy this is being worked on.
With that said donations seem at a all time low (3,524), lower then when the new website started reporting donations ($3,962). on june 2 it was €4,010 , could the lemmy.ml censorship drama be related to this? maybe there is a way to mitigate this event?
could the lemmy.ml censorship drama be related to this?
I think it’s just cooling down from Reddit migration. Same thing with Voyager donations (albeit smaller scale).
Amazing work! Thanks a lot!! Took me a few days to get to it but I have upgraded now and it looks great 😄
https://pfefferle.org/hello-lemmy-part2/ this is offline. Is there other example?
https://pfefferle.org/openweb-icons/ this other post is working