Skip to content

Commit

Permalink
Merge pull request symfony#51186 from fabpot/release-6.2.14
Browse files Browse the repository at this point in the history
released v6.2.14
  • Loading branch information
fabpot authored Jul 31, 2023
2 parents bd6b177 + 4e91836 commit 4e5061c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG-6.2.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ in 6.2 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.2.0...v6.2.1

* 6.2.14 (2023-07-31)

* bug #51178 [Finder] Revert "Fix children condition in ExcludeDirectoryFilterIterator" (derrabus)

* 6.2.13 (2023-07-30)

* bug #50933 [Serializer] Fix deserializing nested arrays of objects with mixed keys (HypeMC)
Expand Down
6 changes: 3 additions & 3 deletions src/Symfony/Component/HttpKernel/Kernel.php
Original file line number Diff line number Diff line change
Expand Up @@ -75,11 +75,11 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl
*/
private static array $freshCache = [];

public const VERSION = '6.2.13';
public const VERSION_ID = 60213;
public const VERSION = '6.2.14';
public const VERSION_ID = 60214;
public const MAJOR_VERSION = 6;
public const MINOR_VERSION = 2;
public const RELEASE_VERSION = 13;
public const RELEASE_VERSION = 14;
public const EXTRA_VERSION = '';

public const END_OF_MAINTENANCE = '07/2023';
Expand Down

0 comments on commit 4e5061c

Please sign in to comment.