Add \Drupal::getMajorVersion()

Created on 7 May 2020, about 4 years ago
Updated 20 July 2023, 11 months ago

Problem/Motivation

This is a followup to #3133305: Use \Drupal::VERSION to get the version in Migrate UI rather than hardcoding it โ†’
In #5 โ†’ over there daffie suggested:

We will now be calculating the major version 6 times. Would it not be better to add a new method to the class \Drupal. Something like: \Drupal::getMajorVersion()

This issue to to do that.

Proposed resolution

TBD.

  1. . Nope, ruled out by @xjm and @catch as too much of a maintenance burden whenever we open a new major branch.
  2. Add a tiny \Drupal::getMajorVersion() method.
  3. Add this method somewhere else in core/lib/Drupal/Core somewhere (TBD)

Remaining tasks

  1. Decide on where the function should live.
  2. Update the code and tests for it.
  3. Reviews and refinements.
  4. RTBC.
  5. Commit.

User interface changes

None.

๐Ÿ“Œ Task
Status

Needs work

Version

11.0 ๐Ÿ”ฅ

Component
Baseย  โ†’

Last updated 1 minute ago

Created by

๐Ÿ‡ณ๐Ÿ‡ฟNew Zealand quietone New Zealand

Live updates comments and jobs are added and updated live.
  • Needs release manager review

    It is used to alert the release manager core committer(s) that an issue significantly affects the overall technical debt or release timeline of Drupal, and their signoff is needed. See the governance policy draft for more information.

Sign in to follow issues

Comments & Activities

Not all content is available!

It's likely this issue predates Contrib.social: some issue and comment data are missing.

  • ๐Ÿ‡บ๐Ÿ‡ธUnited States smustgrave

    See that a change record has been added.
    Issue summary is clear what the proposed solution is.
    Tests are included.
    Typehints added.

    Looks good!

  • ๐Ÿ‡ฌ๐Ÿ‡งUnited Kingdom longwave UK

    It strikes me that given this is effectively returning a constant, why don't we just declare \Drupal::MAJOR_VERSION as a constant and use that?

  • ๐Ÿ‡ฌ๐Ÿ‡งUnited Kingdom alexpott ๐Ÿ‡ช๐Ÿ‡บ๐ŸŒ

    @longwave it becomes something to maintain and possibly get out-of-sync? I guess we should add a test for that. It is what Symfony does - see \Symfony\Component\HttpKernel\Kernel

    I think you're right - adding a constants for this makes sense - but it feels like something that needs all the RMs to agree on as this constant will be maintained by you.

  • Status changed to Needs review over 1 year ago
  • ๐Ÿ‡ฌ๐Ÿ‡งUnited Kingdom longwave UK

    I don't see an issue with it if we add a test, given that this only needs to change every two years or so.

  • ๐Ÿ‡บ๐Ÿ‡ธUnited States xjm

    Werenสปt we discussing getting this information from Composer?

  • ๐Ÿ‡บ๐Ÿ‡ธUnited States xjm

    Iสปm thinking of https://www.drupal.org/project/drupal/issues/3266523 โ†’ but I think we could use a similar approach for this metadata.

  • ๐Ÿ‡บ๐Ÿ‡ธUnited States smustgrave

    @xjm if you pulled it from composer what do you pull? "drupal/core" would return "self.version" so then would still need a lookup? Maybe I'm reading that wrong.

  • ๐Ÿ‡ฌ๐Ÿ‡งUnited Kingdom longwave UK

    Yes, there is nothing that I can see in Composer that can tell us the version; also, nobody is currently forced to use Composer and there is a chance they might be using some deployment mechanism that doesn't even ship a composer.json or .lock file, given they are not needed at runtime.

    The canonical place to read Drupal's version number is the \Drupal::VERSION constant. As far as I can see, neither of the two version-handling libraries that are available to core - composer/semver and sebastian/version - provide a method to extract the major version number from a version string; and even if they did, I don't see the benefit in runtime code executing on a constant to calculate another constant, when we can just declare the constant and write a test to ensure it is correct.

  • ๐Ÿ‡บ๐Ÿ‡ธUnited States smustgrave

    So right now the approach is either #31 or doing something like you mentioned in #33-#35

  • ๐Ÿ‡บ๐Ÿ‡ธUnited States dww

    FWIW, I think the major version constant is the best solution here, and seems like an extremely low maintenance burden, especially with the proposed test.

    Second choice is the very small runtime solution weโ€™ve already got.

    Donโ€™t want to NW to force option 1, so leaving NR.

    Thanks,
    -Derek

  • Status changed to Needs work over 1 year ago
  • ๐Ÿ‡บ๐Ÿ‡ธUnited States smustgrave

    Seems like the consensus is to use a constant MAJOR_VERSION

  • ๐Ÿ‡ฌ๐Ÿ‡งUnited Kingdom longwave UK
  • Status changed to Needs review over 1 year ago
  • ๐Ÿ‡ณ๐Ÿ‡ฟNew Zealand quietone New Zealand

    No interdiff because this is a different approach.

  • Status changed to RTBC over 1 year ago
  • ๐Ÿ‡บ๐Ÿ‡ธUnited States smustgrave

    I like it. Is there a checklist somewhere for new major version releases? Like xyz has to be done for a new major version. If so wonder if this could be added to it.

  • ๐Ÿ‡ฌ๐Ÿ‡งUnited Kingdom longwave UK

    Yes, this should be added to the core committer handbook at https://www.drupal.org/about/core/policies/maintainers/create-core-branch โ†’

  • Status changed to Needs review over 1 year ago
  • ๐Ÿ‡บ๐Ÿ‡ธUnited States dww

    Thanks! Mostly looks great.

    I don't think we want to make the updates in #46 until this is actually accepted, so tagging for updates, instead.

    1 actual point (a very minor nit) and 2 other questions:

    1. +++ b/core/lib/Drupal.php
      @@ -77,6 +77,11 @@ class Drupal {
      +   * The current system version.
      

      "The current system major version." Otherwise, it's the same comment as VERSION.

    2. +++ b/core/lib/Drupal.php
      @@ -77,6 +77,11 @@ class Drupal {
      +  const MAJOR_VERSION = '10';
      

      Do we want it VERSION_MAJOR so that it's alphabetically "next" to VERSION itself? I don't think we'll actually need it, but if we end up adding a constant for MINOR, would it be better to have VERSION, VERSION_MAJOR and VERSION_MINOR sorted together?

    3. +++ b/core/tests/Drupal/Tests/Core/DrupalTest.php
      @@ -456,6 +456,14 @@ public function testPhpConstants() {
      +  public function testMajorVersion() {
      

      Love it, so simple and clean. Thanks!

      Do we need to see this failing in test-only patch mode, or are we sufficiently happy with visual inspection? ๐Ÿ˜…

    Here's patch for point #1. NR for #2. A committer will tell us if we need #3. ๐Ÿ˜‰

    Thanks!
    -Derek

  • ๐Ÿ‡บ๐Ÿ‡ธUnited States dww

    Per @longwave in #26, looks like this is a candidate for backport to 9.5.x, so here's a patch for that.

    While I was at it, I intentionally ran the test once locally before I fixed MAJOR_VERSION to match the 9.5.x branch to get a test-only fail result. Worked perfectly. Output attached here. Not sure it's worth the bot resources to do it here in the queue.

  • Status changed to RTBC over 1 year ago
  • ๐Ÿ‡ฌ๐Ÿ‡งUnited Kingdom longwave UK

    #26 was while 9.5.x/10.0.x were still in development, as this is new API this can only go into 10.1.x now.

    #47.2: MAJOR_VERSION is more readable to me - I can't see why alphabetical order would be important and would prefer readability.

    #47.3: I don't need to see a test fail, the test is obviously correct to me.

    Removing "needs release manager review" as I think @xjm's concerns have been answered and @quietone wrote most the new patch, so I don't think any more release managers need to be involved here. This looks ready to go to me.

  • ๐Ÿ‡บ๐Ÿ‡ธUnited States dww

    Re: D9 backport: hehe, whoops, didn't look closely at the dates of the comments. ๐Ÿ˜… That said, I find it hard to believe this would be disruptive in any way, and could potentially be useful for people. I'd personally still vote for 10.0.x and 9.5.x commits, but I tend to be on the wrong side of such debates. ๐Ÿ˜‚

    Re: #47.3: I provided the fail results from the local run โ†’ . Agreed, the test is obviously correct.

    Thanks,
    -Derek

    p.s. Fixing the proposed resolution in the summary.

  • Status changed to Needs review over 1 year ago
  • ๐Ÿ‡บ๐Ÿ‡ธUnited States xjm

    FWIW I'm not totally convinced this is an improvement; my concerns have not been addressed because I'm not sure this approach is worthwhile. I want fewer constants etc. attached to the major and minor version metadata that we have to maintain and update, not more. We constantly have issues with this-or-that thing that needs an update being missed when we open a new branch already.

    We would not backport it to Drupal 9 because it is an API addition (though admittedly a low-risk one because no one has any business subclassing \Drupal, but it isn't final or anything).

  • ๐Ÿ‡บ๐Ÿ‡ธUnited States xjm

    Take a look at Drupal\Core\Extension\ExtensionVersion. That uses Composer's semver regex for validating and parsing out version information. We could add a related CoreVersion class in the same namespace, and possibly provide some of the functionality in the base path. And we could also parse the Composer version out of composer.json rather than having another constant to maintain, if it's sufficiently performant and/or never in the critical path.

  • ๐Ÿ‡ฌ๐Ÿ‡งUnited Kingdom longwave UK

    Where is the Drupal version in core's composer.json? There's no requirement to even have a composer.json present on disk at runtime.

  • Status changed to Needs work over 1 year ago
  • The Needs Review Queue Bot โ†’ tested this issue. It no longer applies to Drupal core. Therefore, this issue status is now "Needs work".

    Apart from a re-roll or rebase, this issue may need more work to address feedback in the issue or MR comments. To progress an issue, incorporate this feedback as part of the process of updating the issue. This helps other contributors to know what is outstanding.

    Consult the Drupal Contributor Guide โ†’ to find step-by-step guides for working with issues.

  • ๐Ÿ‡ฎ๐Ÿ‡ณIndia _utsavsharma

    Patch for 10.1.x.

  • ๐Ÿ‡บ๐Ÿ‡ธUnited States xjm

    Removing credit for a reroll that does not apply. Thanks!

  • Status changed to Needs review about 1 year ago
  • Updated patch #55 as it wasn't applying.

  • Updated patch #55 as it wasn't applying.

  • ๐Ÿ‡ณ๐Ÿ‡ฟNew Zealand quietone New Zealand

    @Rishabh Vishwakarma, thanks for the interest in this issue. However, a reroll is not needed here. If you read comments #52 and #53 you will see that is in discussion regarding the solution. The test bot also suggests that other work may be needed. Therefor, credit has been removed per How is credit granted for Drupal core issues โ†’ .

  • ๐Ÿ‡บ๐Ÿ‡ธUnited States smustgrave

    Following back up on this.

    @xjm I also don't see the current version in the composer.json file, same as @longwave in #52

  • ๐Ÿ‡ฌ๐Ÿ‡งUnited Kingdom catch

    I agree with @xjm here, every time we create a new major version, there is about 2-4 days where HEAD is broken because we've hardcoded major versions somewhere, and we change all those hard-coded places to the new hard-coded versions, open follow-ups for them to make them cross-major-safe, forget about them for 2-3 years, then do it all over again. Every place we add a new hardcoded major version assumption is potentially another hour expecting HEAD to go green then finding we missed another one. Actually changing these is a minimal amount of work, but when any of them is not changed it disrupts core development for another hour or two.

    However I think the patch in#31 would be fine. The method isn't as 'nice' as a constant but it cleans things up compared to now.

  • ๐Ÿ‡ฌ๐Ÿ‡งUnited Kingdom catch

    Extra thought: if we could do something at the phpstan level, that would fail a lot earlier, but then it feels like we're maintaining custom phpstan integration for a constant... so a one line method just seems like it ought to be least maintenance here.

  • Status changed to RTBC about 1 year ago
  • ๐Ÿ‡บ๐Ÿ‡ธUnited States smustgrave

    Hiding patches except #31. Which still applies fine to 10.1

    Marking this but @catch do we want a follow up for creating the phstan check you mentioned in #62

  • ๐Ÿ‡บ๐Ÿ‡ธUnited States dww

    No, that follow up would have been to notice that the constants were out of sync earlier in a core build. Now that weโ€™re going with a function, no additional check needed.

    Fixing title before commit. Also crediting all the RMs, and @smustgrave for reviews, input, etc.

    Thanks!
    -Derek

  • ๐Ÿ‡บ๐Ÿ‡ธUnited States xjm

    Agreed that a method is better than a constant.

    I don't necessarily think we should add this method to \Drupal, though. We should be reducing the size of that class, not adding to it. It would be better to add it to a core namespace (compare the extension versioning classes).

  • Status changed to Needs review about 1 year ago
  • ๐Ÿ‡บ๐Ÿ‡ธUnited States xjm

    NR for #66. If necessary we can get the framework managers involved for the architectural "where to put it".

  • ๐Ÿ‡บ๐Ÿ‡ธUnited States smustgrave

    If the scope of this ticket is expanding should the issue summary be updated.

  • ๐Ÿ‡บ๐Ÿ‡ธUnited States dww

    Grumble, grumble. ๐Ÿ˜‰

    1. This isn't about an extension, it's about core itself.
    2. \Drupal\Core\Extension\ExtensionVersion is all about trying to hide the details of bespokever vs. semver contrib version strings, and includes @see https://www.drupal.org/drupalorg/docs/apis/update-status-xml to explain itself. Seems highly weird to try to fit this method into there.
    3. Looking through the rest of core/lib/Drupal/Core, there's no particularly good spot I can see to add this.
    4. Maybe core/lib/Drupal/Core/DrupalKernel.php? But that seems messy, and would pollute the idea of that class/interface.
    5. Do we really want a whole new class in core/lib/Drupal/Core/Utility, something like CoreVersion.php for this 1 line method?

    I know consensus is great when we can get it, but with 3 out of 4 RMs happy with the tiny method directly in \Drupal, at what point can we agree to disagree and be done with this? ๐Ÿ˜…

    Thanks,
    -Derek

  • ๐Ÿ‡บ๐Ÿ‡ธUnited States smustgrave

    That's also a fair point. How do we want to proceed?

  • ๐Ÿ‡ฌ๐Ÿ‡งUnited Kingdom catch

    Found some test code using _install_get_version_info() in ๐Ÿ› Resolve test failures on 11.x branch Fixed which can/should also be converted to the new helper.

  • ๐Ÿ‡บ๐Ÿ‡ธUnited States smustgrave

    @catch now sure how to best proceed here. Seem to be stuck on agreeing on a consensus.

  • ๐Ÿ‡บ๐Ÿ‡ธUnited States dww

    How about I open a follow up to explore refactoring once we hit a second thing this code would share in common with the existing contrib version classes, but for now go with the simple fix under the banner of YAGNI? ๐Ÿ˜…

  • Status changed to Needs work about 1 year ago
  • ๐Ÿ‡ง๐Ÿ‡ชBelgium borisson_ Mechelen, ๐Ÿ‡ง๐Ÿ‡ช

    Back to needs work to also fix #71, I think?

  • ๐Ÿ‡ซ๐Ÿ‡ทFrance andypost

    There's also an issue with minor version part as core now using 11.x-dev https://3v4l.org/54Wc2

    Faced in https://git.drupalcode.org/project/drupal/-/blob/11.x/core/tests/Drupal/...

    So probably we need 2 methods get[Major|Minor]Version

  • ๐Ÿ‡บ๐Ÿ‡ธUnited States dww

    Per ๐Ÿ“Œ Add a branch alias for 11.x Fixed , I don't think \Drupal::VERSION should be 11.x-dev right now in the 11.x branch. If that branch holds what's to become 10.2.x, the VERSION should be "10.2.x-dev". Therefore, I'm not sure we care about adding getMinorVersion() here to help work-around the weirdness until we've got a main branch to work from. And once we're at main, #3364646 will be even more important to be accurately communicating what version "main" is going to become next...

  • ๐Ÿ‡ซ๐Ÿ‡ทFrance andypost

    @dww yes, it's 11.0-dev now https://git.drupalcode.org/project/drupal/-/blob/11.x/core/lib/Drupal.ph...

    But there's a warning https://3v4l.org/s2Tnh

    [$major, $minor] = explode('.', '11.0-dev');
    echo $major + 1;
    echo $minor + 1;
    

    results

    12
    Warning: A non-numeric value encountered in /in/HWFR0 on line 5
    1
    
  • ๐Ÿ‡ซ๐Ÿ‡ทFrance andypost

    Filed separate issue for the test ๐Ÿ› Fix minor version parsing in InfoParserUnitTest.php Fixed

  • ๐Ÿ‡บ๐Ÿ‡ธUnited States xjm

    BTW I am aware ExtensionVersion is about extensions, but the reason I keep bringing it up is that IMO those classes should subclass something else that comes from core. And that something that comes from core should also look to the Composer metadata, and handle whatever special cases it has that Composer metadata cannot provide.

  • ๐Ÿ‡ณ๐Ÿ‡ฟNew Zealand quietone New Zealand
Production build 0.69.0 2024