Skip to content

Commit c80c245

Browse files
authored
Merge pull request #54467 from fabpot/release-7.0.6
released v7.0.6
2 parents 923c4ef + 87a9702 commit c80c245

File tree

2 files changed

+39
-2
lines changed

2 files changed

+39
-2
lines changed

CHANGELOG-7.0.md

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,43 @@ in 7.0 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.0.0...v7.0.1
99

10+
* 7.0.6 (2024-04-03)
11+
12+
* bug #54400 [HttpClient] stop all server processes after tests have run (xabbuh)
13+
* bug #54435 [Console] respect multi-byte characters when rendering vertical-style tables (xabbuh)
14+
* bug #54419 Fix TypeError on ProgressBar (Fan2Shrek)
15+
* bug #54425 [TwigBridge] Remove whitespaces from block form_help output (rosier)
16+
* bug #53969 [Mailer] include message id provided by the MTA when dispatching the `SentMessageEvent` (xabbuh)
17+
* bug #54315 [Serializer] Fixed BackedEnumNormalizer priority for translatable enum (IndraGunawan)
18+
* bug #54372 [Config] Fix `YamlReferenceDumper` handling of array examples (MatTheCat)
19+
* bug #54362 [Filesystem] preserve the file modification time when mirroring directories (xabbuh)
20+
* bug #54333 [HttpFoundation] Allow array style callable setting for Request setFactory method (simbera)
21+
* bug #54121 [Messenger] Catch TableNotFoundException in MySQL delete (acbramley)
22+
* bug #54271 [DoctrineBridge] Fix deprecation warning with ORM 3 when guessing field lengths (eltharin)
23+
* bug #54306 Throw TransformationFailedException when there is a null bytes injection (sormes)
24+
* bug #54148 [Serializer] Fix object normalizer when properties has the same name as their accessor (NeilPeyssard)
25+
* bug #54305 [Cache][Lock] Identify missing table in pgsql correctly and address failing integration tests (arifszn)
26+
* bug #54199 [Mailer] [Brevo] Check that tags is present in payload before calling setTags (palgalik)
27+
* bug #54292 [FrameworkBundle] Fix mailer config with XML (lyrixx)
28+
* bug #54298 [Filesystem] Fix str_contains deprecation (NeilPeyssard)
29+
* bug #54248 [Security] Correctly initialize the voter property (aschempp)
30+
* bug #54273 [DependencyInjection] fix XmlDumper when a tag contains also a 'name' property (lyrixx)
31+
* bug #54191 [Validator] add missing invalid extension error entry (xabbuh)
32+
* bug #54194 [PropertyAccess] Fix checking for missing properties (nicolas-grekas)
33+
* bug #54201 [Lock] Check the correct SQLSTATE error code for MySQL (edomato)
34+
* bug #54252 [Lock] compatiblity with redis cluster 7 (bastnic)
35+
* bug #54265 [VarDumper] prevent error in value to Typed property must not be accessed before initialization (shakaran)
36+
* bug #54124 [Messenger] trigger retry logic when message is a redelivery (nikophil)
37+
* bug #54254 [HttpKernel] Fix creating `ReflectionMethod` with only one argument (alexandre-daubois)
38+
* bug #54219 [Validator] Allow BICs’ first four characters to be digits (MatTheCat)
39+
* bug #54239 [Mailer] Fix sendmail transport not handling failure (aboks)
40+
* bug #54207 [HttpClient] Lazily initialize CurlClientState (arjenm)
41+
* bug #53865 [Workflow]Fix Marking when it must contains more than one tokens (lyrixx)
42+
* bug #54137 [Validator] UniqueValidator - normalize before reducing keys (Brajk19)
43+
* bug #54187 [FrameworkBundle] Fix PHP 8.4 deprecation on `ReflectionMethod` (alexandre-daubois)
44+
* bug #54167 [Messenger] [Amqp] Handle AMQPConnectionException when publishing a message. (jwage)
45+
* bug #54146 [HttpClient] Preserve float in JsonMockResponse (Jibbarth)
46+
1047
* 7.0.5 (2024-03-04)
1148

1249
* bug #54113 [AssetMapper] Throw exception in Javascript compiler when PCRE error (smnandre)

src/Symfony/Component/HttpKernel/Kernel.php

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

79-
public const VERSION = '7.0.6-DEV';
79+
public const VERSION = '7.0.6';
8080
public const VERSION_ID = 70006;
8181
public const MAJOR_VERSION = 7;
8282
public const MINOR_VERSION = 0;
8383
public const RELEASE_VERSION = 6;
84-
public const EXTRA_VERSION = 'DEV';
84+
public const EXTRA_VERSION = '';
8585

8686
public const END_OF_MAINTENANCE = '07/2024';
8787
public const END_OF_LIFE = '07/2024';

0 commit comments

Comments
 (0)