Skip to content

Commit 08964d6

Browse files
authored
Merge pull request symfony#57253 from fabpot/release-7.1.0
released v7.1.0
2 parents 50d4143 + 4f6752a commit 08964d6

File tree

2 files changed

+17
-2
lines changed

2 files changed

+17
-2
lines changed

CHANGELOG-7.1.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,21 @@ in 7.1 minor versions.
77
To get the diff for a specific change, go to https://github.com/symfony/symfony/commit/XXX where XXX is the change hash
88
To get the diff between two versions, go to https://github.com/symfony/symfony/compare/v7.1.0...v7.1.1
99

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

1227
* bug #54970 [DependencyInjection] Process PHP configs using the ContainerConfigurator (MatTheCat)

src/Symfony/Component/HttpKernel/Kernel.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,12 +73,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl
7373
*/
7474
private static array $freshCache = [];
7575

76-
public const VERSION = '7.1.0-DEV';
76+
public const VERSION = '7.1.0';
7777
public const VERSION_ID = 70100;
7878
public const MAJOR_VERSION = 7;
7979
public const MINOR_VERSION = 1;
8080
public const RELEASE_VERSION = 0;
81-
public const EXTRA_VERSION = 'DEV';
81+
public const EXTRA_VERSION = '';
8282

8383
public const END_OF_MAINTENANCE = '01/2025';
8484
public const END_OF_LIFE = '01/2025';

0 commit comments

Comments
 (0)