You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Now that we've fundamentally changed nearly all the data structs, there's no reason to keep an api/v3 in the codebase. Nearly every data structure was changed with #5482 .
As one example:
GET /community/id=? now returns CommunityViews whose data structure is completely changed, regardless of the api structure. Clients thinking they can hit api/v3 and they will receive the same data structures as lemmy 0.19, will be wrong.
Apps should either use backwards-compatible API libraries like MV-GH's for kotlin, or pull down tagged libraries as git submodules (IE lemmy-js-client v0.19, v1.0, etc).
They can which decide which to use based on the lemmy version from GetSite or Nodeinfo.
The text was updated successfully, but these errors were encountered:
Before doing this we need to be sure that all major Lemmy apps are updated to support the new API. Otherwise instances would stay on 0.19 for a long time to ensure that app users dont get problems. This was part of the reason why lemmy.world stayed on 0.19.3 for so long. In the worst case we may have to keep supporting 0.19 with new updates for a long time. So to avoid that we should make the transition to 1.0 as smooth as possible.
Agree, making issues on their repos is a great idea. We'll have to give a lot of time for app devs to prepare for 1.0.0 , as its a completely changed API.
I'll rename this issue to be about that.
dessalines
changed the title
Remove api_routes/v3 , and rename api_routes_v4.rs.
Open issues on popular lemmy apps to prepare for 1.0.0 release
Mar 17, 2025
Now that we've fundamentally changed nearly all the data structs, there's no reason to keep an
api/v3
in the codebase. Nearly every data structure was changed with #5482 .As one example:
GET /community/id=?
now returnsCommunityView
s whose data structure is completely changed, regardless of the api structure. Clients thinking they can hit api/v3 and they will receive the same data structures aslemmy 0.19
, will be wrong.Apps should either use backwards-compatible API libraries like MV-GH's for kotlin, or pull down tagged libraries as git submodules (IE lemmy-js-client
v0.19
,v1.0
, etc).They can which decide which to use based on the lemmy version from
GetSite
or Nodeinfo.The text was updated successfully, but these errors were encountered: