Skip to content

Release v7.1.0 #57253

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
May 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions CHANGELOG-7.1.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,21 @@ in 7.1 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.1.0...v7.1.1

* 7.1.0 (2024-05-31)

* bug #57248 [DoctrineBridge] Revert deprecating by-{id} mapping of entities (nicolas-grekas)
* bug #54572 [Mailer] Fix sendmail transport failure handling and interactive mode (bobvandevijver)
* bug #57228 [Mime] fix PHP 7 compatibility (xabbuh)
* bug #57065 [Mime] Fixed `Mime\Message::ensureValidity()` when a required header is set, but has an empty body (rhertogh)
* bug #57069 [Config] gracefully handle cases when no resolver is set (xabbuh)
* bug #57109 [Notifier] keep boolean options when their value is false (xabbuh)
* bug #56848 [DoctrineBridge] Undeprecate DoctrineExtractor::getTypes() (derrabus)
* bug #54971 [Serializer] Cache readability/writability computation (mtarld)
* bug #54979 [Cache] Fix irrelevant deprecation when connecting to Couchbase (derrabus)
* bug #56827 Fix CharsetValidator with string encoding (alamirault)
* bug #54977 [DependencyInjection] Fix prepending strategy for php config loader (yceruto)
* bug #56488 [VarExporter] Fix exporting default values involving global constants (kylekatarnls)

* 7.1.0-RC1 (2024-05-17)

* bug #54970 [DependencyInjection] Process PHP configs using the ContainerConfigurator (MatTheCat)
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 @@ -73,12 +73,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl
*/
private static array $freshCache = [];

public const VERSION = '7.1.0-DEV';
public const VERSION = '7.1.0';
public const VERSION_ID = 70100;
public const MAJOR_VERSION = 7;
public const MINOR_VERSION = 1;
public const RELEASE_VERSION = 0;
public const EXTRA_VERSION = 'DEV';
public const EXTRA_VERSION = '';

public const END_OF_MAINTENANCE = '01/2025';
public const END_OF_LIFE = '01/2025';
Expand Down
Loading