3/30/2025 at 1:20:29 PM
This post has clickbait vibe unfortunately and is really shallow regarding the analysis of the problem. No, it is not silly how we think about breaking changes. The idea of using some change log isn’t new and there are reasons why it’s not implemented by most build systems.The elephant in the room is changing business requirements. If the change requires the code to consume new parameter without reasonable defaults, no automatic migration would solve it reliably. Let’s say you deal with the money and you introduce currency field. The compiler of the client code cannot just assume the currency, neither it can take it from anywhere by just applying the migration. It is a manual operation to fix the broken code.
by ivan_gammel
3/30/2025 at 1:37:56 PM
I think the idea is the kernel of something very interesting. TA is right - in typed languages especially, why not add some extra metadata what would render many changes non-breaking?I think part of our hang-up is that we tend to think of code and data in very separate categories (except for literals, of course)--and only allow treating code as data after a lexer starts processing it (or via reflection or first-class functions at run time).
Correcting this category error and adding metadata (not just types) could yield all sorts of interesting ideas.
Like - as TA suggests, why not encode the notion of how a function signature has changed over time to enable automatic migrations?
by TimTheTinker
3/30/2025 at 3:28:45 PM
It’s not going to work. You cannot capture the meaning of the change with metadata.Let’s say you have this change:
BigDecimal doSomething();
to Money doSomething();
In theory metadata can capture the migration from a plain number to Money#amount() and compiler will generate a facade for the client code. But simply discarding the currency will have disastrous effects at some later point. Even relatively simple migration String->Number may go wrong without semantics. Language feature allowing such metadata and migrations will be a minefield.
by ivan_gammel
3/30/2025 at 3:41:52 PM
Sure, there are lots of examples of lossy migrations, even in databases.That doesn't mean migrations in general aren't a good idea.
And it doesn't invalidate the notion of metadata for code in general and all the possibilities that opens up.
by TimTheTinker
3/30/2025 at 3:50:46 PM
When I was writing about shallow analysis, I was meaning that we need to see those possibilities beyond trivial cases. It sounds cool on the surface, but the devil is in details. There are lots of examples I can come up with in few minutes of thinking that show how this idea may not work. I would really like to see how this may work in a way where it will do more good than harm.by ivan_gammel
3/30/2025 at 7:57:53 PM
A lot of that kernel is that dependency information is grossly coarse. For the vast majority of langs I ve used it is simply the library name: not even a library version (build files like gradle will).The node approach is very fine grained libraries, but that makes its own headaches
Really every function or interface invocation has an implicit version number. It should be explicit in the code, and that assumes major minor breaking change versioning.
by AtlasBarfed
3/30/2025 at 2:42:53 PM
[flagged]by RKFADU_UOFCCLEL