Skip to content
Snippets Groups Projects
Verified Commit 4650172f authored by Dave Long's avatar Dave Long
Browse files

Issue #3487150 by alexpott, oily, ptmkenny: \Drupal::VERSION on 11.x not correct

parent 04478f36
No related branches found
No related tags found
11 merge requests!11197Issue #3506427 by eduardo morales alberti: Remove responsive_image.ajax from hook,!11131[10.4.x-only-DO-NOT-MERGE]: Issue ##2842525 Ajax attached to Views exposed filter form does not trigger callbacks,!10786Issue #3490579 by shalini_jha, mstrelan: Add void return to all views...,!3878Removed unused condition head title for views,!3818Issue #2140179: $entity->original gets stale between updates,!3154Fixes #2987987 - CSRF token validation broken on routes with optional parameters.,!2964Issue #2865710 : Dependencies from only one instance of a widget are used in display modes,!2062Issue #3246454: Add weekly granularity to views date sort,!10223132456: Fix issue where views instances are emptied before an ajax request is complete,!617Issue #3043725: Provide a Entity Handler for user cancelation,!579Issue #2230909: Simple decimals fail to pass validation
Pipeline #349808 passed with warnings
Pipeline: drupal

#349828

    Pipeline: drupal

    #349822

      Pipeline: drupal

      #349809

        ......@@ -75,7 +75,7 @@ class Drupal {
        /**
        * The current system version.
        */
        const VERSION = '11.0-dev';
        const VERSION = '11.2-dev';
        /**
        * Core API compatibility.
        ......
        ......@@ -424,6 +424,11 @@ protected function makeVendorPackage($repository_path): void {
        */
        protected function getCoreStability() {
        $version = \Drupal::VERSION;
        // If the current version is x.y-dev then this is the equivalent of the main
        // branch and should be treated as a dev release.
        if (preg_match('/^(\d)+\.(\d)+-dev$/', $version)) {
        return 'dev';
        }
        $stability = VersionParser::parseStability($version);
        if ($stability === 'dev') {
        // Strip off "-dev";
        ......
        0% Loading or .
        You are about to add 0 people to the discussion. Proceed with caution.
        Finish editing this message first!
        Please register or to comment