Skip to content
Snippets Groups Projects

Issue #3238915: Refactor (if feasible) uses of the jQuery ready function to use VanillaJS

Closed Issue #3238915: Refactor (if feasible) uses of the jQuery ready function to use VanillaJS
Closed Harumi Jang requested to merge issue/drupal-3238915:3238915-refactor-if-feasible into 9.3.x
3 files
+ 24
1
Compare changes
  • Side-by-side
  • Inline
Files
3
  • 690d040f
    Issue #3319794 by effulgentsia, Anchal_gupta, longwave, xjm: Update to Symfony... · 690d040f
    catch authored
    Issue #3319794 by effulgentsia, Anchal_gupta, longwave, xjm: Update to Symfony 6.2 RC or update drupal/recommended-project creation and testMinimumStabilityStrictness() to allow minimum-stability to be less stable than core's stability
@@ -150,6 +150,13 @@ protected function getPackage(IOInterface $io, string $original_json): array {
$stability = VersionParser::parseStability(\Drupal::VERSION);
// Drupal 10.0.0-RC1 is being released before Symfony 6.2.0-RC1, so
// temporarily set the stability to beta instead of RC.
// @todo Remove this after Symfony 6.2.0-RC1 is released.
if (str_starts_with(\Drupal::VERSION, '10.0.0-') && ($stability === 'RC')) {
$stability = 'beta';
}
// List of packages which we didn't find in either core requirement.
$not_in_core = [];
Loading