SPIKE: When should a major behavioural version be reflected in the implementation version?
Description
Environment
Potential Workaround
Checklist
hideTestRail: Results
Activity
Marc JohnsonJanuary 28, 2019 at 12:45 PM
@Julian Ladisch Thanks for updating the description in this issue. Apologies for my initially negative reaction to those edits.
I've attempted to answer the existing questions below. Given that the core platform team owns this decision and my significant bias I shall try to refrain from commenting further unless invited to do so.
Implementation version
@Jakub Skoczen I'd prefer if we kept the specific mod-inventory-storage decision and the policy guidance conversations separate, although, that may not be as possible as I thought given the different opinions.
From @Julian Ladisch opinion above, I think he believe we should not change the implementation version until formal release (and presumably base this upon the closed issues in JIRA)?
I have an obvious and clear bias in both the specific issue for mod-inventory-storage and in the general policy for updating the implementation version during a pull request (much like I also did for news during that conversation). As I believe it is allows people to use the github repository as a source of change information and better reflects expectations for snapshot artefacts.
@Julian Ladisch and @Adam Dickmeiss have both helped me to realise that is at odds with potential merge conflicts, and the desire to keep pull requests version / change management agnostic, and might make applying changes to bug fix releases more involved.
Interface version
@jakub I believe this is a separate policy, though as you suggest, a major interface bump would effectively mean a major implementation version bump is also expected.
From my recollection of previous conversations, we agreed that interface versions are effectively published by merging to master and therefore should be made within pull requests (and it means that we might move multiple minor versions within a single formal release).
I think changing the interface version for behaviour not described within the interface itself is a challenging area with significant trade-offs (especially if we intend to support replaceability). I think making that decision depends upon what we include in the interface.
If the CQL indexes supported are an implicit part of the interface, then yes, this would be a major interface version change too. If we do that, we need to manage that cascade through the various modules that use this interface (which I think we were intending to avoid).
Jakub SkoczenJanuary 28, 2019 at 12:24 PM
@Marc Johnson @Julian Ladisch @Adam Dickmeiss
Guys, should we change the interface version in the case of MODINVSTOR-248? In reality we are removing the ability to filter by itemId, so the interface conceptually has changed, even though this is not reflected in the RAML/JSON Schema?
In general, should we consider changing the interface version for intended major behavioural changes? I am assuming this would then happen on the PR and it can be a hint to the lead maintainer to also bump the major implementation version number.
Julian LadischJanuary 28, 2019 at 11:53 AMEdited
I prefer option 3. SNAPSHOT versions can change, they are indented to be used by developers only, and not by any potentially client.
Create a formal release if there is a client that needs them.
Jira has the "Fix Version/s" field for each issue where one can see what version change (bugfix/minor/major) this issue requires. Neither NEWS.md nor the -SNAPSHOT version in pom.xml reflect all changed made to master until a formal release is done.
Marc JohnsonJanuary 28, 2019 at 10:54 AM
@Jakub Skoczen @Julian Ladisch @Niels Erik Nielsen @Adam Chandler @Eric Valuk I would appreciate your thoughts on this? Feel free to invite other interested people to participate as well.
Marc JohnsonJanuary 28, 2019 at 10:47 AM
My Personal Perspective
Option 3, merging without a version change (which occurred for https://folio-org.atlassian.net/browse/MODINVSTOR-248#icft=MODINVSTOR-248) leads to a snapshot version of the previous version containing the breaking change, which to me is IMO misleading and confusing for potentially client.
Option 1, involves planning a formal release prior to merging the pull request requiring greater coordination.
My preference is for option 2, as it does not exclude option 1 if we want to formally release prior to it, whilst also trying to make snapshot versions clear.
Context
Recently, a pull request was merged for MODINVSTOR-248: filtering /item-storage/items when used with 'query=id=XXX' is too slowClosed which contained a known behavioural incompatibility with the existing code.
This change initially had a change to the major implementation version of the module from
<version>14.1.0-SNAPSHOT</version>
to<version>15.0.0-SNAPSHOT</version>
in the pom.xml, however that was removed.(A similar issue occurred in the resolution of FOLIO-1720: Testing environment unavailable due to incompatibility between mod-gobi and mod-ordersClosed where the API itself had changed but the interface versions and implementation versions had not)
The release procedures say:
"For … the next post-release “new development version” … specify the next “minor” version. For example 2.18.0-SNAPSHOT rather than 2.17.1-SNAPSHOT".
"Only the release manager should ever need to write to the NEWS file. Using Jira versions and Git log, they can decide what happened in this branch."
However, the release procedures do not answer the question of this Jira.
Question
When a major behavioural change is to be made to a module, when should the version change?
Should it be within the pull request, prior to it via the next snapshot version of a formal release or afterwards in a separate pull request for a formal release?
Example
Module A has implementation version 14.1.0-SNAPSHOT on the head of master
Pull request P has a major breaking implementation change (that means the release version containing this should be 15.0.0)
Should we either:
Release version 14.1.0 formally, setting the next snapshot version to 15.0.0-SNAPSHOT pre-emptively, knowing we want to soon merge the pull request P?
Change the version to 15.0.0-SNAPSHOT in the pull request P?
Merge pull request P without an implementation version change, and the release manager changes the version during the next formal release to 15.0.0 (without 15.0.0-SNAPSHOT)?
If the situation is different and there is a bugfix/patch pull request Q and the last formal release was 14.0.0 when should the version 14.1.0-SNAPSHOT in the pom.xml changed to 14.0.1-SNAPSHOT or 14.0.1?
Change the version to 14.0.1-SNAPSHOT in a separate pull request before merging Q?
Change the version to 14.0.1-SNAPSHOT in the pull request Q?
Merge pull request Q without an implementation version change, and the release manager changes the version during the next formal release to 14.0.1 (without 14.0.1-SNAPSHOT)?
If I have missed available options, please do feel free to add them. Or ask questions.