Thanks @des-peter for guiding me, services.yml contains the name_suffix under session.storage.option, After that it was working fine.
I tried to test the MR by making the changes manually, It does not work in my case because $this->option['name_suffix'] always comes as a blank.
Please let me know the right way of testing
This the Safari browser and CKeditor5 :
Fields are getting compressed.
patch no #2 is working without any error. Can do RTBC
comment no: #3 is working in my system.
Can move to RTBC
I debug this issue and this is the root cause for the issue:
File: DateTimeFormatterBase.php
protected function buildDateWithIsoAttribute(DrupalDateTime $date) {
// Create the ISO date in Universal Time.
$iso_date = $date->format("Y-m-d\TH:i:s") . 'Z';
$this->setTimeZone($date);
$build = [
'#theme' => 'time',
'#text' => $this->formatDate($date),
'#attributes' => [
'datetime' => $iso_date,
],
'#cache' => [
'contexts' => [
'timezone',
],
],
];
return $build;
}
here line $this->setTimeZone($date);
is the reason for saving the invalid date.
This patch 3364085-5.patch is working fine
yogen.prasad โ made their first commit to this issueโs fork.