Skip to content

Commit

Permalink
Merge pull request #52791 from fabpot/release-7.0.0
Browse files Browse the repository at this point in the history
released v7.0.0
  • Loading branch information
fabpot committed Nov 29, 2023
2 parents 6411a47 + d79dfc5 commit d78c5f4
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG-7.0.md
Expand Up @@ -7,6 +7,16 @@ in 7.0 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/v7.0.0...v7.0.1

* 7.0.0 (2023-11-29)

* bug #52786 [Serializer] Revert allowed attributes fix (mtarld)
* bug #52765 [Translation] Remove ``@internal`` from abstract testcases (OskarStark)
* bug #52780 [DependencyInjection] don't check parameter values if they are not set (xabbuh)
* bug #52762 [VarExporter] Work around php/php-src#12695 for lazy objects, fixing nullsafe-related behavior (nicolas-grekas)
* bug #52759 [VarExporter] Fix serializing objects that implement __sleep() and that are made lazy (nicolas-grekas)
* bug #52767 [Serializer] Fix normalization relying on allowed attributes only (mtarld)
* bug #52727 [String] Fix Inflector for 'icon' (podhy)

* 7.0.0-RC2 (2023-11-26)

* bug #52724 [Security] make secret required for DefaultLoginRateLimiter (RobertMe)
Expand Down
4 changes: 2 additions & 2 deletions src/Symfony/Component/HttpKernel/Kernel.php
Expand Up @@ -76,12 +76,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl
*/
private static array $freshCache = [];

public const VERSION = '7.0.0-DEV';
public const VERSION = '7.0.0';
public const VERSION_ID = 70000;
public const MAJOR_VERSION = 7;
public const MINOR_VERSION = 0;
public const RELEASE_VERSION = 0;
public const EXTRA_VERSION = 'DEV';
public const EXTRA_VERSION = '';

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

0 comments on commit d78c5f4

Please sign in to comment.