this post was submitted on 06 Feb 2025
8 points (100.0% liked)

Programmer Humor

32010 readers
1191 users here now

Welcome to Programmer Humor!

This is a place where you can post jokes, memes, humor, etc. related to programming!

For sharing awful code theres also Programming Horror.

Rules

founded 3 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] bleistift2@sopuli.xyz 1 points 1 year ago (1 children)
location /old_api {
  redirect /new_api
}

(can’t be bothered to check the syntax).

[–] CosmicTurtle0@lemmy.dbzer0.com 1 points 1 year ago (1 children)

If you have a major version change, it means that old API calls will break against the new API, assuming they are accurately following semver.

[–] bleistift2@sopuli.xyz 1 points 1 year ago

You’re absolutely right. In my mind “feature parity” got garbled into “backwards compatibility”.