Skip to content

Commit

Permalink
Merge pull request #52357 from fabpot/release-6.3.7
Browse files Browse the repository at this point in the history
released v6.3.7
  • Loading branch information
fabpot committed Oct 29, 2023
2 parents a695fa4 + 3a86b03 commit 5f74215
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 2 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG-6.3.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,21 @@ in 6.3 minor versions.
To get the diff for a specific change, go to https://github.com/symfony/symfony/commit/XXX where XXX is the change hash
To get the diff between two versions, go to https://github.com/symfony/symfony/compare/v6.3.0...v6.3.1

* 6.3.7 (2023-10-29)

* bug #52329 [HttpClient] Psr18Client: parse HTTP Reason Phrase for Response (Hanmac)
* bug #52332 [Yaml] Fix deprecated passing null to trim() (javaDeveloperKid)
* bug #52343 [Intl] Update the ICU data to 74.1 (jderusse)
* bug #52347 [Form] Fix merging form data and files (ter) (Jan Pintr)
* bug #52307 [Scheduler] Save checkpoint in a finally block (FrancoisPog)
* bug #52308 [SecurityBundle] Fix missing login-link element in xsd schema (fancyweb)
* bug #51992 [Serializer] Fix using `DateIntervalNormalizer` with union types (Jeroeny)
* bug #52276 DB table locks on messenger_messages with many failures (bn-jdcook)
* bug #52232 [Messenger] declare constructor argument as optional for backwards compatibility (xabbuh)
* bug #52283 [Serializer] Handle default context when denormalizing timestamps in DateTimeNormalizer (mtarld)
* bug #52268 [Mailer][Notifier] Update Sendinblue / Brevo API host (Stephanie)
* bug #52255 [Form] Skip merging params & files if there are no files in the first place (dmaicher, priyadi)

* 6.3.6 (2023-10-21)

* bug #52201 [HttpKernel] Resolve EBADP error on flock with LOCK_SH with NFS (driskell)
Expand Down
4 changes: 2 additions & 2 deletions src/Symfony/Component/HttpKernel/Kernel.php
Original file line number Diff line number Diff line change
Expand Up @@ -76,12 +76,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl
*/
private static array $freshCache = [];

public const VERSION = '6.3.7-DEV';
public const VERSION = '6.3.7';
public const VERSION_ID = 60307;
public const MAJOR_VERSION = 6;
public const MINOR_VERSION = 3;
public const RELEASE_VERSION = 7;
public const EXTRA_VERSION = 'DEV';
public const EXTRA_VERSION = '';

public const END_OF_MAINTENANCE = '01/2024';
public const END_OF_LIFE = '01/2024';
Expand Down

0 comments on commit 5f74215

Please sign in to comment.