Skip to content

Commit d9de613

Browse files
authored
Merge branch 'symfony:7.1' into 7.1
2 parents ad90b93 + 44e4699 commit d9de613

File tree

735 files changed

+23156
-6679
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

735 files changed

+23156
-6679
lines changed

.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,5 @@
55
/src/Symfony/Component/Notifier/Bridge export-ignore
66
/src/Symfony/Component/Runtime export-ignore
77
/src/Symfony/Component/Translation/Bridge export-ignore
8+
/src/Symfony/Component/Emoji/Resources/data/* linguist-generated=true
89
/src/Symfony/Component/Intl/Resources/data/*/* linguist-generated=true

.php-cs-fixer.dist.php

Lines changed: 4 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,6 @@
4040
->append([__FILE__])
4141
->notPath('#/Fixtures/#')
4242
->exclude([
43-
// directories containing files with content that is autogenerated by `var_export`, which breaks CS in output code
44-
// fixture templates
45-
'Symfony/Bundle/FrameworkBundle/Tests/Templating/Helper/Resources/Custom',
46-
// resource templates
47-
'Symfony/Bundle/FrameworkBundle/Resources/views/Form',
4843
// explicit trigger_error tests
4944
'Symfony/Bridge/PhpUnit/Tests/DeprecationErrorHandler/',
5045
'Symfony/Component/Emoji/Resources/',
@@ -57,12 +52,6 @@
5752
->notPath('Symfony/Bridge/PhpUnit/SymfonyTestsListener.php')
5853
->notPath('#Symfony/Bridge/PhpUnit/.*Mock\.php#')
5954
->notPath('#Symfony/Bridge/PhpUnit/.*Legacy#')
60-
// file content autogenerated by `var_export`
61-
->notPath('Symfony/Component/Translation/Tests/Fixtures/resources.php')
62-
// file content autogenerated by `VarExporter::export`
63-
->notPath('Symfony/Component/Serializer/Tests/Fixtures/serializer.class.metadata.php')
64-
// test template
65-
->notPath('Symfony/Bundle/FrameworkBundle/Tests/Templating/Helper/Resources/Custom/_name_entry_label.html.php')
6655
// explicit trigger_error tests
6756
->notPath('Symfony/Component/ErrorHandler/Tests/DebugClassLoaderTest.php')
6857
// stop removing spaces on the end of the line in strings
@@ -73,6 +62,10 @@
7362
->notPath('Symfony/Component/Cache/Traits/Redis6Proxy.php')
7463
->notPath('Symfony/Component/Cache/Traits/RedisCluster5Proxy.php')
7564
->notPath('Symfony/Component/Cache/Traits/RedisCluster6Proxy.php')
65+
// svg
66+
->notPath('Symfony/Component/ErrorHandler/Resources/assets/images/symfony-ghost.svg.php')
67+
// HTML templates
68+
->notPath('#Symfony/.*\.html\.php#')
7669
)
7770
->setCacheFile('.php-cs-fixer.cache')
7871
;

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)

0 commit comments

Comments
 (0)