Skip to content
Snippets Groups Projects
Verified Commit bd151218 authored by Jess's avatar Jess
Browse files

Back to dev.

parent 3a384d72
No related branches found
No related tags found
13 merge requests!7564Revert "Issue #3364773 by roshnichordiya, Chris Matthews, thakurnishant_06,...,!5752Issue #3275828 by joachim, quietone, bradjones1, Berdir: document the reason...,!5627Issue #3261805: Field not saved when change of 0 on string start,!5427Issue #3338518: send credentials in ajax if configured in CORS settings.,!5395Issue #3387916 by fjgarlin, Spokje: Each GitLab job exposes user email,!5217Issue #3386607 by alexpott: Improve spell checking in commit-code-check.sh,!5064Issue #3379522 by finnsky, Gauravvvv, kostyashupenko, smustgrave, Chi: Revert...,!5040SDC ComponentElement: Transform slots scalar values to #plain_text instead of throwing an exception,!4958Issue #3392147: Whitelist IP for a Ban module.,!4894Issue #3280279: Add API to allow sites to opt in to upload SVG images in CKEditor 5,!3106Issue #3017548: "Filtered HTML" text format does not support manual teaser break (<!--break-->),!925Issue #2339235: Remove taxonomy hard dependency on node module,!872Draft: Issue #3221319: Race condition when creating menu links and editing content deletes menu links
Pipeline #27005 passed
Pipeline: drupal

#27011

    Pipeline: drupal

    #27010

      Pipeline: drupal

      #27009

        +1
        Showing
        with 23 additions and 19 deletions
        ......@@ -491,7 +491,7 @@
        },
        {
        "name": "drupal/core",
        "version": "10.1.5",
        "version": "10.1.x-dev",
        "dist": {
        "type": "path",
        "url": "core",
        ......@@ -648,7 +648,7 @@
        },
        {
        "name": "drupal/core-project-message",
        "version": "10.1.5",
        "version": "10.1.x-dev",
        "dist": {
        "type": "path",
        "url": "composer/Plugin/ProjectMessage",
        ......@@ -681,7 +681,7 @@
        },
        {
        "name": "drupal/core-vendor-hardening",
        "version": "10.1.5",
        "version": "10.1.x-dev",
        "dist": {
        "type": "path",
        "url": "composer/Plugin/VendorHardening",
        ......@@ -8628,7 +8628,11 @@
        ],
        "aliases": [],
        "minimum-stability": "dev",
        "stability-flags": [],
        "stability-flags": {
        "drupal/core": 20,
        "drupal/core-project-message": 20,
        "drupal/core-vendor-hardening": 20
        },
        "prefer-stable": true,
        "prefer-lowest": false,
        "platform": [],
        ......
        ......@@ -7,7 +7,7 @@
        "webflo/drupal-core-strict": "*"
        },
        "require": {
        "drupal/core": "10.1.5",
        "drupal/core": "10.1.x-dev",
        "asm89/stack-cors": "~v2.1.1",
        "composer/semver": "~3.3.2",
        "doctrine/annotations": "~1.14.3",
        ......
        ......@@ -7,7 +7,7 @@
        "webflo/drupal-core-require-dev": "*"
        },
        "require": {
        "drupal/core": "10.1.5",
        "drupal/core": "10.1.x-dev",
        "behat/mink": "v1.10.0",
        "behat/mink-browserkit-driver": "v2.1.0",
        "behat/mink-selenium2-driver": "v1.6.0",
        ......
        ......@@ -27,7 +27,7 @@
        "conflict": {
        "drupal/drupal": "*"
        },
        "minimum-stability": "stable",
        "minimum-stability": "dev",
        "prefer-stable": true,
        "config": {
        "allow-plugins": {
        ......
        ......@@ -26,7 +26,7 @@
        "conflict": {
        "drupal/drupal": "*"
        },
        "minimum-stability": "stable",
        "minimum-stability": "dev",
        "prefer-stable": true,
        "config": {
        "allow-plugins": {
        ......
        ......@@ -75,7 +75,7 @@ class Drupal {
        /**
        * The current system version.
        */
        const VERSION = '10.1.5';
        const VERSION = '10.1.6-dev';
        /**
        * Core API compatibility.
        ......
        ......@@ -9,9 +9,9 @@
        "require": {
        "php": ">=8.1.0",
        "doctrine/annotations": "^1.14",
        "drupal/core-file-cache": "^10.1",
        "drupal/core-plugin": "^10.1",
        "drupal/core-utility": "^10.1"
        "drupal/core-file-cache": "10.1.x-dev",
        "drupal/core-plugin": "10.1.x-dev",
        "drupal/core-utility": "10.1.x-dev"
        },
        "autoload": {
        "psr-4": {
        ......
        ......@@ -8,7 +8,7 @@
        "license": "GPL-2.0-or-later",
        "require": {
        "php": ">=8.1.0",
        "drupal/core-utility": "^10.1"
        "drupal/core-utility": "10.1.x-dev"
        },
        "autoload": {
        "psr-4": {
        ......
        ......@@ -8,8 +8,8 @@
        "license": "GPL-2.0-or-later",
        "require": {
        "php": ">=8.1.0",
        "drupal/core-file-cache": "^10.1",
        "drupal/core-serialization": "^10.1"
        "drupal/core-file-cache": "10.1.x-dev",
        "drupal/core-serialization": "10.1.x-dev"
        },
        "autoload": {
        "psr-4": {
        ......
        ......@@ -8,7 +8,7 @@
        "license": "GPL-2.0-or-later",
        "require": {
        "php": ">=8.1.0",
        "drupal/core-serialization": "^10.1"
        "drupal/core-serialization": "10.1.x-dev"
        },
        "autoload": {
        "psr-4": {
        ......
        ......@@ -9,7 +9,7 @@
        },
        "require": {
        "php": ">=8.1.0",
        "drupal/core-render": "^10.1"
        "drupal/core-render": "10.1.x-dev"
        },
        "autoload": {
        "psr-4": {
        ......
        ......@@ -8,7 +8,7 @@
        "license": "GPL-2.0-or-later",
        "require": {
        "php": ">=8.1.0",
        "drupal/core-file-security": "^10.1"
        "drupal/core-file-security": "10.1.x-dev"
        },
        "autoload": {
        "psr-4": {
        ......
        ......@@ -8,7 +8,7 @@
        "license": "GPL-2.0-or-later",
        "require": {
        "php": ">=8.1.0",
        "drupal/core-utility": "^10.1"
        "drupal/core-utility": "10.1.x-dev"
        },
        "autoload": {
        "psr-4": {
        ......
        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