Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 8accbc4

Browse filesBrowse files
Merge branch '5.3' into 5.4
* 5.3: CS fix CS fix CS fixes Bump Symfony version to 5.3.4 Update VERSION for 5.3.3 Update CHANGELOG for 5.3.3 Bump Symfony version to 5.2.12 Update VERSION for 5.2.11 Update CHANGELOG for 5.2.11 Bump Symfony version to 4.4.27 Update VERSION for 4.4.26 Update CONTRIBUTORS for 4.4.26 Update CHANGELOG for 4.4.26
2 parents eb2cae6 + 0e7658d commit 8accbc4
Copy full SHA for 8accbc4

File tree

Expand file treeCollapse file tree

153 files changed

+300
-227
lines changed
Filter options

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Dismiss banner
Expand file treeCollapse file tree

153 files changed

+300
-227
lines changed

‎.php-cs-fixer.dist.php

Copy file name to clipboardExpand all lines: .php-cs-fixer.dist.php
+2Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
'@Symfony' => true,
1212
'@Symfony:risky' => true,
1313
'protected_to_private' => false,
14+
'nullable_type_declaration_for_default_null_value' => ['use_nullable_type_declaration' => false],
1415
])
1516
->setRiskyAllowed(true)
1617
->setFinder(
@@ -26,6 +27,7 @@
2627
'Symfony/Bundle/FrameworkBundle/Resources/views/Form',
2728
// explicit trigger_error tests
2829
'Symfony/Bridge/PhpUnit/Tests/DeprecationErrorHandler/',
30+
'Symfony/Component/Intl/Resources/data/',
2931
])
3032
// Support for older PHPunit version
3133
->notPath('Symfony/Bridge/PhpUnit/SymfonyTestsListener.php')

‎CHANGELOG-5.2.md

Copy file name to clipboardExpand all lines: CHANGELOG-5.2.md
+40Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,46 @@ in 5.2 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/v5.2.0...v5.2.1
99

10+
* 5.2.11 (2021-06-30)
11+
12+
* bug #41893 [Filesystem] Workaround cannot dumpFile into "protected" folders on Windows (arnegroskurth)
13+
* bug #41896 [Messenger] fix FlattenExceptionNormalizer (nicolas-grekas)
14+
* bug #41242 [SecurityBundle] Change information label from red to yellow (94noni)
15+
* bug #41665 [HttpKernel] Keep max lifetime also when part of the responses don't set it (mpdude)
16+
* bug #41760 [ErrorHandler] fix handling buffered SilencedErrorContext (nicolas-grekas)
17+
* bug #41807 [HttpClient] fix Psr18Client when allow_url_fopen=0 (nicolas-grekas)
18+
* bug #40857 [DependencyInjection] Add support of PHP enumerations (alexandre-daubois)
19+
* bug #41767 [Config] fix tracking default values that reference the parent class (nicolas-grekas)
20+
* bug #41768 [DependencyInjection] Fix binding "iterable $foo" when using the PHP-DSL (nicolas-grekas)
21+
* bug #41801 [Uid] Fix fromString() with low base58 values (fancyweb)
22+
* bug #41793 [Cache] handle prefixed redis connections when clearing pools (nicolas-grekas)
23+
* bug #41804 [Cache] fix eventual consistency when using RedisTagAwareAdapter with a cluster (nicolas-grekas)
24+
* bug #41773 [Cache] Disable locking on Windows by default (nicolas-grekas)
25+
* bug #41655 [Mailer] fix encoding of addresses using SmtpTransport (dmaicher)
26+
* bug #41663 [HttpKernel] [HttpCache] Keep s-maxage=0 from ESI sub-responses (mpdude)
27+
* bug #41739 Avoid broken action URL in text notification mail (mbrodala)
28+
* bug #41701 [VarDumper] Fix tests for PHP 8.1 (alexandre-daubois)
29+
* bug #41795 [FrameworkBundle] Replace var_export with VarExporter to use array short syntax in secrets list files (alexandre-daubois)
30+
* bug #41779 [DependencyInjection] throw proper exception when decorating a synthetic service (nicolas-grekas)
31+
* bug #41776 [ErrorHandler] [DebugClassLoader] Do not check Phake mocks classes (adoy)
32+
* bug #41780 [PhpUnitBridge] fix handling the COMPOSER_BINARY env var when using simple-phpunit (Taluu)
33+
* bug #41670 [HttpFoundation] allow savePath of NativeFileSessionHandler to be null (simon.chrzanowski)
34+
* bug #41751 [Messenger] prevent reflection usages when classes do not exist (xabbuh)
35+
* bug #41616 [Messenger] Remove TLS related options when not using TLS (odolbeau)
36+
* bug #41719 [FrameworkBundle] fix Could not find service "test.service_container" (smilesrg)
37+
* bug #41674 [HttpClient] fix compat with cURL <= 7.37 (nicolas-grekas)
38+
* bug #41656 [HttpClient] throw exception when AsyncDecoratorTrait gets an already consumed response (nicolas-grekas)
39+
* bug #41644 [Config] fix tracking attributes in ReflectionClassResource (nicolas-grekas)
40+
* bug #41621 [Process] Fix incorrect parameter type (bch36)
41+
* bug #41624 [HttpClient] Revert bindto workaround for unaffected PHP versions (derrabus)
42+
* bug #41549 [Security] Fix opcache preload with alias classes (jderusse)
43+
* bug #41491 [Serializer] Do not allow to denormalize string with spaces only to valid a DateTime object (sidz)
44+
* bug #41218 [DependencyInjection] Update loader’s directory when calling ContainerConfigurator::withPath (MatTheCat)
45+
* bug #41505 [FrameworkBundle] fix KernelBrowser::loginUser with a stateless firewall (dunglas)
46+
* bug #41509 [SecurityBundle] Link UserProviderListener to correct firewall dispatcher (Matth--)
47+
* bug #41386 [Console] Escape synopsis output (jschaedl)
48+
* bug #41495 [HttpFoundation] Add ReturnTypeWillChange to SessionHandlers (nikic)
49+
1050
* 5.2.10 (2021-06-01)
1151

1252
* bug #41000 [Form] Use !isset for checks cause this doesn't falsely include 0 (Kai Dederichs)

‎CHANGELOG-5.3.md

Copy file name to clipboardExpand all lines: CHANGELOG-5.3.md
+37Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,43 @@ in 5.3 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/v5.3.0...v5.3.1
99

10+
* 5.3.3 (2021-06-30)
11+
12+
* bug #41910 [Security] Handle concurency in Csrf DoctrineTokenProvider (jderusse)
13+
* bug #41881 Fix SessionTokenStorage reuse with Request (jderusse)
14+
* bug #41893 [Filesystem] Workaround cannot dumpFile into "protected" folders on Windows (arnegroskurth)
15+
* bug #41896 [Messenger] fix FlattenExceptionNormalizer (nicolas-grekas)
16+
* bug #41242 [SecurityBundle] Change information label from red to yellow (94noni)
17+
* bug #41665 [HttpKernel] Keep max lifetime also when part of the responses don't set it (mpdude)
18+
* bug #41760 [ErrorHandler] fix handling buffered SilencedErrorContext (nicolas-grekas)
19+
* bug #41807 [HttpClient] fix Psr18Client when allow_url_fopen=0 (nicolas-grekas)
20+
* bug #41735 [Runtime] Fix project dir variable when vendor not in project root (Ash014)
21+
* bug #40857 [DependencyInjection] Add support of PHP enumerations (alexandre-daubois)
22+
* bug #41767 [Config] fix tracking default values that reference the parent class (nicolas-grekas)
23+
* bug #41768 [DependencyInjection] Fix binding "iterable $foo" when using the PHP-DSL (nicolas-grekas)
24+
* bug #41777 [DependencyInjection] accept service locator definitions with no class (nicolas-grekas)
25+
* bug #41801 [Uid] Fix fromString() with low base58 values (fancyweb)
26+
* bug #41793 [Cache] handle prefixed redis connections when clearing pools (nicolas-grekas)
27+
* bug #41804 [Cache] fix eventual consistency when using RedisTagAwareAdapter with a cluster (nicolas-grekas)
28+
* bug #41773 [Cache] Disable locking on Windows by default (nicolas-grekas)
29+
* bug #41655 [Mailer] fix encoding of addresses using SmtpTransport (dmaicher)
30+
* bug #41663 [HttpKernel] [HttpCache] Keep s-maxage=0 from ESI sub-responses (mpdude)
31+
* bug #41739 Avoid broken action URL in text notification mail (mbrodala)
32+
* bug #41737 [Security] Fix special char used to create cache key (jderusse)
33+
* bug #41701 [VarDumper] Fix tests for PHP 8.1 (alexandre-daubois)
34+
* bug #41795 [FrameworkBundle] Replace var_export with VarExporter to use array short syntax in secrets list files (alexandre-daubois)
35+
* bug #41779 [DependencyInjection] throw proper exception when decorating a synthetic service (nicolas-grekas)
36+
* bug #41787 [Security] Implement fluent interface on RememberMeBadge::disable() (derrabus)
37+
* bug #41776 [ErrorHandler] [DebugClassLoader] Do not check Phake mocks classes (adoy)
38+
* bug #41780 [PhpUnitBridge] fix handling the COMPOSER_BINARY env var when using simple-phpunit (Taluu)
39+
* bug #41755 [PasswordHasher] UserPasswordHasher only calls getSalt when method exists (dbrumann)
40+
* bug #41670 [HttpFoundation] allow savePath of NativeFileSessionHandler to be null (simon.chrzanowski)
41+
* bug #41751 [Messenger] prevent reflection usages when classes do not exist (xabbuh)
42+
* bug #41747 [Security] Fixed 'security.command.debug_firewall' not found (Nyholm)
43+
* bug #41741 [Security] Fix invalid RememberMe value after update (jderusse)
44+
* bug #41744 [Security] Fix invalid cookie when migrating to new Security (jderusse)
45+
* bug #41740 [Security] make the getter usable if no user identifier is set (xabbuh)
46+
1047
* 5.3.2 (2021-06-17)
1148

1249
* security #cve-2021-32693 [SecurityHttp] Fix "Authentication granted with multiple firewalls" (wouterj)

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.