Project

General

Profile

Actions

Feature #15456

open

Adopt some kind of consistent versioning mechanism

Added by ioquatix (Samuel Williams) about 5 years ago. Updated about 5 years ago.

Status:
Open
Assignee:
-
Target version:
-
[ruby-core:90686]

Description

After the discussion https://github.com/ruby/bigdecimal/issues/114 I feel like we would benefit from some consistent versioning mechanism across all of Ruby.

So far, I feel the majority of Ruby uses some form of semantic versioning.

For the sanity of all Ruby users, I think it would be a good policy to adopt this across core Ruby and standard gems.

There are some previous discussions around this:

So, the questions are as follows:

  • Can we adopt Semantic Versioning (or as much of it as possible) across Ruby?
  • Would such a change help users of Ruby?
  • Is there existing documentation about how version number works?
  • How does it deviate from Semantic Versioning?
  • Is this deviation important and worth the additional complexity for our users?

As an aside:

  • How do other implementations advertise compatibility with Ruby?
  • JRuby and RBX have totally different version numbers that are difficult to understand w.r.t. compatibility with mainline CRuby.

My main concern is how difficult this is for everyone to keep track of and also the implied assumptions (e.g. breaking change if and only if major versions bump). If different parts of Ruby use different versioning scheme, it is hard for our users to define dependencies which don't cause broken software.

Updated by shevegen (Robert A. Heiler) about 5 years ago

I was about to write a lot as a comment but I feel it just gets too long.

So a few comments - sorry for being short:

  • You should not forget that management of gems (code in these gems) also
    takes time away from developers who maintain/keep ruby up to date.

  • Gems, or code, that is distributed with ruby itself, should be of higher
    priority than code hosted on rubygems.org or elsewhere. I disagree with
    any other way around e. g. where rubygems would be able to induce
    changes onto ruby. I mention this specifically because in several of
    these github issues, it feels to me as if people ignore or forget that and
    I think this is bad. Not just in the links you provide above, but I also saw
    prior discussions here about other gems.

Ultimately I think the only thing that can be done here in the short term
is to improve gems + rubygems.org.

  • I agree with the consistency comment to some extent; in particular when
    gems in stdlib would break in major ways, that should probably lead to a
    situation where we could have multiple different versions, just as we have
    multiple different ruby versions. But this also brings us to the limitation of
    gems right now. We have only one name for a gem on rubygems.org (bundler
    allowed for more flexibility here with e. g. github-based projects); and
    we do not easily have multiple different versions available for different
    ruby versions or projects, in particular if some gems are pulled. That brings
    me back to the comment where I think gem + rubygems.org should be
    improved in the long run and provide more flexibility.

I understand that this does not directly have that much to do with your
issue about adopting a specific versioning scheme, but I think the
versioning is actually a secondary issue, as long as we provide as much
useful information as posible, while allowing users to use older gems too.
But this also brings us back to changing gems so ...

  • Last but not least, I think it may help what you specifically propose.

For example:

"breaking change if and only if major versions bump"

This is a perfectly fine suggestion, for those users who may be affected.

But I, for example, also WANT to be able to use more up to date code
and I don't mind breaking changes IF I can decide what to use and what
not to use; so I would not agree to your statement if it means that it
were to restrict me.

I am all in favour of heavily improving the whole gem ecosystem though;
some of this may have to come from core ruby and matz may have to
consider any changes there past 3.0. For example, "ownership" of
"namespaces" - I don't mean this in the sense of restricting what others
can do (I would be against this), but by providing meta-information
about any change made on top of duck patching any ruby code too.
But I digress. (On a side note, I do not version my gems, ironically enough,
largely because I got tired of gem telling me about my own gems and
own code that I could not easily install it - I always use the latest
version of my own code and gems, so I could not accept gems restricting
me here.)

Updated by naruse (Yui NARUSE) about 5 years ago

You can understand Ruby versioning as some kind of rolling release.
X.Y is decided with marketing consideration, though .Z is the same as Semantic Versioning's TEENY.
see also https://www.ruby-lang.org/en/news/2013/12/21/ruby-version-policy-changes-with-2-1-0/

Additional to say, I'm against the idea around X.Y of Semantic Versioning.
Through my experience including both CRuby development and business,
major version bump itself cause incompatibility in bundler ecosystems.

Moreover what you said in https://github.com/ruby/bigdecimal/issues/114 seems not
API incompatibility defined in Semantic Versioning.
Semantic Versioning says nothing about the application's dependency.

And you should propose suggestion with practical merit.
These days many people specify versions in Gemfile like gem "some-libs", "< 2".
Bumping casually Semantic Versioning breaks such Gemfile and gems dependency.

You should also check why we need to downgrade bundler to 1.17 and released RC2.
https://github.com/rubygems/rubygems/pull/2515
You need to learn how bumping major version cause problems before enforcing major version bump.

Updated by JonRowe (Jon Rowe) about 5 years ago

These days many people specify versions in Gemfile like gem "some-libs", "< 2".
Bumping casually Semantic Versioning breaks such Gemfile and gems dependency.

More people use gem "some-libs", "~> 2.0.0" and having breaking changes in a minor or patch release break the applications dependant on them.

This the typical style for web apps because it makes security updates easy to apply without changing a Gemfile / gemspec.

The whole point of a major version bump is stop both of these styles from accidentally picking up a breaking change.

Updated by ioquatix (Samuel Williams) about 5 years ago

Just for a point of reference, I use "~> x.y" for all my dependencies, as, taking into consideration semantic versioning, this allows for the maximum range of support but excluding breaking changes (i.e. x must stay the same, but y can increase).

This is all really good discussion, let's keep the ideas flowing.

Updated by naruse (Yui NARUSE) about 5 years ago

Just for a point of reference, I use "~> x.y" for all my dependencies, as, taking into consideration semantic versioning, this allows for the maximum range of support but excluding breaking changes (i.e. x must stay the same, but y can increase).

Yeah, as lib/rubygems/version.rb says people should use "~> x.y" to avoid breaking changes if you are pessimistic.

#   Specification From  ... To (exclusive)
#   ">= 3.0"      3.0   ... &infin;
#   "~> 3.0"      3.0   ... 4.0
#   "~> 3.0.0"    3.0.0 ... 3.1
#   "~> 3.5"      3.5   ... 4.0
#   "~> 3.5.0"    3.5.0 ... 3.6
#   "~> 3"        3.0   ... 4.0

But dropping old rubies will happen every year and it can affect gems to remove legacy code.
If it is considered as breaking changes as you said, it will cause major bump and it's false positive for normal users who runs application with current rubies.

I think such false positive hearts Semantic Versioning.

Updated by ioquatix (Samuel Williams) about 5 years ago

But dropping old rubies will happen every year and it can affect gems to remove legacy code. If it is considered as breaking changes as you said, it will cause major bump and it's false positive for normal users who runs application with current rubies.

I'm sorry, but I don't understand how this is a problem. Can you explain it in more detail with an example?

Updated by naruse (Yui NARUSE) about 5 years ago

ioquatix (Samuel Williams) wrote:

But dropping old rubies will happen every year and it can affect gems to remove legacy code. If it is considered as breaking changes as you said, it will cause major bump and it's false positive for normal users who runs application with current rubies.

I'm sorry, but I don't understand how this is a problem. Can you explain it in more detail with an example?

Mr.A create a1.gem and its version is 1.0 which support Ruby 2.0, 2.1, and 2.2.
Mr.B write an application which uses a1.gem and write in gem "a1", "~> 1.0" Gemfile.

Next year, Mr.A drops Ruby 2.0 support and released a1.gem as 2.0.
Mr.B update Gemfile as gem "a1", "~> 2.0".

Next year, Mr.A drops Ruby 2.1 support and released a1.gem as 3.0.
Mr.B update Gemfile as gem "a1", "~> 3.0".

Next year, Mr.A drops Ruby 2.2 support and released a1.gem as 4.0.
Mr.B update Gemfile as gem "a1", "~> 4.0".

Next year, Mr.A drops Ruby 2.3 support and released a1.gem as 5.0.
Mr.B update Gemfile as gem "a1", "~> 5.0".

This is yearly normal changes is syntactically equal to big bang change.

Updated by ioquatix (Samuel Williams) about 5 years ago

My understanding of semantic versioning is that what you depend on is not part of your public API. So, if you drop versions of Ruby, you can release new minor version, it's good enough.

Updated by Eregon (Benoit Daloze) about 5 years ago

Just one example where a popular gem was basically forced to keep compatibility with older versions, or needs a major version increase:
https://github.com/ruby-concurrency/concurrent-ruby/issues/768

I'd guess there are many other similar cases.
One concern there is gems depending on the gem removing compatibility are forced to drop compatibility for that Ruby version too, or have very strict version constraints (such as == last_working_version).

Updated by MSP-Greg (Greg L) about 5 years ago

I'm confused. I'll use major.minor.teeny

Next year, Mr.A drops Ruby 2.0 support and released a1.gem as 2.0.
Mr.B update Gemfile as gem "a1", "~> 2.0".

Next year, Mr.A drops Ruby 2.1 support and released a1.gem as 3.0.
Mr.B update Gemfile as gem "a1", "~> 3.0".

No mention as to whether the releases contain breaking API changes. If not, why a new 'major' release, vs a 'minor' release?

Or, if the only change is dropping compatibility with a Ruby version, why is a new major release required?

Updated by MSP-Greg (Greg L) about 5 years ago

Ok, maybe I'm not confused.

Assume gem a-1.8 exists with a lower Ruby version constraint of >= 2.0, and a-1.9 exists with a lower Ruby version constraint of >= 2.2.

If one has pessimistic versioning of major.minor, RubyGems will select 1.9, but won't be able to install it on Ruby 2.0.

This is due to the fact that RubyGems improperly handles Ruby version constraints. IMO, this issue discourages the use of newer Ruby versions and also newer gem versions. It should be fixed, and it should be added to new releases of both RubyGems 2.x and 3.x.

Updated by ioquatix (Samuel Williams) about 5 years ago

@Eregon (Benoit Daloze) If users are on 1.9.3, and the gem 1.0.5 supported it, and 1.1.0 didn't, I think you can argue that (a) it violates semantic versioning because a minor version bump broke the build but you could also argue that (b) it's compatible with semantic versioning because the ruby dependency is an internal detail to the gem (at least from it's own POV).

That being said, users who say gem 'concurrent-ruby', '~> 1.0' should correctly receive the latest compatible gem which suits their Ruby version, and that seems fine to me. The fact it's not being selected correctly might be a bug as @MSP-Greg (Greg L) seems to be pointing out?

Looking at the bigger picture, I see that there are two cases, highlighted by the linked issue: pain for old users, or pain for up to date users. Honestly, I don't care so much about users of old releases. I do believe it should keep working, but I'm more concerned with breaking users who are using the latest stable release. ¯\_(ツ)_/¯ - so I think it was a mistake for concurrent-ruby to yank the 1.1.0 release, that caused real issues with production deployments.

Updated by Eregon (Benoit Daloze) about 5 years ago

ioquatix (Samuel Williams) wrote:

so I think it was a mistake for concurrent-ruby to yank the 1.1.0 release, that caused real issues with production deployments.

Right, especially since nowadays gem yank even deletes the file on the RubyGems server, instead of just skipping the version for Bundler resolution.

But it does mean to drop 1.9 support, concurrent-ruby can only do so with a 2.0 release to keep '~> 1' users happy.

MSP-Greg (Greg L) wrote:

Assume gem a-1.8 exists with a lower Ruby version constraint of >= 2.0, and a-1.9 exists with a lower Ruby version constraint of >= 2.2.

If one has pessimistic versioning of major.minor, RubyGems will select 1.9, but won't be able to install it on Ruby 2.0.

This is due to the fact that RubyGems improperly handles Ruby version constraints. IMO, this issue discourages the use of newer Ruby versions and also newer gem versions. It should be fixed, and it should be added to new releases of both RubyGems 2.x and 3.x.

Do you mean that the ruby version constraint of the gems should be taken into account for version resolution, and currently it's not at all?

This seems an interesting path forward: only consider versions of a gem which are compatible with the Ruby version running RubyGems or Bundler (or ruby "2.x.y" in the Gemfile).

Actions

Also available in: Atom PDF

Like1
Like0Like0Like0Like0Like0Like0Like0Like0Like0Like0Like0Like0Like0