Issue #3227518: Never show a "Not supported!" version as "Recommended"
Merge request reports
Activity
1 <?xml version="1.0" encoding="utf-8"?> 2 <!-- 3 This XML file is the exact same as the file drupal.1.xml except 4 'supported_branches' in this file does not contain the '8.0.' branch. Therefore, 5 all the releases that start with '8.0.' are in an unsupported branch. I did a comparison between this file and drupal.1.xml. drupal.1.xml at least also has
Drupal 8.2.0
release so maybe that should be added here? There might be other differences. If the intention of this issue is thesupported_branches
is the only difference lets update this file so that is true
1 <?xml version="1.0" encoding="utf-8"?> 2 <!-- 3 This XML file is the exact same as the file semver_test.1.xml except 4 'supported_branches' in this file does not contain the '8.0.' branch. Therefore, 5 all the releases that start with '8.0.' are in an unsupported branch. added 2 commits
- Resolved by quietone
248 248 $this->assertUpdateTableTextContains($unsupported_version); 249 249 $this->assertUpdateTableElementContains('error.svg'); 250 250 $this->assertUpdateTableTextContains('Release not supported: Your currently installed release is now unsupported, and is no longer available for download. Disabling everything included in this release or upgrading is strongly recommended!'); 251 $this->assertVersionUpdateLinks($new_version_label, $newer_version); 251 if ($newer_version !== NULL) { Since NULL is the default value for this parameter in the this assert then if this value not NULL then we intentionally sent a value in to be tested. This is always a literal string from a test case never user input. So I think if we have anything beside the default value we should pass that onto
assertVersionUpdateLinks()
.If we want to change anything here I think it would be in the
else
to have$this->assertNotEmpty($newer_version);
Because that would problem in the test logic
Why we would add
$this->assertNotEmpty($newer_version);
inelse
?Edited by Kunal Sachdev@kunal.sachdev yes I think you are correct.
added 43 commits
-
d831c763...afc5a87e - 40 commits from branch
project:9.3.x
- 8948b513 - Merge branch '9.3.x' into 3227518-never-show-a
- b151c1a2 - reverted changes in the drupalci file
- 298cc5a6 - changed the error message according to the conditions
Toggle commit list-
d831c763...afc5a87e - 40 commits from branch
added 1 commit
- 9ea36272 - added condition for checking also available version
added 9 commits
-
9ea36272...59d8ab1f - 7 commits from branch
project:9.3.x
- 39960219 - Merge branch '9.3.x' into 3227518-never-show-a
- 55cd579f - added test coverage for the also available case
-
9ea36272...59d8ab1f - 7 commits from branch
added 1 commit
- a5a00051 - Revert "changed order of release in fixture"
added 27 commits
-
a5a00051...81690f84 - 12 commits from branch
project:9.3.x
- d2d94d41 - added test coverage to prove that this problem currently exists
- bd732733 - added comment for the new test coverage
- abc24758 - phpcbf
- ecc5a99f - added new variable to determine the release is supported
- b35427a8 - changed drupalci to test only functional tests in update module
- 970cb189 - corrected testgroups in drupalci file
- 041eec54 - reverted changes in the drupalci file
- 3e15e4d8 - changed the error message according to the conditions
- bfeb3c78 - phpcbf
- b509db38 - reverted drupalci.yml
- 9609d239 - added condition for checking also available version
- 0bfa530b - added test coverage for the also available case
- 23d790c4 - phpcbf
- 56f6d8bf - changed order of release in fixture
- 61d65918 - Revert "changed order of release in fixture"
Toggle commit list-
a5a00051...81690f84 - 12 commits from branch
- Resolved by quietone
430 430 $this->standardTests(); 431 431 $this->confirmUnsupportedStatus('8.0.3', '8.1.0', 'Recommended version:'); 432 432 } 433 // Test when the newest branch is unsupported and no update is available. 434 foreach (['8.1.0', '8.1.0-beta1'] as $installed) { 435 $this->setProjectInstalledVersion($installed); 436 $this->refreshUpdateStatus([$this->updateProject => '1.1-unsupported']); 437 $this->standardTests(); 438 $this->confirmUnsupportedStatus($installed); 439 } 440 // Test when the current version is unsupported and the recommended version is supported and there is also an available version 441 $this->setProjectInstalledVersion('8.0.3'); 442 $this->refreshUpdateStatus([$this->updateProject => '1.0-supported']); 443 $this->standardTests(); 444 $this->confirmUnsupportedStatus('8.0.3', '8.1.0', 'Recommended version:'); 445 $this->confirmUnsupportedStatus('8.0.3', '8.2.0', 'Also available:'); I may have suggested this but it was because I forgot that the update module only uses "Also available:" for next majors not next minors. It will always recommend the last secure & supported version in the major as "Recommended version:". So we probably should remove the
8.2.0
release fromsemver_test.1.0-supported.xml
and the drupal version of the XML which is missing currently.This is going a problem for the Automatic Updates module because in this test case the MVP of the Automatic Updates module will not support jumping a minor.
changed this line in version 13 of the diff
added 20 commits
- d06a9d08 - added test coverage to prove that this problem currently exists
- 0171113b - added comment for the new test coverage
- 408d7b3d - phpcbf
- ead2e8ce - added new variable to determine the release is supported
- c45fdf23 - changed drupalci to test only functional tests in update module
- d831c763 - corrected testgroups in drupalci file
- 8948b513 - Merge branch '9.3.x' into 3227518-never-show-a
- b151c1a2 - reverted changes in the drupalci file
- 298cc5a6 - changed the error message according to the conditions
- a9de5ab2 - phpcbf
- 8930855f - reverted drupalci.yml
- 9ea36272 - added condition for checking also available version
- 39960219 - Merge branch '9.3.x' into 3227518-never-show-a
- 55cd579f - added test coverage for the also available case
- be754446 - phpcbf
- 33f1a9f1 - changed order of release in fixture
- 04c37ada - Merge branch '9.3.x' into 3227518-never-show-a
- e9d67d0e - merge conflict resolved
- ef4605b9 - Merge branch '3227518-never-show-a' of git.drupal.org:issue/drupal-3227518...
- 98d94076 - added test to show the current logic is broken
Toggle commit list431 431 $this->confirmUnsupportedStatus('8.0.3', '8.1.0', 'Recommended version:'); 432 432 } 433 // Test when the newest branch is unsupported and no update is available. 434 foreach (['8.1.0', '8.1.0-beta1'] as $installed) { 435 $this->setProjectInstalledVersion($installed); 436 $this->refreshUpdateStatus([$this->updateProject => '1.1-unsupported']); 437 $this->standardTests(); 438 $this->confirmUnsupportedStatus($installed); 439 } 440 $this->setProjectInstalledVersion('8.0.3'); 441 $this->refreshUpdateStatus([$this->updateProject => '1.0-supported']); 442 $this->standardTests(); 443 // This shows how the logic is currently broken as it skips all the releases 444 // between 8.0.3 and 10.0.0. 445 $this->confirmUnsupportedStatus('8.0.3', '10.0.0', 'Recommended version:'); 446 $this->assertUpdateTableTextNotContains('Also available'); - Comment on lines +445 to +446
This shows a related error if you’re in an unsupported branch then it will try to choose another target major but it will always choose the last one not the next one. The test xml fixture has 8.1.0, 9.0.0, 10.0.0 supported releases after 8.0.3 but it chooses the 10.0.0 as the recommended one. I will push up a change to fix this next.
changed this line in version 14 of the diff
added 874 commits
- 577a6344 - Drupal 9.4.x-dev
- 4063e76c - Issue #3186992 by hinal05, djsagar, kiran.kadam911, hitvika_verma,...
- f4ff1b59 - Issue #3214170 by Sakthivel M, manojithape, mitthukumawat, tushar_sachdeva:...
- a9113534 - Issue #3246053 by quietone: Fix file_managed table for ds9.txt
- b3a30bae - Issue #3227821 by wtrv: Broken svg element with "Auto convert linebreaks" (autop) filter
- 4c20b339 - Issue #3038596: Mechanism that adds custom drupalci.yml configurations does...
- f5fdfe31 - Issue #2569381 by alx_benjamin, init90, vasi, deepakaryan1988,...
- 8512e0e9 - Issue #3213644 by Beakerboy, daffie:...
- 10ca9797 - Issue #3246595 by andypost: Update dependencies for 9.3.x
- 055054d5 - Issue #3245820 by paul121, dww, eojthebrave: Remove references to removed node publish actions
- 9aa1d53c - Issue #3232074 by bbrala, daffie, effulgentsia, catch, gabesullice, alexpott:...
- a427549e - Revert "Issue #3232074 by bbrala, daffie, effulgentsia, catch, gabesullice,...
- 5c78c189 - Issue #3232074 by bbrala, daffie, alexpott, effulgentsia, catch, gabesullice:...
- 76b86646 - Issue #3163663 by mpp, chrisolof, alexpott, quietone: Too many open files...
- 04f25785 - Issue #3087332 by quietone, huzooka, amateescu, danflanagan8: Deprecate the...
- 0949c10c - Issue #3239509 by hooroomoo, larowlan, bnjmnm, lauriii: Add String.includes...
- 2aee2c17 - Issue #3212891 by vaish, brentgees@gmail.com, srilakshmier, mikelutz,...
- 9f6cef72 - Issue #3028837 by quietone, joachim, alexpott: views_hooks group has nothing in it
- ea01173e - Issue #3248156 by alexpott, longwave: Update dependencies prior to 9.3.0 beta
- f96b7fba - Issue #3232095 by daffie, dww, longwave, andypost, catch, larowlan: [Symfony...
- 84e8b971 - Issue #3214921 by daffie, xurizaemon, alexpott, mondrake, andypost, Taran2L,...
- b4a6273e - Issue #3231683 by daffie, longwave: [Symfony 6] A number of methods of the...
- 9e3837a2 - Issue #3158289 by alexpott, barboza: Deprecate hook_init for theme engines
- 84ef68cf - Issue #3247901 by danflanagan8, longwave: ContentTranslationUITestBase should not rely on Classy
- 55a804ce - Issue #2975461 by quietone, Matroskeen, Lendude: Convert query string to array...
- 7f6603b6 - Issue #3248600 by andypost, longwave: Update dependencies for 9.3.x
- f8a197f5 - Issue #3244621 by mherchel, rikki_iki, catch, cathwaldron, rachel_norfolk,...
- 1e05f804 - Issue #3248649 by alexpott:...
- ec87fa9b - Issue #3243041 by Gábor Hojtsy: Mark Olivero stable
- 35972c91 - Issue #3231364 by Wim Leers, lauriii, bnjmnm, webchick, xjm, tim.plunkett,...
- 9d75e740 - Issue #3247650 by Sutharsan, larowlan: Make it clear that...
- 8a4928c1 - Issue #3223233 by joachim, danflanagan8, longwave: Form to edit or add a...
- 4cbbdb2d - Issue #3247994 by NickDickinsonWilde, diqidoq: Claro's password element...
- 330473e7 - Issue #3222251 by bbrala, longwave: [November 8, 2021] Replace all isset...
- 6d39cdee - Issue #3222769 by bbrala, alexpott, longwave, Matroskeen: [November 8, 2021]...
- a83a7a78 - Issue #3231781 by longwave, mondrake, Feuerwagen, larowlan, TR, nlisgo,...
- dc51481d - Issue #3249263 by alexpott, andypost, Wim Leers: CKEditor 5 needs validate the...
- bcf1456c - Issue #3249233 by longwave: Update 9.3's Symfony 5 components to 5.4
- 65aaec60 - Issue #3249240 by alexpott, andypost, Wim Leers: HTMLRestrictionsUtilities::...
- 36f09c06 - Issue #3232131 by daffie, catch, alexpott, longwave, xjm, wouterj: [Symfony 5]...
- 926b4849 - Issue #3238860 by mstrelan, Theresa.Grannum, hooroomoo, bnjmnm, larowlan:...
- c304842b - Issue #2707163 by quietone, chishah92, jhodgdon, AndrewHD, xjm, dww,...
- 5281af28 - Issue #3248801 by daffie, rakesh.gectcr, bbrala, longwave: [Symfony 6] The...
- f4d355a2 - Issue #3248809 by daffie, larowlan: [Symfony 6] The...
- 94b94e7e - Issue #3248013 by daffie, longwave: [Symfony6] The...
- 3795c75c - Issue #3248816 by bsuttis, danflanagan8, quietone:...
- b9fd8ef3 - Issue #3248810 by daffie: [Symfony 6] The...
- 0e61d218 - Issue #3056409 by rkostov, larowlan, maximpodorov:...
- e9e5a0fe - SA-CORE-2021-011 by jbogdanski, Wim Leers, xjm, greggles, lauriii, tedbow
- 507fc5fe - Issue #3248014 by daffie, andypost: [Symfony 6] The...
- 41769241 - Issue #3250299 by daffie, longwave: [Symfony6] A number of CKEditor5 tests fail for Symfony 5.4
- 576bd754 - Issue #3207567 by Spokje, quietone, guilhermevp, yogeshmpawar, daffie,...
- 046c1863 - Issue #3221082 by Wim Leers, lauriii, bnjmnm: Build Drupal's CKEditor 5...
- d90527ba - Issue #3250263 by longwave, quietone: Remove unused test script
- 7ff9cbf0 - Issue #3032275 by alexpott, dww, bendeguz.csirmaz, tedbow: Create a...
- 1a8a51ac - Issue #3250335 by alexpott, beatrizrodrigues, paulocs, longwave:...
- 5ec9c99d - Issue #3171149 by Feuerwagen, kostyashupenko: Set article content type to use...
- bb486268 - Issue #3250349 by alexpott:...
- 4aa86df9 - Issue #3231040 by alexpott, Anul, longwave, bbrala, catch: (revert) Remove...
- afdff8f9 - Issue #3171570 by kostyashupenko, mherchel: Remove Olivero's custom...
- 7064c439 - Issue #3173770 by chr.fritsch, phenaproxima, akalam, dejan0: Allow field types...
- bfd559af - Issue #3250442 by daffie, andypost, longwave: [Symfony 6] Symfony 6 adds...
- 92836c43 - Issue #3138078 by mondrake, larowlan, longwave, xjm: [D9.3 beta - w/c Nov 8,...
- 588951bb - Issue #3250629 by paulocs, longwave: MockBuilder::setMethods is deprecated in...
- 40a0e8a2 - Issue #3250587 by lauriii, bnjmnm:...
- 266fe1a7 - Issue #3250482 by quietone, daffie: The docblock of...
- da178766 - Issue #3247414 by anagomes, Beakerboy: Incorrect docblock types for...
- 3730c17b - Issue #3184619 by neclimdul, quietone: Fix unreachable logic in UrlGenerator::getRoute
- 62e7f6aa - Issue #3250743 by alexpott, longwave: [PHP 8.1] NumberFieldTest fails
- b9a61af9 - Issue #3061074 by longwave, cilefen, chr.fritsch, acbramley, jungle, larowlan:...
- fd664f78 - Issue #2873732 by vijaycs85, GaëlG: Array to string conversion in...
- 1b9983e8 - Issue #3251000 by alexpott, andypost: Update dependencies for 9.1.x/9.2.x/9.3.x/9.4.x
- d87c168b - Issue #3238763 by longwave, Spokje, Krzysztof Domański, tstoeckler, quietone:...
- b8c9366c - Issue #3247269 by Sakthivel M, mherchel: Olivero: Alignment of primary menu...
- 567f483a - Issue #3251034 by lauriii, bnjmnm, longwave: Core Yarn watch builds CK5...
- 0893b9b2 - Issue #3214924 by catch: Increase DRUPAL_RECOMMENDED_PHP to 8.0 in Drupal 9.3 or 9.4
- d21e5db7 - Issue #3251768 by longwave: Update Symfony 5 dependencies to 5.4.0
- 773a2138 - Issue #3251625 by alexpott, Berdir: Including settings.php a second time and...
- 09c511d2 - Issue #3251891 by catch, andypost, longwave: Drupal 10 branch failures
- 2b83cffd - Issue #3198010 by mcdruid, acbramley, mstrelan, quietone, manojithape,...
- 79fbdb55 - Issue #2871357 by alexpott, kriboogh: Installer tasks using multiple batch...
- 011c3941 - Issue #2925203 by alexpott: LocaleConfigSubscriber can result in data loss during install
- f5a452bd - Issue #3239500 by hooroomoo, bnjmnm, lauriii: Add Array.includes polyfill to...
- dd103d84 - Issue #2886615 by scott_euser, clemens.tolboom, quietone, joachim, alexpott,...
- 51f7c3fe - Issue #3252214 by Spokje: Move tests for integrations between QuickEdit and...
- 10d7b48a - Issue #3251988 by vijaycs85, smccabe: Update return param of waitForText method
- ec7f2dac - Issue #3253666 by longwave, tim.plunkett: Layout Builder uses the wrong RouteObjectInterface
- 9a8c5ff7 - Issue #3253824 by juli sh, Matroskeen: Minor typo in d7_field_formatter_settings.yml comment
- 73a154ae - Issue #3253639 by tedbow, longwave:...
- 2d9eca99 - Issue #3252067 by tedbow, Spokje: Remove duplicate loading of update reports...
- b50d24c0 - Issue #3250648 by Beakerboy, daffie: Avoid comparing fields with different...
- 109863e2 - Issue #3253683 by andypost, Spokje, Gábor Hojtsy: Improve compatibility with composer 2.2
- f8d5ced5 - Issue #3213023 by thursday_bw: Improve the intelligibility of error messages...
- b1965205 - Issue #3239287 by alexpott, longwave: Fix...
- 4f3749b2 - Issue #3253568 by Spokje, paul121, rviner, longwave, alexpott, quietone:...
- 82ee07b1 - Issue #3246157 by ChrisDarke, rachel_norfolk: Add Chris Darke (ChrisDarke) as...
- fe9233cc - Issue #3246158 by rachel_norfolk, volkswagenchick: Add AmyJune Hineline...
- ef85c3b5 - Issue #3246156 by realityloop, rachel_norfolk: Add Brian Gilbert (realityloop)...
- f83161f6 - Issue #3253889 by BR0kEN, murilohp, longwave: `?check_logged_in=1` causes...
- 45c6d25c - Issue #3254403 by paulmckibben, ranjith_kumar_k_u, longwave, Lendude, cilefen:...
- bdf52138 - Issue #3080819 by beatrizrodrigues, ankithashetty, lucienchalom, quietone,...
- b6e7d698 - Issue #3248309 by danflanagan8: AssertBreadcrumbTrait should not rely on Classy
- d9bd98f6 - Issue #2652652 by dawehner, Sam152, Charlie ChX Negyesi, Manuel Garcia,...
- 7227fd43 - Issue #3251125 by Beakerboy, daffie, mondrake: Do not uninstall the database...
- 3ffca336 - Issue #3245383 by Beakerboy, daffie: If the database driver is provided by a...
- d0be0af7 - Issue #3186524 by longwave, alexpott, xjm, Spokje: Fix htaccess files for PHP 8
- 26ec0043 - Issue #3064890 by danflanagan8, mpp, mottihoresh, scott_euser, peonboyos,...
- 2030a5bb - Issue #3248454 by daffie, Spokje, longwave, larowlan, alexpott: [Symfony6] The...
- af29dfe9 - Issue #3255836 by alexpott, clayfreeman, dww, benjifisher, Spokje: Test fails due to Composer 2.2
- 5b9b5be2 - Issue #3247039 by joachim, quietone: MigrateDestinationInterface::import()...
- cce6f01f - Issue #2793169 by Matroskeen, Manuel Garcia, anmolgoyal74, Pooja Ganjage,...
- 2a5f29ee - Issue #3205909 by kunal.sachdev, tedbow, phenaproxima: Ensure only needed...
- 62dc0bc4 - Issue #3092430 by quietone, shrutidkadam, RdeBoer, bgprior, danflanagan8:...
- 79745314 - Issue #3199696 by bbrala, Wim Leers, plach, bradjones1, gabesullice: Add...
- 1f8bcfdb - Issue #2675006 by danflanagan8, robpowell, quietone: Write UnitTest for...
- 1d4766cd - Issue #3212470 by JeroenT, Gauravmahlawat: Placeholder CSS selector in...
- fa36f859 - Issue #2675006 by danflanagan8, robpowell, quietone, alexpott: Write UnitTest...
- d2a903bb - Issue #3136388 by dww, jyotimishra-developer, nitesh624: Fix phpdocs in...
- bbc518ad - Issue #3251100 by NickDickinsonWilde: DateTimeWidgetBase sets Timezone twice to the same value
- da50a859 - Issue #3245622 by dww, mgifford, darvanen, AaronMcHale, Antoniya, anagomes,...
- bd858c23 - Issue #3252872 by bbrala, gabesullice, bradjones1, alexpott: Use...
- 45b4d536 - Issue #3153455 by Berdir, larowlan, Eduardo Morales Alberti, Gauravmahlawat,...
- c18f8d69 - Issue #3129043 by mondrake, daffie, ankithashetty, ravi.shankar, alexpott,...
- 4f4f390b - Issue #3255623 by Spokje, alexpott: Remove composer replace statements for...
- b7b2a8be - Issue #3049048 by danflanagan8, ndobromirov, mglaman, bbrala, alexpott, Wim...
- cddccd7d - Issue #3255504 by anagomes, Chi, cilefen: Remove jQuery dependency from date.js
- 61a44d1b - Issue #3131348 by Spokje, jungle, mondrake, vsujeetkumar, sja112,...
- b4520100 - Issue #3256451 by alexpott, mikelutz: Fix composer.lock hash on Drupal 9.4
- fbcea5f2 - Issue #3197553 by beatrizrodrigues, longwave, daffie: Deprecate drupal_js_defaults()
- dbca2fc0 - Issue #3251835 by beatrizrodrigues, joachim, mikelutz, quietone: Fix incorrect...
- 7aa1ef1d - Issue #3249859 by apaderno: The documentation page for...
- 8417e5ff - Issue #3246471 by apaderno, dagmar, vicheldt: Remove from the DbLogController...
- 4e4f76c9 - Issue #2940121 by apaderno, andypost, idebr, Kingdutch, kala4ek, mfb,...
- 3310654e - Issue #3210129 by quietone, murilohp, xjm: Fix spelling for words used once,...
- 038c7dd5 - Issue #3256518 by Spokje: Remove drupal_js_defaults() in D10 instead of D11
- ca7158d4 - Issue #3174570 by quietone, anmolgoyal74, skudderk: Fix documentation comment...
- 9a28ddce - Issue #3185269 by mondrake, daffie, alexpott, andypost: Introduce...
- 9caf7d9a - Issue #3175287 by murilohp, quietone, SivaprasadC, ankithashetty,...
- 88868d81 - Issue #3042533 by quietone, danflanagan8: D6 taxonomy term fields are not...
- 697c1d8d - Issue #3190541 by tim.plunkett, godotislate, clayfreeman:...
- 2ea9f648 - Issue #2853183 by quietone, darvanen, slootjes, Munavijayalakshmi,...
- ca21c4b9 - Issue #2343517 by joelpittet, quietone, rteijeiro, andypost: Cleanup @todo...
- 1b1d4571 - Issue #2610520 by quietone, snehi, MiSc, hansfn, Ben Coleman, Antoniya:...
- b00f2733 - Issue #3256581 by cburschka: PHPdoc in update.authorize.inc
- 8f30563f - Issue #3240109 by edurenye, quietone: When using MigrateProcessInterface some...
- 1d64f860 - Issue #3213928 by RoSk0: LoggerChannelInterface documentation
- 399c0a85 - Issue #2916142 by beatrizrodrigues, Chi, yogeshmpawar, tobiberlin, quietone,...
- 5d4a86bb - Issue #3256591 by yassermussa, Chi: Fix Element/Table documentation
- 834c16c5 - Issue #3190261 by danflanagan8, doostinharrell, phenaproxima, larowlan,...
- f7c9202b - Issue #3207907 by quietone, Berdir, alexpott: Ensure functional tests use the test mail collector
- 781ba3a6 - Issue #3175428 by tunic, kishor_kolekar, ranjith_kumar_k_u: Add link to...
- 8e79d481 - Issue #3014629 by quietone, Wim Leers, xurizaemon: Document that Configuration...
- 17c529f2 - Issue #2879293 by digitaldonkey, tobiasb, Mac_Weber, paulocs, Meenakshi_j,...
- d78321e6 - Issue #3247619 by Lendude, danflanagan8, FiNeX, beatrizrodrigues: "Place a...
- 5b6ee132 - Issue #3255250 by murilohp, daffie, longwave, Gábor Hojtsy: [Symfony 5]...
- e1b059c3 - Issue #3031130 by tim.plunkett:...
- 5109a932 - Issue #697946 by voleger, pguillard, pillarsdotnet, andypost, alansaviolobo,...
- 5bff9c8e - Issue #2612876 by leolandotan, NickDickinsonWilde, victoria-marina,...
- a5f202d3 - Issue #3257654 by mondrake: Fix PHPStan L0 failures that cannot be included in baseline
- ddd8c7d8 - Issue #3106216 by Spokje, longwave, alexpott, apaderno, Hardik_Patel_12,...
- 0c3e9feb - Issue #3258009 by alexpott: migrate_state_finished_test's FieldLeft and...
- 02a261ea - Issue #3258014 by alexpott: Fix plugin deprecations
- 863214e9 - Issue #2010380 by alexpott, TR, tstoeckler, MerryHamster, sanjayk, andypost,...
- 5ac4e51c - Issue #3256539 by victoria-marina, Eric_A: Remove @internal from...
- d4b608fd - Issue #3255077 by JoshaHubbers, Gauravmahlawat, beatrizrodrigues: Small typos in CKEditor 5 module
- 7105aa27 - Issue #3254553 by Leon Kessler, Berdir, Bladedu, cmlara:...
- 1201aa82 - Issue #3255245 by Spokje, longwave, daffie, Gábor Hojtsy, Taran2L, murilohp:...
- ab0ec7c0 - Issue #2979588 by longwave, alexpott, Erik Frèrejean, catch, daffie: Deprecate...
- ed951b05 - Issue #3215043 by Spokje, larowlan, quietone, dww, srilakshmier, paulocs,...
- 1198809b - Issue #2919215 by alexpott, longwave, dawehner: Deprecate feed.bridge.writer
- c2e32159 - Issue #3258371 by nod_, Wim Leers: fix yarn vendor-update command
- 6ec31487 - Issue #3228778 by nod_, Wim Leers: Drupal-specific CKEditor 5 plugins should...
- 959949ee - Hotfix for #3215043 by mondrake, Spokje, larowlan, xjm: Fix PHP 7.3 compatibility.
- 37f42e8f - Issue #3250357 by mherchel, kostyashupenko, andy-blum, Tim Robinson,...
- 2d8630fb - Issue #3258654 by alexpott: Deprecate feed.bridge.reader and move it to the Aggregator module
- 203860a3 - Issue #3206219 by mglaman, mherchel: Allow configuring which theme is used as a starterkit theme
- 611b7d1c - Issue #3239134 by hooroomoo, bnjmnm, yogeshmpawar, nod_, Theresa.Grannum,...
- e73cbf5e - Issue #3258995 by longwave: run-tests.sh uses the deprecated app.root service
- 365cb3aa - Issue #3238257 by hooroomoo, Wim Leers: Fragment link pointing to <textarea>...
- 2bc77bc3 - Issue #3258250 by Wim Leers, hooroomoo: Update to CKEditor5 v31.1.0
- 4387ed5b - Issue #3254328 by GoZ, GOT intermedia, PapaGrande: Update to Drupal 9.3.0...
- 2a40c8fc - Issue #3192487 by andypost, murilohp, Gábor Hojtsy, daffie, pobster, apaderno:...
- bd8f2172 - SA-CORE-2022-001 by lauriii, cilefen, mcdruid, effulgentsia, bnjmnm, xjm, nod_
- 5ffec8bf - Issue #3258668 by bnjmnm, Wim Leers: Extraneous closing parentheses and curly...
- f5dc2cbd - Issue #3259744 by Spokje: PHPUnit 9.5.12 (released 2022-01-21) throws...
- 06cfb95a - Issue #3250585 by Spokje, ankithashetty, karishmaamin, quietone, catch, Gábor...
- f7da3008 - Issue #3259179 by Wim Leers, lauriii: Split ckeditor5_alignment CKEditor 5...
- 2b35c803 - Issue #3259850 by Spokje: Having a deprecated module with non deprecated...
- ddd02d34 - Issue #3259888 by Spokje, daffie: InstallUninstallTest fails on enabling both...
- be061dc5 - Issue #2867871 by kyvour, neclimdul, ranjith_kumar_k_u: Use of Symfony...
- 2e7b6ca2 - Issue #3241633 by danflanagan8, benjarlett: View mode doesn't display in dropdown if numerical
- cfcc4bb0 - Issue #3184667 by Spokje, Sakthivel M, mirom, rikki_iki, mherchel, ckrina,...
- 9df7f5a5 - Issue #3259174 by Wim Leers, lauriii, hooroomoo, bnjmnm: Add missing CKE5...
- b5fbaf7e - Issue #3212346 by longwave, Spokje, alexpott: Avoid hundreds of unnecessary...
- 593f9039 - Issue #3259996 by murilohp, longwave, Spokje: Clean up t() usage for list of...
- 83394db7 - Issue #3240873 by quietone, martin_klima, danflanagan8: Add tests of row hash to trackChangesTest
- 85723106 - Issue #3226401 by quietone, joachim, huzooka: Add documentation of migration yml files
- 9827f1ef - Issue #3248188 by Wim Leers, bnjmnm: Plugin definition DX: validate drupal.conditions
- 703f46da - Issue #3191527 by mherchel, kvantstudio, idebr, bnjmnm, Abhijith S,...
- 1311b624 - Issue #3181275 by andypost, Pooja Ganjage, alexpott: Do not register Phar...
- 5ebe32e5 - Issue #3252406 by Spokje, longwave, andypost: Mark class...
- 92e3e659 - Issue #3168326 by mherchel, rikki_iki, Sakthivel M, ckrina, bnjmnm,...
- b4fc8c9b - Issue #3229714 by paul121: Correct visibility of getPluginDefinition function...
- eff5c4bc - Issue #3248177 by Wim Leers, marcvangend, lauriii, Lendude: Language toolbar...
- a4bec1bf - Issue #3246211 by longwave, alexpott: Update to Stylelint 14
- 75edbaeb - Issue #3238311 by tedbow: Exclude system.batch_page.html from setting update security message
- f75ef8ce - Issue #3256056 by andregp: Entity query system does not document the NOT...
- 71bd9d45 - Issue #3247666 by vicheldt, anagomes, joachim, longwave: scaffold README is out of date
- 96cfccf8 - Issue #3217699 by mondrake, daffie, alexpott, andypost: Convert select query...
- 02f32df8 - Issue #3248448 by hooroomoo, lauriii, Wim Leers: Dialog loading text is unstyled
- ed0195c2 - Issue #3172166 by Pooja Ganjage, ekes, Megha_kundar, tstoeckler, mbovan,...
- e4d7e071 - Issue #3219649 by quietone, murilohp, longwave: Fix spelling for words used...
- 200a9326 - Issue #3048464 by danflanagan8, hctom, quietone, mikelutz, heddn: SubProcess...
- abff27cc - Issue #3257407 by tstoeckler, catch: Use "content" region in...
- 1c4c1284 - Issue #3257504 by tstoeckler, nod_, Gábor Hojtsy: Empty toolbar tray displays...
- 804a0a17 - Issue #3239123 by hooroomoo, bnjmnm, nod_: Refactor (if feasible) uses of the...
- ac28769a - Issue #3259380 by lauriii, Wim Leers, DamienMcKenna, hooroomoo, bnjmnm:...
- 6958a65a - Issue #3260520 by TR: GenericEvent is used improperly
- f004d8a6 - Revert "Issue #3172166 by Pooja Ganjage, ekes, Megha_kundar, tstoeckler,...
- e1a10703 - Issue #3261357 by xjm: Increase Drupal 10's RECOMMENDED_PHP to 8.1 now
- 438aab92 - Issue #3258969 by heddn: Wrong argument for @Message in...
- 2a2b6ad5 - Issue #3258642 by ilgnerfagundes, asishsajeev, Chi: Fix documentation for...
- e7eb443f - Issue #3174402 by beatrizrodrigues, shetpooja04, ravi.shankar, ayushmishra206,...
- 79ad4249 - Issue #3256433 by andregp, Abhijith S, awangsetyawan, DuneBL, mherchel:...
- 3e90900f - Issue #3115054 by chr.fritsch, vsujeetkumar, Vidushi Mehta, sergiuteaca,...
- 09c149e8 - Issue #3254347 by murilohp, joachim, danflanagan8, quietone: Add the process...
- 613a875a - Issue #3258276 by Spokje: Remove deprecated flag --no-suggest from...
- 14ac9347 - Issue #3259532 by mondrake, murilohp: Add a kernel test for Connection::hasJson
- 3744d21b - Issue #3232550 by Wim Leers, hooroomoo, xjm, ravi.shankar: Improve messaging...
- 90818af1 - Issue #3261712 by Wim Leers, bnjmnm: Expand SmartDefaultSettingsTest to also...
- e157b9c0 - Issue #3261629 by catch: Database dumps are no longer driver-agnostic
- d3e6e774 - Issue #3249592 by hooroomoo, vlyalko, Wim Leers, lauriii: [drupalImage] <img...
- eecd1285 - Issue #3248423 by nod_, lauriii: Decide how CKEditor 5-provided types should be referenced
- 7a2f38e6 - Issue #3248469 by nod_, lauriii, Wim Leers, longwave: Research if the CKE...
- 644bec3c - Issue #3258030 by hooroomoo, lauriii, andregp, Wim Leers, rkoller: Text fields...
- 6f1a617a - Issue #3261957 by longwave, quietone, andypost: Properly deprecate...
- 44ff0426 - Issue #3262583 by xjm, neclimdul, bnjmnm, catch: Update Twig to 2.14.11
- 1538662f - Issue #3172166 by Pooja Ganjage, ekes, Megha_kundar, xjm, alexpott,...
- 0725a14d - Issue #3262500 by catch, andypost: Mark drupal_find_theme_functions() @internal in Drupal 9
- f7385ac0 - Issue #3065574 by Charlie ChX Negyesi, quietone, amateescu: getUntranslated()...
- c66b1ce1 - Issue #2807949 by kunal.sachdev, tim.plunkett, tedbow, Dropa: update.module is...
- 3cf6d577 - Issue #3164210 by jungle, sylus, Akhildev.cs, dww: Refactor array_merge()...
- 6db6dcae - Issue #3254727 by Leon Kessler, ranjith_kumar_k_u, cmlara, andileco: File...
- c25e7730 - Issue #3248879 by alexpott: UpdatePathTestTrait doesn't test what it thinks it does
- a87084f9 - Issue #3262805 by andypost, ravi.shankar, voleger, catch: Deprecate drupal_required_modules()
- 52e590a8 - Issue #3231321 by bnjmnm, nod_, lauriii: Improve keyboard accessibility in a particular edge case
- e3a49e2a - Issue #3260554 by lauriii, hooroomoo, Wim Leers, nod_: [drupalMedia] Support...
- 9aabbee8 - Issue #3254866 by benjifisher, alexpott: Update the deprecation notices...
- ed59dfd3 - Revert "Issue #3217699 by mondrake, daffie, alexpott, andypost: Convert select...
- bb3ee2e9 - Issue #3250191 by nod_, Wim Leers, lauriii, rkoller, Joachim Namyslo:...
- 068b3ff4 - Issue #3262160 by nod_, lauriii: Simplify code in assets.js, remove mix of await and promise code
- df171a1a - Issue #2949457 by idebr, jibran, Wim Leers, dungahk, fago, kim.pepper,...
- 1cc9b3b3 - Issue #3255809 by nod_, lauriii, hooroomoo: Add nightwatch tests for toolbar
- 2f757712 - Revert "Issue #3255809 by nod_, lauriii, hooroomoo: Add nightwatch tests for toolbar"
- 40786962 - Issue #3263126 by longwave, bbrala: Avoid unnecessary installs when testing...
- d901d684 - Issue #3259953 by andregp, paulocs, benjifisher, AaronMcHale, vikashsoni,...
- 60c37b27 - Issue #3264050 by neclimdul, andypost: Fuzzed tag values to...
- 289fbfc5 - Issue #3224178 by TR, vikashsoni, longwave, joachim, andypost: Remove theme...
- 1e35a287 - Issue #3264153 by neclimdul: Fix missing sprintf argument in CKEditor5ImageController
- df9d6795 - Issue #3254198 by longwave: Remove Media Entity compatibility check from media_install()
- 0679b0fc - Issue #3259807 by idebr, anneke_vde: #type => 'toolbar_item' without a tab...
- 5f3489ff - Issue #3166449 by ravi.shankar, adamzimmermann, mmatsoo, walangitan,...
- 951118f7 - Issue #3257127 by bbrala, quietone, murilohp, Spokje, anabpv, catch, xjm,...
- 18c089bc - Issue #3264435 by catch, Spokje: Help topics and rest don't filter out...
- 3c321ab4 - SA-CORE-2022-003 by ciss, xjm, larowlan, benjy, mcdruid, jenlampton,...
- 9bdef2ac - SA-CORE-2022-004 by samuel.mortenson, xjm, nod_, effulgentsia, phenaproxima,...
- e6fe96be - Fix coding standards issue from security advisory.
- 171eeb61 - Issue #3263793 by naveenvalecha: Move tracker help topics to tracker module
- a0ffc4bb - Issue #1777270 by aries, quietone, AkashKumar07, shetpooja04, Devin Carlson,...
- 92c54ef5 - Issue #3264451 by Wim Leers, bnjmnm: ImageTest::testWidth() has wrong...
- 3603f878 - Issue #3261942 by hooroomoo, lauriii, Wim Leers: Compatibility issues with inline form errors
- cd4d856a - Issue #3228334 by Wim Leers, larowlan, lauriii, DieterHolvoet,...
- fa8929ec - Issue #3224652 by Wim Leers, hooroomoo, vlyalko, lauriii, bnjmnm, huzooka:...
- a2c7e7b0 - Issue #3262492 by lauriii, Wim Leers: Refactor isMediaUrl to more generic API...
- 18e36fa4 - Issue #3255809 by nod_, lauriii, xjm, hooroomoo: Add nightwatch tests for toolbar
- 47a9a9af - Issue #3228464 by nod_, Wim Leers, lauriii, Reinmar: API for contrib projects...
- 4a1de7f7 - Issue #3263886 by JeroenT, Spokje: Copy drupal-9.3.0.bare.standard.php.gz and...
- 4ab04869 - Issue #3262573 by longwave, nod_, xjm, alexpott, lauriii: Update our yarn dev...
- a7a51e54 - Issue #3253715 by mondrake, longwave: Replace assertions involving calls to...
- 8ea45471 - Issue #3260044 by kim.pepper, andypost, daffie, mfb: Add a constant for watchdog_exception message
- 1793a942 - Issue #2861376 by chiranjeeb2410, tvb, vacho, Mile23, mr.baileys, dawehner,...
- 3c7c0fdf - Issue #3265419 by andypost: Improve deprecation message for RequestStack::getMasterRequest()
- d54ee303 - Issue #3221507 by mxr576: mkdir can fail in...
- ffdbfa52 - Issue #3265376 by xjm: Fix UpdateScriptTest when MINIMUM_SUPPORTED_PHP is used
- 493149ee - Issue #3263654 by Spokje, bbrala, daffie, Kristen Pol, longwave: Move all HAL...
- 5fa8127d - Issue #3264945 by Spokje, dww: Move quickedit help topics to quickedit module
- 22ef75a5 - Issue #2941208 by AdamPS, dpi, sja112, aleevas, andypost, anmolgoyal74,...
- 5dca8003 - Issue #3265378 by xjm: Fix NoPreExistingSchemaUpdateTest when MINIMUM_SUPPORTED_PHP is used
- 8bc92ecf - Issue #3265377 by xjm: Fix LocaleTranslatedSchemaDefinitionTest when MINIMUM_SUPPORTED_PHP is used
- b568675f - Issue #3255887 by murilohp, heddn, catch, neclimdul, Berdir, daffie:...
- 4dcb45e2 - Issue #3264862 by mglaman, ankithashetty, longwave: ContextAwarePluginBase...
- 1d09ab11 - Issue #3261049 by Gauravmahlawat, elber, Elena Chechulina, longwave, Chi,...
- df17f235 - Issue #3265291 by xjm, neclimdul, longwave, Spokje: QuickStartTest: The waiting is the hardest part
- 9cd98a60 - Issue #3264220 by kostyashupenko, Chi: Remove Claro's...
- cde16804 - Revert "Issue #3255887 by murilohp, heddn, catch, neclimdul, Berdir, daffie:...
- fd949e55 - Issue #3215044 by quietone, murilohp, larowlan, Gábor Hojtsy, catch, xjm,...
- 577f9357 - Issue #1810148 by Matroskeen, tanc, ravi.shankar, AaronBauman, VladimirAus,...
- 2103b199 - Revert "Issue #3215044 by quietone, murilohp, larowlan, Gábor Hojtsy, catch,...
- 0e90ae90 - Issue #3263873 by ljcarnieri, longwave: drupal.editor.admin needs declare...
- 96c58120 - Issue #3248239 by ckrina, thejimbirch, mherchel: Links in the tour tip body...
- c32587a8 - Issue #3215517 by Gauravmahlawat, sagarchauhan, jeremyvii, bkosborne:...
- bf642ec6 - Issue #3123811 by sd9121, lauriii, codewithlakshay, kostyashupenko,...
- 9d5f1c16 - Issue #3265230 by bnjmnm, Wim Leers: Refactor ie11.filter.warnings.es6.js to...
- d185ea19 - Issue #3265802 by daffie, alexpott: user_update_9301() causes data loss and a...
- 2afbf15b - Issue #3215044 by quietone, murilohp, larowlan, Gábor Hojtsy, catch, dww,...
- 9076657d - Issue #2540794 by Eli-T, cilefen, karishmaamin, cosmicdreams, yoroy:...
- e73d2d19 - Issue #3248440 by lauriii, Wim Leers, nod_: [drupalMedia] Media embed...
- f4c710f8 - Issue #3264520 by longwave: Remove acorn from package.json
- 123f259d - Issue #3260568 by bserem, longwave: Fix "Member has protected visibility" in...
- be38b686 - Issue #2730227 by kellyimagined, izus, swarad07, Sonal.Sangale, snehi, ZeiP,...
- f00a1210 - Issue #3214124 by imalabya, Sakthivel M, javi-er, vicheldt, naveen433,...
- fb7bb930 - Issue #3259493 by Wim Leers, lauriii, larowlan: [GHS] Unable to limit...
- ff071465 - Issue #3187908 by capysara, komalk, djsagar, Gauravmahlawat, mherchel,...
- e76eaf19 - Issue #3213556 by Sakthivel M, ranjith_kumar_k_u, manojithape, chetanbharambe,...
- f8136d48 - Issue #3246385 by lauriii, nod_, Wim Leers: [drupalMedia] Support captions on <drupal-media>
- c6d0179b - Issue #3154962 by alexpott, vijaycs85, bbrala, Berdir, Wim Leers:...
- 48897c3f - Issue #2821009 by ZeiP, quietone, Dinesh18, shashikant_chauhan, chx, joachim,...
- 1d7fd635 - Issue #3261538 by andregp, dww, joachim, alexpott:...
- f200a37d - Issue #3265362 by quietone, dww, murilohp: Do not display obsolete themes at admin/appearance
- fb93414a - Issue #3265546 by Spokje, quietone:...
- 95a9e5eb - Issue #3255419 by alexpott, Bart Vanhoutte, daffie, catch, sam-elayyoub,...
- 47ef6656 - Issue #3264512 by nod_, ankithashetty, catch, Wim Leers: Enable aggregation for CKEditor 5 assets
- f3f0496e - Issue #3258114 by mherchel, nod_, VirtualVasquez, longwave: Upgrade Chromedriver
- b5aa3eb6 - Issue #3088730 by Spokje, anmolgoyal74, ankithashetty, Mile23, longwave,...
- 5996407e - Issue #3260710 by mglaman: UpdateUploaderTestBase must be declared abstract
- f26bc100 - Issue #3263618 by Spokje, bbrala, larowlan, catch, daffie, quietone: Deprecate HAL module
- fbd6924b - Issue #3246365 by lauriii, ankithashetty, Wim Leers: [drupalMedia] Show the...
- e2e4b11b - Issue #2833864 by RoSk0, colan, ressa, Chi, alexpott, joachim, loopy1492,...
- 84ef9eb3 - Issue #3239738 by Theresa.Grannum, danflanagan8, Wim Leers: BigPipe...
- e53e9479 - Issue #3227822 by lauriii, Wim Leers: [GHS] Ensure GHS works with our custom...
- c16dfb45 - Issue #3265618 by longwave, nod_, lauriii: Update to eslint 8
- dfe7fd83 - Issue #3265619 by andregp, longwave, lauriii, nod_: Update Shepherd.js to 9.x
- c20ea2ac - Issue #3262384 by manuel.adan: Assigned shortcut set is not cleaned on user removal
- 16a374d4 - Issue #3266310 by bnjmnm, Wim Leers, longwave: IE11 user warning has ungraceful failures
- 3c6394a4 - Issue #2873648 by idebr, andregp, mfb, swentel: With many languages,...
- 9d3bdf2b - Issue #3254245 by kim.pepper, Jeya sundhar, mrweiner, bakulahluwalia, Berdir,...
- 557fe885 - Issue #3267078 by alexpott, Berdir: Add return typehint to TwigExtension::getFileUrl()
- 64d811c8 - Issue #3267124 by longwave, alexpott: Temporarily skip failing tests
- a1923a90 - Issue #3265483 by quietone, danflanagan8, daffie: Handle block migration for...
- 27d1218d - Issue #3267052 by quietone, daffie: Move aggregator help topics to aggregator module
- 817c080c - Issue #3265424 by quietone, daffie, danflanagan8: Move migrate related...
- 65c3e57f - Issue #3260853 by Wim Leers, bnjmnm: [GHS] Partial wildcard attributes (<foo...
- 91947b29 - Issue #3259928 by tstoeckler, Berdir, m4olivei, marcoscano, Gábor Hojtsy:...
- c196fa99 - Issue #3264775 by lauriii, Wim Leers: [drupalMedia] Toolbar should be visible...
- 504dfae9 - Issue #3264727 by lauriii, Wim Leers, benjifisher, andregp, AaronMcHale,...
- 261d23de - Issue #3262320 by tstoeckler: Remove obsolete region override in ContextualLinksTest
- 81717f78 - Issue #3260032 by longwave, bnjmnm, Wim Leers, samuel.mortenson: CKEditor 5...
- 902494ed - Issue #3261734 by Wim Leers, longwave, lauriii, effulgentsia, Mixologic,...
- 4280bd6a - Issue #3267508 by quietone, Spokje: Use aggregator fixture in migrate Functional tests
- 9a4c5305 - Issue #3194084 by bnjmnm, Wim Leers, lauriii, hooroomoo, Gábor Hojtsy: Support...
- 30b2a9da - Issue #2797141 by Driskell, daffie, andypost, Charlie ChX Negyesi,...
- 7b59ff86 - Issue #3267754 by lauriii: AjaxTest is failing
- 68c95d07 - Issue #3267823 by alexpott, Spokje:...
- 21b92bda - Issue #3250397 by alexpott, mondrake, ressa, daffie, xjm: DbLog triggers PHP...
- 435439a6 - Issue #3267644 by danflanagan8, mglaman: Custom Block (block_content) tests...
- a57fe2aa - Issue #3263201 by manuel.adan: Missing argument type on hook_shortcut_default_set declaration
- 71d02346 - Issue #3268070 by xjm: Temporarily skip even more failing tests
- b45e6954 - Issue #3261600 by lauriii, hooroomoo, Wim Leers: Update to CKEditor5 v32.0.0
- f7ecd6ba - Issue #3090187 by ilya.no, andypost, AdamPS, abx: Mechanism to disable...
- f3fea02d - Issue #3258782 by murilohp, quietone, dww, catch, Spokje, xjm, daffie,...
- 974c42a8 - Issue #3265652 by nod_, xjm, lauriii, Wim Leers, Gábor Hojtsy: Unfork jQuery UI
- d933e188 - Issue #3267705 by xjm, longwave: Fix error message when 'yarn check -s' fails...
- b04c08e7 - Issue #3041900 by ankithashetty, Krzysztof Domański, yogeshmpawar, longwave:...
- 4a0768b7 - Issue #3247694 by danflanagan8, mglaman: User tests should not rely on Classy
- cfd82a0e - Issue #3267653 by danflanagan8, mglaman: Comment tests should not rely on Classy
- 1ce85c7b - Issue #3268368 by lauriii, xjm, Wim Leers: Robustify and restore...
- 6b91f32a - Issue #3060875 by pavnish, Dakwamine, martin107, Neslee Canil Pinto, mikelutz,...
- b77aba76 - Issue #3268272 by sayco: TypeError: strpos(): Argument #1 ($haystack) must be...
- 42b500c9 - Issue #3248430 by nod_, Wim Leers, lauriii: Improve Drupal.ckeditor5 documentation
- 1438e66f - Issue #3252562 by rlhawk, mikelutz, benjifisher, danflanagan8: In Callback...
- 2fefddb3 - Issue #3268708 by danflanagan8, longwave: Contact tests should not rely on Classy
- 3e4ed27f - Issue #3256003 by andregp, ranjith_kumar_k_u, Satyajit1990, Gauravmahlawat,...
- 4657466d - Issue #3226716 by beatrizrodrigues, joachim, xjm, lucienchalom: Missing return...
- 5e2c9139 - Issue #3269064 by lauriii, xjm, Wim Leers: Update to CKEditor 5 v33.0.0
- 245131bb - Issue #3266443 by quietone: Rename StateFileExists to StateFileExistsTest
- e5590b22 - Issue #2911473 by Maouna, joachim, adinac, dhirendra.mishra, ravi.shankar,...
- 3e6b51d9 - Issue #3265325 by xjm, Wim Leers, daffie: Raise a warning instead of an error...
- 55bb63f8 - Issue #3162228 by longwave, Spokje, freelock, jackson.cooper, phenaproxima,...
- d56f0b43 - Issue #3267274 by quietone, xjm, danflanagan8: Use aggregator fixture instead...
- ef310cef - Issue #3268174 by Wim Leers, nod_, catch, lauriii: Bug in CKE 4 → 5 upgrade...
- aa4a0570 - Issue #3261517 by andypost: Clean-up stale reference to drupal_get_schema()
- 4753c4fa - Issue #3267721 by nod_, Wim Leers: Add DrupalCI step for ensuring that...
- ed8a57c2 - Issue #3248228 by lauriii, Wim Leers: Unable to change selection after linking...
- 270047ba - Issue #3231337 by lauriii, Wim Leers: [drupalMedia] Remove manual dataDowncast...
- 38f1463c - SA-CORE-2022-005 by jbogdanski, Wim Leers, xjm, larowlan
- 2855e443 - Issue #3232494 by bircher, NigelCunningham, alexpott: Optimise...
- 1b2dfeb4 - Issue #3260869 by lauriii, Wim Leers, bnjmnm, alexpott, catch: Resolve...
- ea4dbb56 - Issue #3266308 by dww, murilohp, Vinodhini.E, alexpott, Kristen Pol:...
- dd3c026b - Issue #3269266 by danflanagan8, longwave: Contextual Links tests should not rely on Classy
- ed58a159 - Issue #3264122 by Spokje, Taran2L, ankithashetty, quietone, catch, xjm,...
- 577ae19e - Issue #3270112 by bnjmnm, Wim Leers: Excessive aria-live announcing from...
- 53cd5e46 - Issue #3270110 by bnjmnm, Wim Leers: Toolbar config items missing "press arrow...
- a012320a - Issue #3231328 by Wim Leers, nod_: SmartDefaultSettings should select the CKE5...
- daa91bc2 - Issue #2636086 by Matroskeen, jian he, Sweetchuck, dawehner, Lendude: Add...
- 2fbd9f71 - Revert "Issue #2636086 by Matroskeen, jian he, Sweetchuck, dawehner, Lendude:...
- bac77053 - Issue #3270108 by bnjmnm, Wim Leers: Editor does not load when using Edge + WHCM
- 15011eb1 - Issue #3259443 by marcvangend, bnjmnm, Abhijith S: Plugin settings do not...
- 3f738a91 - Issue #3239838 by longwave, Spokje, nod_, xjm: Update core eslint...
- b230624e - SA-CORE-2022-006 by JeroenT, DamienMcKenna, xjm, pwolanin, alexpott, larowlan, greggles
- 13c453a3 - Issue #3270323 by Spokje, murilohp, xjm:...
- d89fbdaf - Issue #3263384 by nod_, Wim Leers: Add ckeditor5-code-block package and CodeBlock plugin
- 7cbd470e - Issue #3267870 by heddn, Fabianx: Order image mappings by breakpoint ID and numeric multiplier
- b9bf2bb6 - Issue #3230829 by mohit_aghera, marcvangend, Wim Leers, Kristen Pol:...
- ad005a74 - Issue #3270323 by Spokje, murilohp, catch, xjm, longwave:...
- 6932e25e - Revert "Issue #3267870 by heddn, Fabianx: Order image mappings by breakpoint...
- 99b6843d - Issue #3268932 by danflanagan8, mondrake, dww, xjm, longwave, alexpott,...
- f7400641 - Issue #3268860 by lauriii, Wim Leers: Elements wrapping <drupal-media> are not retained
- d4cec9fd - Issue #3269868 by lauriii, ravi.shankar, andregp, Wim Leers: [drupalImage]...
- 356e0c0f - Issue #3031271 by mstrelan, bbrala, PQ, lois.chabrand, acbramley, drs2034,...
- 163afde5 - Issue #3260857 by Wim Leers, lauriii: Expand...
- 4766b717 - Issue #3270574 by catch, andregp, mherchel: Olivero comment template breaks 'new' indicator/anchor
- eac36140 - Issue #3269716 by andy-blum, mherchel: Olivero: Search is unusable in desktop...
- ed80c4d6 - Issue #2779999 by shashikant_chauhan, guilhermevp, dww, joachim, xjm: Document...
- dcefcaa2 - Issue #3209903 by IndrajithKB, aaron.ferris, Gauravmahlawat, Abhijith S,...
- bc17f2fe - Issue #3219921 by nironan, kostyashupenko, javi-er, Gauravmahlawat,...
- f7e571c8 - Issue #3264911 by bserem, lauriii, arismag, xjm, vensires: Core CSS files...
- 2d053618 - Issue #3261611 by xjm, andregp, ranjith_kumar_k_u, Suresh Prabhu Parkala,...
- 1cca2784 - Issue #3272035 by mherchel, andy-blum: Add "linktext" and "canvastext" to cspell dictionary.
- 83c74c6a - Issue #3171728 by jasonfelix, katherined, mherchel, DyanneNova, tanubansal,...
- f25db89b - Issue #2917655 by xjm, Spokje, catch, Gábor Hojtsy, Pasqualle, rivimey,...
- 5060ac6e - Issue #3265723 by nevergone: Duplicate word: directly
- 88a909d3 - Issue #3270835 by xjm, Wim Leers, lauriii: Move BigPipe's CKEditor 4...
- 02bb7cb2 - Issue #3271050 by xjm, Wim Leers, bbrala: Update REST and JSON:API Editor...
- 39865b51 - Issue #3269502 by danflanagan8, dww: Field and Field UI tests should not rely on Classy
- 4fb5cf25 - Issue #3269267 by danflanagan8, dww: dblog tests should not rely on Classy
- a38e046f - Issue #3258321 by darvanen, AaronMcHale, dww, mstrelan, lauriii, Gábor Hojtsy,...
- 2ce5ee3d - Issue #2845571 by quietone, aerozeppelin, robertwb, Lendude: ViewsJoin ignores...
- 9a265629 - Issue #2760659 by lauriii, yogeshmpawar, vmachado, anya_m, alexpott, Fabianx,...
- 8f1c7a8c - Issue #2616814 by dpi, Xano, geek-merlin, Hardik_Patel_12, jofitz, alexpott,...
- 24472eef - Issue #3268680 by phenaproxima, xjm, Spokje, ravi.shankar, bnjmmn: [random...
- 7c2a25b3 - Revert "Issue #2917655 by xjm, Spokje, catch, Gábor Hojtsy, Pasqualle,...
- 2e10d9a1 - Revert "Issue #2616814 by dpi, Xano, geek-merlin, Hardik_Patel_12, jofitz,...
- e4579e1e - Issue #2616814 by dpi, Xano, geek-merlin, Hardik_Patel_12, jofitz, alexpott,...
- 559ddbd5 - Issue #3267458 by Spokje, quietone, yogeshmpawar, catch: Deprecate aggregator module in Drupal 9.4
- aa3e4aeb - Issue #3269517 by danflanagan8, dww: Datetime and Datetime Range tests should not rely on Classy
- 1a598382 - Issue #3268307 by lauriii, Wim Leers: $block wildcard resolves into a superset...
- 13a660ba - Issue #3270897 by quietone, yogeshmpawar, bbrala: Handle migration tests for removing Color
- 1202ca38 - Issue #3270905 by quietone, bbrala: Move Color help topics to Color module
- 0bd2e3e2 - Issue #3271046 by xjm: Move integration test for CKEditor 4 and Inline Form Errors into CKEditor 4
- 351a2c42 - Issue #3267513 by quietone, andregp, danflanagan8: Handle migration tests for removing RDF
- f26b6327 - Issue #3222757 by lauriii, Wim Leers, nod_, rachel_norfolk, mgifford,...
- f28a7c05 - Issue #2917655 by xjm, Spokje, catch, Gábor Hojtsy, Pasqualle, rivimey,...
- eba2a2df - Issue #3027653 by clayfreeman, tim.plunkett, Pavel Ruban, raman.b,...
- ebc14e6a - Issue #2636086 by Matroskeen, Spokje, jian he, ravi.shankar, larowlan,...
- 353ba71c - Issue #3272727 by mherchel, nod_: Nightwatch's drupalModuleInstall() doesn't...
- e2ab23a2 - Issue #3067697 by javi-er, Hardik_Patel_12, mherchel, andy-blum, huzooka,...
- 3d794cf6 - Issue #3270765 by Wim Leers, lauriii: Add test coverage for createDropdown in drupalElementStyles
- ddc12ad1 - Issue #3268443 by danflanagan8, ravi.shankar, dww, longwave: Configuration...
- 56a355e2 - Issue #3268105 by murilohp, bbrala, catch, TR, Spokje: Bring back...
- 7be4a4fe - Issue #3272872 by nod_: deprecate underscore and mark it internal
- 6ee580fe - Issue #3272731 by Shashwat Purav, danflanagan8: jsonapi tests should not rely on Classy
- 07712edc - Issue #3272746 by Shashwat Purav, danflanagan8: Layout Discovery tests should not rely on Classy
- 63b32ac5 - Issue #3112547 by andypost, dww, yogeshmpawar, Lendude, bnjmnm, danflanagan8,...
- e87408c4 - Issue #3273072 by svenryen: Typo in Block module's tour
- 4e4d69ce - Issue #3265929 by jonathanshaw, yogeshmpawar, quietone, xjm: Rewrite examples...
- 70a2bfd4 - Issue #3273626 by xjm, dww, Spokje: Drupal Media JavaScript test suite causes...
- 4d9db675 - Issue #3273332 by Wim Leers, DieterHolvoet: Merging cells in tables is...
- 1a834c9e - Issue #3273312 by Wim Leers, Dom., ifrik, mpp, seanB, lauriii: Upgrading from...
- b0f5cfa2 - Issue #3272797 by bnjmnm, phenaproxima, xjm: [random test failure] Restore...
- a0783746 - Issue #3270886 by drumm: Remove outdated note in drupalci.yml
- 307e3b7a - Issue #3273527 by joevagyok, Wim Leers: Upgrade path never configures the...
- 70d94d49 - Issue #3173159 by sardara, JeroenT: Block add form ajax callback implementation issues
- 7953bb57 - Issue #2807241 by Stefdewa, jhodgdon, Lendude, droplet, pjbaert, alexpott:...
- 58831740 - Issue #3270940 by quietone: Move all non migration Color tests to the module...
- c6bda047 - Issue #3203604 by Eli-T, snig, justafish, kuldeep_mehra27, Matroskeen, Finn...
- ec891b85 - Issue #3258931 by nod_, hooroomoo, xjm, catch, effulgentsia, Wim Leers:...
- 2d19c2fe - Issue #3265626 by bnjmnm, Wim Leers, nod_, lauriii, alexpott, andregp: Changes...
- 310943d1 - Issue #3263935 by huzooka, danflanagan8, quietone: system_site migrates...
- 305d1207 - Issue #3259188 by alexpott, dww, chr.fritsch: Extend post update system to...
- c550b6e8 - Issue #3067299 by andypost, iyyappan.govind, quietone, mrinalini9,...
- 9220170b - Issue #3266397 by quietone, murilohp, dww, AaronMcHale, benjifisher, Antoniya,...
- 1e8dacec - Issue #1948572 by quietone, joachim: Document #region_callback in Field UI
- 9de5949b - Issue #3173180 by heddn, edysmp, chrisfree, andypost, markdorison,...
- 057214cb - Issue #3272722 by Lendude: The deprecation message for...
- 0592f24a - Issue #3130305 by mherchel, cindytwilliams, bnjmnm, saschaeggi,...
- 66f0b9e2 - Issue #3269417 by mherchel, cindytwilliams: Claro: Breadcrumb divider icon not...
- a64c04c2 - Issue #3269341 by mherchel, KurtTrowbridge: Claro <details> element not...
- f093c32e - Issue #3274767 by nod_, lauriii: Update to CKEditor 5 v34.0.0
- 6e58ed88 - Issue #3210435 by javi-er, kostyashupenko, sagarchauhan, mherchel, bnjmnm,...
- 96728e54 - Revert "Issue #3173180 by heddn, edysmp, chrisfree, andypost, markdorison,...
- 417d64dd - Issue #3268318 by lauriii, Wim Leers, tim.plunkett: [drupalMedia] <a> with GHS...
- f689c80f - Issue #3173180 by heddn, edysmp, chrisfree, andypost, markdorison,...
- 0b987f85 - Issue #3275180 by xjm, larowlan: Update composer/composer dev dependency version
- c596c120 - Issue #3245720 by hooroomoo, nod_, Wim Leers, lauriii, yash.rode:...
- 3aa89b93 - Issue #3275093 by larowlan, catch, bbrala, dww, heddn: Drupal 9.3.0 dumps were...
- 4da04a22 - Issue #3013802 by andregp, yogeshmpawar, gaurav.kapoor, nikitas, Charlie ChX...
- f56cd047 - Issue #3274265 by Johnny Santos, danflanagan8: Locale Tests should not rely on Classy
- 73428d64 - Issue #3274096 by danflanagan8, cliddell: Link Tests should not rely on Classy
- 53225084 - Issue #3274066 by danflanagan8: Node tests should not rely on Classy
- 41b04e45 - Issue #3248295 by danflanagan8, xjm, dww, mglaman: Taxonomy tests should not rely on Classy
- 91ebf8e7 - Issue #3233491 by hooroomoo, xjm, lauriii, nod_, justafish, droplet,...
- 12e8b703 - Issue #3274278 by Wim Leers, jcnventura, yogeshmpawar, andregp, bnjmnm:...
- 09367101 - Issue #3273325 by Dom., Wim Leers, andregp, ifrik: CKE5 and contrib: better...
- dca093de - Issue #3270395 by murilohp, nod_, mradcliffe, xjm, Wim Leers: Remove use of...
- 7afe7f58 - Issue #3225706 by joachim, Gauravmahlawat: rewrite...
- 0a110d34 - Issue #3265664 by nod_, longwave, lauriii: Update jsdom to latest major release
- e9294d88 - Issue #3269091 by gambry, yogeshmpawar, jonathanshaw, joachim, alexpott:...
- baa0ed68 - Issue #3256549 by cilefen, murilohp, longwave, catch, Spokje: Deprecate...
- 0ad67051 - Issue #3270941 by quietone, ravi.shankar, yogeshmpawar, murilohp, bbrala,...
- f892baca - Issue #3271305 by m4olivei, mherchel, rafuel92, yogeshmpawar, andy-blum,...
- fd0f1b4d - SA-CORE-2022-008 by mxr576, xjm, effulgentsia, mxr576, larowlan
- ab1107a4 - SA-CORE-2022-009 by kristiaanvandeneynde, larowlan, acbramley, xjm, longwave,...
- 0e319b4e - Issue #3270941 by quietone, ravi.shankar, yogeshmpawar, murilohp, heddn,...
- a30b87a3 - Issue #3272537 by danflanagan8: Help and Help Topics tests should not rely on Classy
- 32a56fef - Issue #2236983 by quietone, DenEwout: Not at all clear how/when...
- 1a2ea04d - Issue #3275114 by Wim Leers, lauriii, bnjmmn: Add subsystem maintainers for CKEditor 5
- 89d9f9d9 - Issue #3275216 by akoepke, larowlan: Fix UpdateSettingsForm dependency injection
- e0bba127 - Issue #3276615 by catch, mherchel: Remove olivero_form_comment_form_alter()...
- c44d9666 - Issue #3271666 by mherchel, cindytwilliams: Olivero pager's next/prev icons...
- b710d3f4 - Issue #3273056 by kmonahan, mherchel, Johnny Santos, rkoller, ckrina: Active...
- 7067f98b - Issue #3261943 by bnjmnm, lauriii, Wim Leers, andreasderijcke, ifrik:...
- 7bdf3b06 - Issue #3230230 by bnjmnm, johnwebdev, Wim Leers, lauriii, Anna_CKSource,...
- 1a20413c - Issue #3275464 by HEBL, danflanagan8: Remove obsolete test method FrontPageTest::testAdminFrontPage
- 1876f3f5 - Issue #3271507 by danflanagan8, nod_: Block tests should not rely on Classy
- f6af177e - Issue #3272734 by danflanagan8: Statistics tests should not rely on Classy
- c4768c4d - Issue #3272737 by danflanagan8: Workspaces tests should not rely on Classy
- 40615d8f - Issue #3266739 by beatrizrodrigues, joachim:...
- c226816f - Issue #3020418 by antoineh, ckrina, bnjmnm, fhaeberle, saschaeggi, andregp,...
- f6058b86 - Issue #3231334 by Wim Leers, bnjmnm: Global attributes (<* lang> and <*...
- 52fbb197 - Issue #2717921 by gaurav.kapoor, drnikki, subhashuyadav, pratik_specbee,...
- 4b6a0adc - Issue #3081489 by kostyashupenko, mherchel, justafish, andy-blum,...
- c136e1d8 - Issue #3277053 by Gábor Hojtsy, ckrina, saschaeggi, lauriii, bnjmnm: Mark Claro as Stable
- eff874c9 - Issue #3277057 by Gábor Hojtsy, tedbow, lauriii, ckrina, saschaeggi, bnjmnm:...
- 96418444 - Issue #3087701 by markdorison, shaal, Ruchi Joshi, benjifisher, markconroy,...
- 16bdab1f - Issue #3276670 by hooroomoo, Wim Leers: Some configurations of allowed view...
- 54fc1bad - Issue #3276627 by Wim Leers, hooroomoo:...
- 0f24b084 - Issue #3269085 by alexpott, larowlan, danflanagan8, Matroskeen: [random test...
- 5b666681 - Issue #3248425 by nod_, yogeshmpawar, Wim Leers, lauriii, bnjmnm, marcvangend:...
- 48715daa - Issue #3229078 by scott_euser, Wim Leers, hooroomoo, brentg, yogeshmpawar,...
- 02693ce4 - Issue #3276620 by catch, Spokje: Change NoJavaScriptAnonymousTest to use stark theme
- 06fb03e9 - Issue #3276618 by catch, mherchel, eojthebrave, Gábor Hojtsy: Olivero sets...
- 0bf84966 - Issue #3277405 by Wim Leers, nod_: Update @ckeditor/ckeditor5-list to v34.0.1
- 22dab5e4 - Issue #3266216 by mherchel, rkoller: The section-titles in the preview section...
- 953a69bf - Issue #3261599 by hooroomoo, Wim Leers, lauriii: Use CKEditor 5's native <ol...
- 5996e3a4 - Issue #3276974 by hooroomoo, Wim Leers: [drupalMedia] Media View Modes don't...
- 0388920e - Issue #3228691 by Wim Leers, lauriii, nod_: Restrict allowed additional...
- 78baa2f2 - Issue #3277743 by xjm, RainbowArray: Update contributor name and username in MAINTAINERS.txt
- 0bd4c9f4 - Issue #3219959 by marcoscano, Gábor Hojtsy, eojthebrave, Spokje, mherchel,...
- 76512193 - Issue #3206217 by mglaman, lauriii, alexpott: Allow starterkit themes to...
- 33527a5f - Drupal 9.5.x-dev
- e894995a - Issue #2168711 by yogeshmpawar, droplet, mariancalinro, bnjmnm, peterpoe,...
- 73b7efeb - Issue #3277274 by richardrobinson, saki007ster, ApocalypticJake, bnjmnm,...
- 3fe2e7f3 - Issue #2995367 by quietone, xjm, Lendude: Fix update module test fixture names...
- 5ffd6ae6 - Issue #3277309 by phjou, mradcliffe, benjifisher, markie: Update links to...
- 79a302da - Issue #3226016 by Gauravmahlawat, Libbna: Olivero: use multi-class array for...
- 02ffcc43 - Issue #3270709 by Shashwat Purav, Chi, apaderno: Remove reference to...
- 7ef5ad66 - Issue #3272516 by Wim Leers, yogeshmpawar, bnjmnm, catch: Deprecate...
- fc89b10f - Issue #2958358 by Mile23, alexpott: Remove Drupal\Component\Utility's...
- 7a35abe9 - Issue #3230541 by cliddell, jday, yogeshmpawar, neclimdul, cmlara, Charlie ChX...
- 5d068a48 - Revert "Issue #3230541 by cliddell, jday, yogeshmpawar, neclimdul, cmlara,...
- c88351cf - Issue #3230541 by cliddell, jday, yogeshmpawar, neclimdul, cmlara, Charlie ChX...
- ad870924 - Issue #3266912 by nod_, Wim Leers, lauriii, xjm, mmjvb: Review version...
- 9c956d43 - Issue #3278568 by lauriii, Spokje: Add Seven and Bartik block configuration to optional config
- 4b54cc5e - Issue #3278565 by lauriii, Spokje: Remove Claro block configuration from Standard
- 20e0d59e - Issue #3278215 by Spokje, lauriii, eojthebrave, Berdir: (Not so) Random test...
- 07230e83 - Issue #3278696 by Spokje: Rename Oliveros block.block.book_navigation.yml and...
- a9ca452a - Issue #3278732 by Spokje, lauriii: Remove Claro block configuration from Umami
- c0bad151 - Issue #3278163 by xjm, nod_, lauriii: yarn upgrade for latest security vulnerabilities
- 9cc4bbec - Issue #3278162 by longwave, xjm, mallezie, Spokje: Update Composer...
- b077d55c - Issue #3278394 by Wim Leers, bnjmnm: HTMLRestrictions' diff operation bug:...
- e169a237 - Issue #3275237 by hooroomoo, lauriii, Wim Leers, nod_: Don't convert, instead...
- 05b4b091 - Issue #3253955 by benjifisher, kristiaanvandeneynde, AaronMcHale: Let modules...
- 1b9a758b - Issue #3251709 by cindytwilliams, andregp, ankithashetty, ckrina, saschaeggi:...
- 1015c1b3 - Issue #3279640 by alexpott, Spokje, mherchel, lauriii, catch: Standard install...
- 23e599ba - Issue #3279788 by alexpott: PHP 7.3 testing on Drupal 9.4.x and 9.5.x is...
- 004fa86e - Issue #3278246 by lauriii, alexpott, nod_, justafish: Deprecate...
- ab035217 - Issue #3269657 by hooroomoo, Wim Leers: [drupalMedia] The CKEditor 4 → 5...
- b4011fbf - Issue #3206226 by Wim Leers, mglaman, lauriii, alexpott: Make updating changes...
- 3fe2df71 - Issue #3253286 by lauriii, ckrina, bnjmnm, xjm: Remove unnecessary template...
- b8df4178 - Issue #3278786 by lauriii, nod_: Update production JavaScript dependencies to latest minors
- 06f6126b - Issue #3279850 by alexpott, dww, lauriii: Theme post updates are not...
- 3070c83b - Issue #3101922 by bnjmnm, nod_, lauriii: Find replacement for Modernizr...
- ac1dc4bb - Issue #3259593 by hooroomoo, Dom., Wim Leers, lauriii: Alignment being...
- f88b9582 - Issue #3279840 by Spokje, mallezie, alexpott: Fix...
- 00991b9d - Issue #3280359 by bnjmnm: Make jQuery.form internal
- 3f6a61e7 - Issue #3252100 by amateescu, catch, Tim Bozeman: Set revision_default when publishing
- 7942ea78 - Issue #3277311 by nod_, Wim Leers, catch, larowlan: Deprecate and mark internal contextual JS API
- 7ab84336 - Issue #3276218 by lauriii: Follow-up to #3268318: Enable link manual decorator...
- 78d9626f - Issue #2917239 by Lendude, dww, iStryker: Form is built when not using fields
- b72a2b11 - Issue #2314443 by olli, Lendude, immaculatexavier, dawehner: Changing view...
- 70c11f89 - Issue #3278032 by andregp, bkline@rksystems.com: Remove dead code from ContentTranslationController
- 2d3c1013 - Issue #3277557 by galactus86, mherchel, rootwork: Olivero: Progress indicator...
- d9a2db8b - Issue #3272354 by danflanagan8: Filter tests should not rely on Classy
- 1f1cdd2c - Issue #3276839 by Spokje, mondrake: Remove leftover dumpHeaders property
- 5859d6d5 - Issue #3270081 by franck_lorancy, quietone, Cottser: Fix indentation in doc...
- a3562c9e - Issue #3278314 by acbramley: InlineBlockUsageInterface::getUsage can return...
- f4a02958 - Issue #3275530 by danflanagan8: Language Tests should not rely on Classy
- 0a5c3527 - Issue #3272558 by danflanagan8: Content Translation tests should not rely on Classy
- 3f231c5d - Issue #3279103 by bradjones1: Test cleanup: Remove dead code from JsonApiFunctionalTest
- 537c2798 - Issue #3276652 by andregp, eojthebrave, markie, catch, danflanagan8:...
- eabf471d - Issue #3272543 by danflanagan8, larowlan: History tests should not rely on Classy
- b74c35f5 - Issue #3272336 by danflanagan8: File tests should not rely on Classy
- 1c89f62b - Issue #3272581 by danflanagan8: Image tests should not rely on Classy
- 9e6666fb - Issue #3218562 by bradjones1, yogeshmpawar, Lendude, catch: Fix typo in/rename SearchSimplifyTest
- 93135724 - Issue #3279502 by webflo: Fix invalid @property annotations
- 7eda63ab - Issue #3277552 by Hebl, Asha Nair, rootwork, Charles Belov: Seven is missing...
- 6d19feb1 - Issue #3280614 by Spokje: (Not so) Random test failures QuickEditFileTest
- ff78b804 - Issue #2580263 by Berdir, nils.destoop, catch, Cottser, larowlan: Find a way...
- debf7027 - Issue #3112283 by ravi.shankar, mpdonadio, andregp, daffie, jhedstrom,...
- ec5b3639 - Issue #332796 by voleger, dww, Steve Dondley, ykhadilkar, Dave Reid,...
- a9d27d15 - Issue #3260920 by tstoeckler: Contact's MessageEntityTest wrongly uses 'edit'...
- 9ca2366c - Issue #3276565 by dww, larowlan: Add larowlan as maintainer of contextual.module
- d5cb46bb - Issue #3250582 by huzooka, Matroskeen, danflanagan8, ravi.shankar, quietone,...
- 8faa516a - Issue #3280602 by larowlan, DanielVeza, Wim Leers, mstrelan: Exceptions for...
- 387143aa - Issue #3272956 by xjm, Wim Leers, tedbow, dww: Hardcode security coverage EOL...
- 37f6b990 - Issue #3268746 by quietone, xjm: Fix missing newlines for...
- da098e32 - Issue #3232714 by paulocs, vsujeetkumar, mondrake, longwave, quietone,...
- 91f04e6e - Issue #3262874 by Spokje, longwave, ankithashetty, catch, andypost: Update Coder to 8.3.15
- 4a392a17 - Issue #3280882 by mondrake, mallezie: KernelTestBase::tearDown() cleanup...
- dd723d01 - Issue #3225966 by claudiu.cristea, xjm, Mixologic, neclimdul, alexpott,...
- d6160168 - Issue #3058409 by guilhermevp, joachim, ravi.shankar, quietone, init90,...
- a3056c87 - Issue #3270936 by Spokje, quietone, andypost, lauriii: Deprecate Color module
- 6a2a3a4e - Issue #2580723 by AdamPS, Berdir, andypost, darvanen, larowlan, alexpott,...
- ef284073 - Issue #3245553 by quietone, danflanagan8: Fix migration of localized D6 menu links
- 304c695a - Issue #3270842 by javi-er, sharayurajput, ckrina, WagnerMelo, saschaeggi:...
- ab69d9ae - Issue #3274080 by mherchel, andy-blum, lauriii: Olivero's mobile menu...
- 90932101 - Issue #3260007 by mondrake, yogeshmpawar, daffie, andypost: Decouple...
- 761e2df5 - Issue #2513524 by andregp, JeroenT, Bill Choy, TR, tstoeckler, dawehner, Wim...
- 03bfbe68 - Revert "Issue #3260007 by mondrake, yogeshmpawar, daffie, andypost: Decouple...
- 9c6d3d2d - Issue #3279693 by mherchel, andy-blum: Olivero: Hyperlinks with "button" or...
- 9fe14155 - Issue #3246755 by mherchel, yogeshmpawar, Libbna, cindytwilliams, zenimagine:...
- 7ecb8bd0 - Issue #3279703 by VIGHNESH SADAGOPAL, Binoli Lalani, Stockfoot, Maninders,...
- d851e0cf - Issue #3282050 by Spokje: Failing HEAD on PHP 7.3 on ComposerIntegrationTest::testComposerLockHash
- cc55493e - Issue #3281863 by alexpott, Wim Leers, nod_, hestenet, xjm, huzooka,...
- 362d1665 - Issue #3282342 by xjm: Forward-port Guzzle updates, because the private...
- 5a802d5d - Issue #3282395 by alexpott, mallezie: Latest versions of PHPStan and...
- b8090af2 - Issue #3282342 follow-up: Forward-port Guzzle updates, because the private...
- 2448cd3e - Issue #3261447 by xjm, lauriii, ravi.shankar, Wim Leers, alexpott, tedbow,...
- 90085a80 - Issue #3277438 by Wim Leers, bnjmnm, lauriii, xjm, nod_, Reinmar: Update to CKEditor 5 v34.1.0
- e7fea5d1 - Issue #3265140 by Spokje, bnjmnm, lauriii, mstrelan, dww, Wim Leers, xjm,...
- d22061d0 - Revert "Issue #3261447 by xjm, lauriii, ravi.shankar, Wim Leers, alexpott,...
- be966211 - Issue #3281578 by Wim Leers, quietone, xjm, catch: Increase Composer...
- f78f839f - Issue #3261447 by xjm, lauriii, ravi.shankar, pingwin4eg, Wim Leers, alexpott,...
- 0c5c3692 - Issue #3260007 by mondrake, yogeshmpawar, daffie, andypost: Decouple...
- dcca2f90 - Issue #3279192 by daffie, ravi.shankar, geek-merlin, alexpott: Change the...
- d3d389ec - Issue #3283093 by alexpott, daffie: Update PHP dependencies for minor and patch versions
- 47c9c023 - Issue #3274651 by Wim Leers, nod_, alexpott: Impossible to enable <ol type> or...
- a595534d - Issue #3280985 by mherchel, andy-blum: Olivero's code block styling is...
- 90f0feea - Issue #3227431 by mherchel, kostyashupenko, andy-blum, Kristen Pol,...
- 0b4483b7 - Issue #3276217 by lauriii, Wim Leers: [drupalMedia] add tests to confirm GHS...
- f7d93687 - Issue #3274648 by nod_, Wim Leers: HTMLRestrictions::merge() and...
- 2ebeaa5b - Issue #3283795 by alexpott, bircher: ComposerHooksTest is broken on latest DrupalCI PHP container
- 452ae8b4 - Issue #3284270 by alexpott, bircher: Reset...
- 5fa54e82 - Issue #3273983 by Wim Leers, ifrik, lauriii: Do not assume that plugin...
- 5e4d7419 - Issue #3247683 by Wim Leers, lauriii, bnjmnm, Reinmar: Disable CKEditor 5's...
- fe141d21 - Issue #3223264 by andy-blum, mherchel, Kristen Pol: Olivero: Messages can be...
- 145af574 - Issue #3284502 by effulgentsia, alexpott: [regression] Drupal 9.4 breaks BC...
- 9f8fd641 - Issue #3281438 by tinto, deviantintegral, catch: Update CKEditorTest to not use Bartik and Seven
- 981f57cc - Issue #3276108 by jasonfelix, mherchel, zenimagine, lauriii: Allow the RSS...
- 9050e30e - Issue #3280399 by Mile23, voleger, hestenet, andypost, daffie: Mark...
- 040661ea - SA-CORE-2022-011 by GHaddon, JeroenT, yivanov, Heine, longwave, DamienMcKenna,...
- 3613d7ba - Issue #3285193 by Lendude, xjm: Temporarily skip random test failures that...
- 4649b00e - Issue #3280398 by alexpott, mherchel, quietone: Theme's post updates within...
- c1a30781 - Issue #3284970 by alexpott: Reduce complexity in \Drupal\Core\Site\Settings::initialize
- d99a0f62 - Issue #3269215 by slucero, dpi: EntityTypeInterface::getKey() is typehinted as...
- 98391f65 - Issue #3281451 by tinto: Update Ajax FunctionalJavascript test to not use Bartik and Seven
- e68482b6 - Issue #3281443 by _shY: Update Taxonomy tests to not use Bartik and Seven
- 87854bcf - Issue #3283599 by eleonel: Fix a typo in Help message on ckeditor5.module
- 0af76002 - Issue #3283619 by eleonel: Fix a comment typo in common.inc
- a2ca087f - Issue #2392815 by alexpott, pooja saraah, bircher, cilefen, pratik_specbee,...
- d894465f - Issue #3198340 by alexpott, xjm, Mile23, cilefen, mmjvb, catch, Mixologic,...
- 4c5ba4c1 - Issue #3257485 by TR, daffie: Constructor of Drupal\Core\Test\TestDiscovery...
- 3cc2c851 - Issue #3277148 by rpayanm, andregp, joachim, Farnoosh, Athrylith, Jingting:...
- 8afa78af - Issue #3265492 by dww, Spokje, Amber Himes Matz, quietone: Fix inaccuracies in...
- 08069074 - Issue #2430133 by JeroenT, znerol, mgifford: BlockLanguageTest tests non-existing pages
- 73d0a0c1 - Issue #3277025 by Spokje, longwave: For additional security you should declare...
- 0bf085bb - Issue #3265429 by neclimdul, eleonel: Fix array keys in MailManagerTest
- 1e385657 - Issue #3285572 by alexpott, longwave: Update dependencies to latest patch...
- 462e2fb7 - Issue #3285696 by sardara, alexpott, longwave: Legacy random session ID...
- 9423caee - Issue #3264633 by mstrelan, Spokje, dww, larowlan, tim.plunkett, xjm: Remove...
- 3fff51c7 - Issue #3268244 by Spokje, xjm, Wim Leers: [random test failure] Un-skip and...
- 25664162 - Issue #3267258 by Spokje, dww, andregp, Wim Leers, mstrelan, catch: Remove...
- 95156f27 - Issue #2430379 by quietone, znerol, larowlan: Add explicit test for session...
- 635d9e02 - Issue #2747273 by quietone, mayurjadhav, talhaparacha: Example given on...
- 480394b3 - Issue #3257600 by tstoeckler, rpayanm: SettingsTrayBlockFormTest needlessly overrides getTestThemes
- feae261b - Issue #2733675 by smccabe, murilohp, andregp, Johnny Santos, ankithashetty,...
- 515a89ea - Issue #3285131 by andregp, daffie, catch, longwave: Fix constructor...
- 18693c00 - Issue #3291047 by Wim Leers, Spokje: Move Quick Edit-specific styling of...
- dc4e2a8b - Issue #3291018 by Spokje, Wim Leers: Move...
- 5a83c90a - Issue #3283498 by Mile23, alexpott: Scaffold ReplaceOp::copyScaffold() throws...
- 9fda17dd - Issue #3280033 by hmendes, rajandro, dpi, Ayesh: PHP 8.2 compatibility: ${}...
- f95eaa74 - Issue #3291265 by Spokje: \Drupal\Tests\forum\Functional\ForumNodeAccessTest...
- 60d6c151 - Issue #3164699 by jungle, ravi.shankar, andregp, kishor_kolekar, sulfikar_s,...
- 9b485ec7 - Issue #3283794 by mondrake, longwave: Fix 'should return {type} but return...
- 1d277cec - Issue #3283235 by TR: Fix a comment typo in FileFieldWidgetTest
- a3b68b80 - Issue #3145738 by andrewmacpherson, quietone, Mile23, mmjvb: Incorrect...
- 42bbd1ad - Issue #1645328 by Liam Morland, darvanen, shravan sonkar, andregp,...
- 6166cd07 - Issue #3267314 by quietone, danflanagan8: Handle migration tests for removing tracker
- b7c5fcb3 - Issue #3291780 by longwave, xjm: guzzlehttp/guzzle 6.5.8 requires guzzlehttp/psr7 ^1.9
- 740a7a80 - Issue #3291877 by alexpott, longwave: Fix...
- c668a90a - Issue #3285230 by xjm, benjifisher, phenaproxima, mikelutz, quietone:...
- 2fc70d93 - Issue #3292413 by Spokje: Update deprecation error made in [#3264633] from 9.5.0 to 9.4.2
- a7a75a70 - Issue #3153852 by clayfreeman, catch: Both component and core versions of...
- 0b19d9a8 - Issue #3292626 by Spokje, dww: Remove core/modules/ckeditor5/css/quickedit.css
- 77c72811 - Issue #3291283 by nod_, jsutta, longwave, cilefen, alexpott, Gabbia998,...
- d83d8eb4 - Issue #2987089 by askibinski, andypost, alexpott: Remove views.module's direct...
- 07660f91 - Issue #3280589 by Spokje, longwave, Mile23: Deprecate Composer Vendor Cleanup Scripts
- eb8e65e7 - Issue #3292992 by Spokje: [#3280589] broke HEAD on 10.0.x and 10.1.x
- 721355ce - Issue #3291317 by immaculatexavier, mherchel, Janner, longwave: Views Mini...
- 8ce4d4a2 - Issue #3086931 by longwave, zrpnr, Spokje: Remove unused postcss.config.js
- 8db9a652 - Issue #3284010 by _shY, mherchel, Abhijith S: "Create content" link within...
- 3941fd02 - Issue #3271057 by Wim Leers, xjm, lauriii: Move Media Library CKEditor 4...
- 8d2664c4 - Issue #3293114 by uri_frazier, mikelutz, Spokje: Fix var tag on recent commit
- bb3c0cb3 - Issue #3070747 by immaculatexavier, herved, alexpott, yoruvo: Profile paths...
- f2dfd3e5 - Issue #3270556 by quietone: Handle NULL for max_filesize_per_file in...
- c90ec155 - Issue #3293051 by Spokje, longwave:...
- 95fe4e0f - Issue #3293215 by longwave: Remove remnants of Simpletest UI
- 09051cc3 - Issue #3291830 by webflo: Fix PSR4 path for database driver
- c0cdaa71 - Issue #2896993 by cburschka, andypost, mxr576, jedihe: Decorated services crash on serialization
- 76e904eb - Issue #3270831 by Wim Leers, bnjmnm, xjm, catch: Make the CKEditor 4 → 5...
- 414b1176 - Issue #3239935 by mondrake, Spokje, alexpott, andypost, daffie: Refactor ToolkitGdTest
- 5f5ea220 - Issue #3264145 by ankithashetty, yogeshmpawar, ravi.shankar, mrinalini9,...
- 54a6ed2a - Issue #3292850 by tim.plunkett, chrisfromredfin, leslieg, xjm: Add Project...
- d02015fc - Issue #3291295 by Ishani Patel, Webbeh: Incorrect ckeditor5.plugin.media_media schema label
- 358d7df6 - Issue #3031492 by longwave, tedbow, Spokje: Remove @todo in InlineBlockEntityOperations constructor
- ef7c8624 - Issue #3291303 by Spokje: "Wierd" assertion in \Drupal\Tests\views\Functional\Wizard\BasicTest
- 12e07497 - Issue #3255749 by Spokje, alexpott, shaal, longwave, cilefen, AaronMcHale,...
- e5d6a0ce - Issue #3259671 by alexpott, _KASH_, Lendude: Slow query in titleQuery Vid.php
- e2943656 - Issue #3248078 by uri_frazier, antojose, alisonjo315, rootwork: Update 8.x...
- a15d0efd - Issue #3112290 by Spokje, mondrake, mpdonadio, daffie, andypost, Kristen Pol,...
- 03e037d8 - Issue #3225381 by mikelutz, jrockowitz, yivanov, Spokje, larowlan, longwave,...
- d0ab08fb - Issue #3294076 by longwave: Remove unused ExceptionTestSiteSubscriber
- d323b06f - Issue #3294205 by shaal, NickDickinsonWilde, Spokje, alexpott, xjm, larowlan,...
- fc742692 - Issue #3294938 by xjm, catch, dww: Increase RECOMMENDED_PHP to 8.1.6
- c1cd3dce - Issue #3294883 by marcoscano: Fix inaccurate code comment in Media.php
- de637ade - Issue #3284665 by arunkumark, Rashmisoni, Jimaginary, Rakhi Soni, longwave:...
- 6764848b - Issue #3137119 by munish.kumar, johnwebdev, Jaypan, jungle, xjm, catch:...
- 72330ced - Revert "Issue #3137119 by munish.kumar, johnwebdev, Jaypan, jungle, xjm,...
- f04ef57c - Revert "Revert "Issue #3137119 by munish.kumar, johnwebdev, Jaypan, jungle,...
- 66887de7 - Issue #3292380 by Spokje, effulgentsia, larowlan, catch: Remove the "replace"...
- 2e9f33b3 - Issue #2859197 by Wim Leers, Abhijith S, borisson_, lauriii, swentel, joachim:...
- 2db9c972 - Issue #3207771 by scott_euser, quietone, immaculatexavier, ravi.shankar,...
- d19fa67a - Issue #2494617 by Lendude, danflanagan8, Bès, Shreya Shetty, stBorchert,...
- ab63e972 - Issue #3275585 by dspachos, apaderno, joachim: Implementations of...
- a59f5209 - Issue #3270564 by quietone: Handle NULL for data blob in User source plugin
- 2dbdf7ad - Issue #3121325 by uqjhawk3, Berdir:...
- a63c7603 - Issue #2994000 by Lendude, Pasqualle, quietone, pameeela: Notice in logs when...
- 98e5ab0b - Issue #3082211 by quietone, Pooja Ganjage, danflanagan8, Spokje, benjifisher,...
- cd46ba57 - Issue #3293122 by lauriii: Document...
- 0e721780 - Issue #3291949 by alexpott, daffie: Improve the MySQL transaction isolation warning
- dd9e2e4e - Revert "Issue #3082211 by quietone, Pooja Ganjage, danflanagan8, Spokje,...
- 623dfc97 - Issue #3117291 by NitinLama, smustgrave, silverham, Chi: Element::isEmpty()...
- ca895b65 - Issue #3291744 by lauriii, xjm, Abhijith S, Wim Leers, bnjmnm, catch: Ensure...
- e13e5efe - Issue #3271094 by Wim Leers, lauriii, xjm, catch: Move Media CKEditor 4 integration into CKEditor
- 0c577115 - Issue #3294720 by abramm, nod_, alexpott: The attachBehaviors() for document...
- bcf1df4d - Issue #3086075 by jhodgdon, andypost, Charlie ChX Negyesi, Spokje: Use Twig to...
- 40dc92f1 - Issue #2916682 by Matroskeen: Defaults not working for grouped filter with multiple selections
- 44e97011 - Issue #2588013 by sumthief, aneek, tic2000, droplet, nod_, GuyPaddock,...
- 089a4e8b - Issue #3266123 by smustgrave, tinto, rkoller, Lendude, larowlan, Amber Himes...
- 411f9953 - Issue #3293996 by narendra.rajwar27, tbisciglia: Use...
- 6bab8a57 - Issue #3255887 by murilohp, mrinalini9, heddn, catch, neclimdul, longwave,...
- c0853041 - Issue #1198120 by ravi.shankar, Jody Lynn, mdupont, Everett Zufelt, borisson_,...
- 59047274 - Issue #3281452 by longwave, mrinalini9, deviantintegral, Spokje: Update Core...
- c9770654 - Issue #3252587 by longwave, smustgrave, Chalk, borisson_, alexpott: Extend the...
- afc9c24e - Issue #3268983 by nod_, iSoLate, plach, Wim Leers, acbramley, larowlan,...
- c7191499 - Revert "Issue #3268983 by nod_, iSoLate, plach, Wim Leers, acbramley,...
- 469e117c - Issue #3295421 by Gábor Hojtsy, catch, atuliet05: Update TranslationWrapper...
- 862eaf0a - Issue #3294850 by Spokje, longwave: Update to cspell 6
- f0944d22 - Issue #3246246 by Wim Leers, effulgentsia, lauriii, xjm, nod_: CKEditor 5...
- 4f3b578c - Issue #3264987 by marciaibanez, apaderno, Pasqualle, longwave:...
- 388393e8 - Issue #2473877 by Lendude, quietone, pefferen: Views UI progress indicator...
- 1a4ef7f2 - Issue #3021898 by longwave, alexpott, AaronBauman, daffie, opdavies: Support...
- 4b8585a8 - Issue #3267900 by Spokje, longwave: Unneeded argument $root for...
- c2d7ae96 - Issue #3291887 by alexpott, Spokje: Fix outdated references to form_type_checkboxes_value()
- 3a2ddfed - Issue #3281440 by _shY, nod_: Update Shortcut tests to not use Bartik and Seven
- 3668a964 - Issue #3281454 by _shY, pooja saraah, deviantintegral, quietone, alexpott,...
- 646345c8 - Issue #3295650 by Spokje, BR0kEN, Berdir, catch, Krzysztof Domański, longwave,...
- 40eeb204 - Issue #3278124 by catch, nod_, andregp, quietone, deviantintegral, alexpott:...
- 6750f9fd - Issue #3268983 by nod_, iSoLate, plach, Wim Leers, acbramley, larowlan,...
- 5ca705dc - Issue #2958241 by fjgarlin, thetwentyseven, Wim Leers, joachim,...
- 34bdf31e - Issue #3245967 by bnjmnm, Wim Leers, nod_, lauriii, tim.plunkett, andregp,...
- 5725a159 - Issue #3295709 by immaculatexavier, ravi.shankar, longwave: .views-progress-indicator CSS is unused
- 9b6af36f - Issue #3296108 by catch, dww, Spokje, mondrake: mysql_requirements() assumes...
- a9edcb0d - Issue #3088234 by tim.plunkett: Use $defaultTheme for using views_test_classy_subtheme
- 153f1a47 - Issue #3283602 by urvashi_vora, eleonel, mrinalini9, ankithashetty, alexpott,...
- d12f31e0 - Issue #2563995 by Temoor, Rakhi Soni, andypost: Remove duplicated check for...
- 10c3646f - Issue #3292908 by alexpott, dww, longwave, catch, Berdir, Charlie ChX Negyesi,...
- 85b3c375 - SA-CORE-2022-012 by cmlara, GuyPaddock, larowlan, mondrake, effulgentsia, xjm,...
- e46ba257 - SA-CORE-2022-013 by prudloff, tim.plunkett, Heine, effulgentsia, xjm, lauriii, longwave, larowlan
- a1a3b64f - SA-CORE-2022-014 by elarlang, pwolanin, xjm, mcdruid, effulgentsia, greggles,...
- 966a56db - SA-CORE-2022-015 by Heine, larowlan, alexpott, samuel.mortenson, xjm,...
- c254f135 - Issue #3279279 by phenaproxima, dww, tedbow: Remove "Download" link from Available Updates report
- 9a074926 - Issue #3204929 by longwave, donquixote, andypost: Html::load() inconsistent...
- 0b3eb21e - Issue #3292980 by benjifisher, mikelutz, quietone: Testing system should...
- 0b90a61d - Issue #2820580 by anavarre, hardikpandya, Wim Leers, Berdir, cilefen: Drupal...
- fbacd040 - Issue #3298821 by alexpott, catch, Spokje: Remove test that tests...
- 30be7498 - Issue #2647778 by ranjith_kumar_k_u, NickDickinsonWilde, Rakhi Soni,...
- a4cf727e - Issue #2852361 by Xano, smustgrave, pwolanin, mpdonadio, wolffereast,...
- c2a6b8db - Issue #3281449 by nod_, longwave, deviantintegral: Update Core unit tests to...
- 7700a2d1 - Issue #3291100 by mherchel, Rinku Jacob 13, rkoller, andy-blum: Nested details...
- 2ed8bcf0 - Issue #3085219 by mherchel, jwilson3, lauriii, andy-blum, javi-er,...
- 2ee35e23 - Issue #3119840 by raman.b, hugovk, johnwebdev, dawehner: Support syntax...
- 76ca2c36 - Issue #3281535 by mondrake, Spokje, daffie, alexpott: Fix 'Access to an...
- 112de039 - Issue #2464041 by Mile23, quietone, andrewsuth: Test unit behavior of...
- ab77cf98 - Issue #3298343 by andypost, Spokje: upgrade egulias/email-validator to 3.2.1 to support PHP 8.2
- 30b945ba - Issue #3281439 by nod_, Spokje, deviantintegral, _shY, andregp, lauriii:...
- 42143deb - Issue #3281996 by rpayanm, Fabianx: UncaughtExceptionTest is not working when...
- 4f5ad33f - Issue #3188327 by DeFr, longwave, ravi.shankar, quietone: Docblock of...
- 8480dc65 - Issue #3295972 by Munavijayalakshmi, nitin_lama, arunkumark, cilefen,...
- 818ac705 - Issue #2939237 by Anjali Rathod, pooja saraah, apaderno, eojthebrave: Update...
- 8ec9848b - Issue #3280773 by danflanagan8: Path Tests should not rely on Classy
- 41d155e2 - Issue #3266589 by idebr, mfb, longwave: Remove redundant Link canonical/shortlink response headers
- 27f361b1 - Issue #3295487 by Anjali Rathod, apaderno: HtmlFormController's contructor...
- 54a3c304 - Issue #3295813 by andypost, Berdir: ViewsEntitySchemaSubscriber access undefined property of View
- bc5c3863 - Issue #3243121 by Spokje, alexpott, longwave, yogeshmpawar, skipper-vp,...
- d9f9f161 - Issue #3281429 by tinto, nod_, deviantintegral, lauriii: Update Block...
- 32426274 - Issue #3295935 by lauriii: Follow-up to #3268983: Move test case to correct group
- 8fe9dae8 - Issue #3299213 by andypost, Spokje, catch: Require mikey179/vfsstream ^1.6.11...
- de30ad77 - Issue #3295735 by nod_, alexpott, lauriii: Fix ConfigImportUITest with olivero
- 604def46 - Issue #3281427 by quietone, nod_, deviantintegral, Spokje: Update Block and...
- 04f4673b - Revert "Issue #3281427 by quietone, nod_, deviantintegral, Spokje: Update...
- dd574175 - Issue #3281427 by quietone, nod_, deviantintegral, catch, Spokje: Update Block...
- ecce2909 - Issue #3105880 by peterkokot, Spokje, smustgrave: Remove unused TestContextAwareBlockInterface
- 74834309 - Issue #3300518 by xjm, catch, neclimdul: Update Diactoros lock file version
- a6b5766a - Issue #2774399 by mohit_aghera, joebot, Munavijayalakshmi, rensingh99,...
- 9d3e2636 - Issue #3300773 by bradjones1, andypost: Fix failed test on...
- 2d7b035c - Issue #3056652 by yogeshmpawar, mashermike, aalin, ranjith_kumar_k_u: Link...
- 92af65f8 - Revert "Issue #3300773 by bradjones1, andypost: Fix failed test on...
- 53a64bc4 - Issue #2967627 by quietone, yunke: Hook preprocess function always added
- 152704c0 - Issue #3300773 by bradjones1, andypost, xjm, catch: Fix failed test on...
- 81aeb3cb - Issue #2796045 by Lendude, abarrio, ranjith_kumar_k_u, megan_m, joachim,...
- ba6d0c6d - Issue #2568889 by smustgrave, berenddeboer, Lendude, Anandhi Karnan, ckaotik,...
- 76539523 - Issue #3300773 followup by xjm: Fix lockfile hash on 9.5.x.
- 52319318 - Issue #3284881 by Aditya4478, mherchel, sasanikolic: Refactor Claro's accordion stylesheet
- 55904628 - Issue #3242538 by danflanagan8, mounir_abid, cilefen, DigitalFrontiersMedia,...
- 1600b7ab - Issue #3296096 by Gábor Hojtsy, smustgrave, catch, Spokje: Update tabbable...
- 98deec06 - Issue #3116405 by Spokje, Mile23, Hardik_Patel_12, jofitz, Sahana _N,...
- e6df71a6 - Issue #3280302 by anoopsingh92, Shashwat Purav, arunkumark, bbrala:...
- 845ded53 - Issue #3061148 by vsujeetkumar, Ramya Balasubramanian, raman.b, ankithashetty,...
- eaa7f2e9 - Issue #3298319 by nod_: Update ExtensionDiscoveryTest to not use seven
- 0f3708a1 - Issue #3292560 by danflanagan8, smustgrave: Field Layout tests should not rely on Classy
- 16d5d428 - Issue #3275843 by danflanagan8, smustgrave: Search Tests should not rely on Classy
- cec94495 - Issue #3281444 by ravi.shankar, nod_, _shY, Vighneshh, deviantintegral, catch,...
- c27ac21a - Issue #1988968 by nod_, droplet, bnjmnm, viappidu, extect, jansete, olli,...
- 33edc28d - Issue #3301495 by lauriii, xjm, nod_, quietone: Update CKEditor 5 to 35.0.1
- 16fc07eb - Issue #3166561 by Matroskeen, ravi.shankar, andregp, mohit_aghera,...
- 1af31612 - Issue #3300040 by xjm, benjifisher, jlariza, cilefen, quietone: Update jQuery...
- 49fdcb83 - Issue #3292780 by nod_, Spokje: Move Quick Edit related Javascript from...
- bc2195e4 - Issue #3296481 by xjm, kostyashupenko, nod_: Update terser and...
- 95be6048 - Issue #3222797 by Wim Leers, nod_, bnjmnm, larowlan, mpp, Luke.Leber, lauriii,...
- 4d5900c4 - Issue #3300941 by mherchel, cindytwilliams, Manibharathi E R, Chi: Claro:...
- 8969fafd - Issue #3274937 by nod_, mrinalini9, woldtwerk, bnjmnm, Dom., Wim Leers,...
- 18b725e6 - Issue #3262674 by tstoeckler, lauriii, cindytwilliams, mherchel, Gábor Hojtsy:...
- a0586047 - Issue #3135933 by Spokje, jungle, ravi.shankar, quietone, jonathan1055,...
- 705850f1 - Issue #2157567 by Ratan Priya, smustgrave, lucassc, quietone, joachim: unclear...
- d01bb38b - Issue #3282420 by RhiP, cilefen: Ask new users to set, instead of change, their password
- 226bec73 - Issue #3285593 by immaculatexavier, Ashutosh Ahirwal, Rashmisoni,...
- d68a1e79 - Issue #3285637 by mikelutz, danflanagan8, benjifisher: 'Get' Process plugin should handle multiple
- 30d2d94c - Issue #3293814 by Spokje, quietone, catch: Move RDF-related help-topics to RDF module
- dc1441d3 - Issue #2935999 by tim.plunkett, larowlan, johnwebdev, ptmkenny: Remove Layout...
- 3ba7edd3 - Revert "Issue #3056652 by yogeshmpawar, mashermike, aalin, ranjith_kumar_k_u:...
- e39d894c - Issue #3281430 by Spokje, deviantintegral, lauriii: Update non-migration Color...
- 97dfc929 - Issue #3281430 followup by bnjmnm: Fix tests on PHP 7.3.
- 453e3723 - Issue #2313073 by smustgrave, asad_ahmed, mrinalini9, Munavijayalakshmi,...
- 9b5ead24 - Issue #3281457 by quietone, catch, bbrala, deviantintegral: Move Seven and...
- d3c44000 - Issue #3294299 by phma, alexpott, pooja saraah, mikelutz: Regression in...
- 741593c0 - Issue #3285049 by lauriii, nod_, catch, Wim Leers: Decide what to do about...
- ae14ca00 - Issue #3301712 by nod_, xjm, bnjmnm: Add vendor-update command to the build command for JS assets
- 8cbba055 - Issue #3298923 by andypost, Berdir: Fix...
- e648289e - Issue #3295520 by andypost, xjm, longwave: Update dependencies for Drupal 10.0 and 9.5
- d7808a97 - Issue #3302760 by Spokje, dww: Backport 9.4.0 database dumps to 9.5.x
- 41e55af5 - Issue #3302984 by longwave, smustgrave, quietone, Spokje: Remove RDF module from Umami
- 48c561eb - Issue #3303278 by smustgrave, longwave: Decouple NodeDisplayConfigurableTest from RDF module
- bd489b62 - Issue #3303435 by longwave, Spokje: Move RDF-related optional config to RDF module
- ac66f174 - Issue #3303453 by Spokje: Remove rdf from...
- 15873552 - Issue #3281434 by Spokje, Vighneshh, quietone, longwave, catch, nod_,...
- 1e9d9b5b - Issue #3275807 by danflanagan8, nod_, larowlan: Media Tests should not rely on Classy
- 34ab3858 - Issue #3278418 by danflanagan8, quietone, nod_: Media Library Tests should not rely on Classy
- 2e43a28e - Issue #3223061 by manojkumar1997, tanmaykadam, sagarchauhan, ameymudras,...
- bdf69e7d - Issue #3303787 by andypost, ravi.shankar, longwave, Gábor Hojtsy: Move...
- 40c8434d - Issue #3302800 by nod_, quietone, longwave: Core tests need to filter out...
- 956063d8 - Issue #3303033 by nod_, bnjmnm: Book tests should not rely on Classy
- d6da999e - Issue #3294908 by nod_, Wim Leers, DanielVeza: Configuration overlaps between...
- 581dbddf - changed logic and test
Toggle commit listadded 1 commit
- 34a866a7 - added new assertion assertNotEmpty($newer_version)
added 1 commit
- 22185fae - changed comment in fixtures and improvements in UpdateTestBase
- Resolved by quietone
503 509 504 510 // If we were unable to find a recommended version, then make the latest 505 511 // version the recommended version if possible. 506 if (!isset($project_data['recommended']) && isset($project_data['latest_version'])) { 512 if (!isset($project_data['recommended']) && isset($project_data['latest_version']) && $release_is_supported) { Do we have test coverage for this change? So this would be we did not find a recommended release but the latest version is not supported.
@kunal.sachdev if we remove this change do any tests fail that extend
UpdateSemverTestBase
? If so which ones?yes we have test coverage and if we remove this change then testUnsupportedRelease() fails in \Drupal\Tests\update\Functional\UpdateSemverContribTest and \Drupal\Tests\update\Functional\UpdateSemverCoreTest
Edited by Kunal Sachdev
- Resolved by quietone
added 1 commit
- 0555b8f2 - Removed <tag> from fixtures files and removed out of scope changes from MR.
- Resolved by quietone
added 656 commits
-
a6516342...16e2b64f - 650 commits from branch
project:9.5.x
- c614f576 - changed logic and test
- be0c469c - resolved failing test
- b987ec3b - added new assertion assertNotEmpty($newer_version)
- 7428dd9e - changed comment in fixtures and improvements in UpdateTestBase
- 1e8ea12c - Removed <tag> from fixtures files and removed out of scope changes from MR.
- f1c26d00 - reverted out of scope change
Toggle commit list-
a6516342...16e2b64f - 650 commits from branch