• @[email protected]
    link
    fedilink
    210 months ago

    It was made to do so, but failed from the start exactly because humans got involved. semver’s ideals can only happen when tooling generates the version number, not humans.

    • @[email protected]
      link
      fedilink
      210 months ago

      How can a machine decide if something is a patch, minor, or major release? I guess a major release could be defined by a comprehensive unit test suite breaking, but the others are very much something humans should decide.

      Imo, the solution is that people need to be less afraid of major release bumps. Do it frequently and it’s not likely to cause issues downstream.

      • @[email protected]
        link
        fedilink
        510 months ago

        It is quite simple conceptually to decide. Simply examine all the functions of the API between two versions. If the signatures are equivalent, increment the patch version. If there are new signatures, but the existing ones are the same, it’s a minor version. If any function signatures change, it’s a major version.

        Then you also need to examine trait impls and such but the basic idea is the same.

        • @[email protected]
          link
          fedilink
          410 months ago

          That oversimplifies and misses a lot of edge cases, such as:

          • change the meaning of an existing parameter - e.g. an Integer timeout changes from seconds to milliseconds
          • dependency changes, and this package exposes exposes types from that dependency
          • internal refactor changes the order of execution of existing uses (say, a scheduler change in an async library, or event order in a GUI library)

          Each of those would be, imo, a breaking change, but an automated semver tool would probably mark them as patch releases. I could come up with more examples, but hopefully the point is clear.

          Maybe it’s correct 90% of the time, but the last 10% of the time can be really impactful. I think there should be less sigma against major releases. If in doubt, mark it as a major release.

          • @[email protected]
            link
            fedilink
            010 months ago

            change the meaning of an existing parameter - e.g. an Integer timeout changes from seconds to milliseconds

            Ideally you should change the type if you do such a thing, which would cause it to become a breaking change. In this specific instance, you should take std::time::Duration obviously.

            dependency changes, and this package exposes exposes types from that dependency

            I think that should be automatically detectable?

            But yes you’re right, in general it’s not possible to detect all forms of semver changes. But perhaps at least detecting violations when they weren’t meant to be there would be good.

            And yea 100% agree with you, people should use the power that is 2.0.0 way more than they currently do.

            • @[email protected]
              link
              fedilink
              210 months ago

              Ideally you should change the type if you do such a thing

              But that’s not always possible or desirable. For example, maybe you’re largely just passing it through to another library, and that library made a breaking change.

              So I don’t think we should have semver always handled automatically, it should instead prompt the developer with its best guess, and the developer would ideally only move from patch -> minor, patch -> major, or minor -> major, and never the other direction. But the developer should always be involved in picking the version. So don’t just throw it into CI and call it a day, but instead have a CLI tool that suggests it and requires developer approval before making the PR for the version bump.

      • webbureaucrat
        link
        fedilink
        -110 months ago

        @sugar_in_your_tea If you’re interested, I recommend looking at how Elm does it. Elm has automatic semver enforcement in its package system.

        The long and the short is
        missing stuff: major change
        new stuff: minor change
        patch: internal implementation change.

        • @[email protected]
          link
          fedilink
          110 months ago

          I gave a more thorough response with examples to the other user that replied (link on my instance here, but basically there are cases where you could break someone’s code with a patch release.

          I’m completely fine with using tools to help decide what versions to assign, but in general developers should not hesitate to increment the major version if there’s any doubt.