Context
- https://github.com/LemmyNet/lemmy/issues/2987
- https://github.com/LemmyNet/lemmy/commit/7c2445efe73de5b701ecb7d0b90167c1a4e29a6a
As the issue is closed, the feature should be around, and it seems like it is there based on the commit. But if yes, how do we use it?
Looks like it’s brand new. The fix was only committed in September, and maybe not even on the main branch? I’m not completely sure, but it looks like it’s coming, as opposed to something that’s already here.
Makes me happy to hear this important feature is about to become reality! <3
Lemmy 0.19.6 and 0.19.7 were released in November, shouldn’t this change be included in those versions?
https://join-lemmy.org/news/2024-11-15_-_Lemmy_Release_v0.19.7
Looks to me like it’s in the “main” branch but not in 0.19.7. Maybe the release branch was forked before it went in? Maybe there’s active development on a 0.20-targeted line, with some fixes getting backported to 0.19 as they’re needed? I don’t know. But I think it’s in the development branch, but hasn’t made it to production quite yet.
$ git checkout main Switched to branch 'main' Your branch is up to date with 'origin/main'. $ grep 'Rewrite markdown' api_tests/src/post.spec.ts test("Rewrite markdown links", async () => { $ git checkout 0.19.7 HEAD is now at fc8280a9b Version 0.19.7 $ grep 'Rewrite markdown' api_tests/src/post.spec.ts $
This is correct, the changes on main branch will be released as 0.20 because there are lots of breaking changes now. We sometimes backport commits to 0.19.x, but only for minor changes or bug fixes.
@Blaze@feddit.org
Thank you for clarifying!
Ah, that could be it, thanks!