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 b2b847b

Browse filesBrowse files
authored
Merge pull request #42267 from fabpot/release-5.3.4
released v5.3.4
2 parents a67e57a + a395e8e commit b2b847b
Copy full SHA for b2b847b

File tree

2 files changed

+51
-2
lines changed
Filter options

2 files changed

+51
-2
lines changed

‎CHANGELOG-5.3.md

Copy file name to clipboardExpand all lines: CHANGELOG-5.3.md
+49Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,55 @@ 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.4 (2021-07-26)
11+
12+
* bug #41504 [Translation] Fix default value for locales in translation push|pull commands (welcoMattic)
13+
* bug #42243 [Translation] [Lokalise] Fix `base_uri` (welcoMattic, Nyholm)
14+
* bug #42212 [Lock] Handle lock with long key (jderusse)
15+
* bug #42223 [Debug][ErrorHandler] Do not use the php80 polyfill (nicolas-grekas)
16+
* bug #42207 [Console] fix table setHeaderTitle without headers (a1812)
17+
* bug #42130 [Translation] fix fallback to Locale::getDefault() (nicolas-grekas)
18+
* bug #42184 [Mailer] Make sure Http TransportException is not leaking (Nyholm)
19+
* bug #42091 [Console] Run commands when implements SignalableCommandInterface without pcntl and they have'nt signals (PaolaRuby)
20+
* bug #42150 [Form] Fix 'invalid_message' use in multiple ChoiceType (alexandre-daubois)
21+
* bug #42183 [Notifier] Allow passing a previous throwable to exceptions (derrabus)
22+
* bug #42185 [Notifier] Make sure Http TransportException is not leaking (Nyholm)
23+
* bug #42182 [Notifier] Make sure Http TransportException is not leaking (Nyholm)
24+
* bug #42173 [Messenger] [Redis] Fix auth option wrongly considered invalid (chalasr)
25+
* bug #42174 Indicate compatibility with psr/log 2 and 3 (derrabus)
26+
* bug #41897 [Security] fix #41891 Save hashed tokenValue in RememberMe cookie (qurben)
27+
* bug #42156 Fix missing assignment (Seldaek)
28+
* bug #42112 [HttpFoundation] fix FileBag under PHP 8.1 (alexpott)
29+
* bug #42131 [PhpUnitBridge] Fix composer resolution on Windows (Rainrider)
30+
* bug #42097 [DependencyInjection] Support for intersection types (derrabus)
31+
* bug #42114 [HttpFoundation] Fix return types of SessionHandler::gc() (derrabus)
32+
* bug #42099 [VarDumper] Support for intersection types (derrabus)
33+
* bug #42011 [Cache] Support decorated Dbal drivers in PdoAdapter (Jeroeny)
34+
* bug #42068 Add a Special Case for Translating Choices in en_US_POSIX (chrisguitarguy)
35+
* bug #42074 Fix ctype_digit deprecation (alexpott)
36+
* bug #42084 [WebProfilerBundle] Fix the values of some CSS properties (javiereguiluz)
37+
* bug #42079 [FrameworkBundle] Fixed file operations in Sodium vault seal (javiereguiluz)
38+
* bug #42078 [DoctrineBridge] [Doctrine Bridge] Fix an exception message (javiereguiluz)
39+
* bug #42067 [Messenger] [Redis] Make `auth` option works (welcoMattic)
40+
* bug #42054 [DoctrineBridge] fix setting default mapping type to attribute/annotation on php 8/7 respectively (nicolas-grekas)
41+
* bug #42059 [Messenger] Fixed BC layer for RedeliveryStamp (Nyholm)
42+
* bug #42060 [Messenger] AmqpTransport implements QueueReceiverInterface (xabbuh)
43+
* bug #42049 [TwigBridge] do not render the same label id attribute twice (xabbuh)
44+
* bug #42019 [DependencyInjection] Fix TaggedLocator attribute without indexAttribute argument (Lucas Bäuerle)
45+
* bug #42032 [HttpKernel] recover from failed deserializations (xabbuh)
46+
* bug #42035 [Messenger] Fix use_notify default value for PostgreSqlConnection (tgalopin)
47+
* bug #42009 [Console] Fix save correct name in setDefaultCommand() for PHP8 (a1812)
48+
* bug #41990 [Lock] fix derivating semaphore from key (nicolas-grekas)
49+
* bug #41986 [Notifier] Fix TransportTestCase (OskarStark)
50+
* bug #40529 [Translation] Missing translations from traits (insekticid)
51+
* bug #41384 Fix SkippedTestSuite (jderusse)
52+
* bug #41966 [Console] Revert "bug #41952 fix handling positional arguments" (chalasr, nicolas-grekas)
53+
* bug #41905 [EventDispatcher] Correct the called event listener method case (JJsty1e)
54+
* bug #41961 [Serializer] Need to clear cache when updating Annotation Groups on Entities (monteiro)
55+
* bug #41952 [Console] fix handling positional arguments (nicolas-grekas)
56+
* bug #41917 Rethrow exception in `DoctrineTokenProvider` (jderusse)
57+
* bug #41887 [PhpUnitBridge] Fix deprecation handler with PHPUnit 10 (YaFou)
58+
1059
* 5.3.3 (2021-06-30)
1160

1261
* bug #41910 [Security] Handle concurency in Csrf DoctrineTokenProvider (jderusse)

‎src/Symfony/Component/HttpKernel/Kernel.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/HttpKernel/Kernel.php
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,12 +75,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl
7575

7676
private static $freshCache = [];
7777

78-
public const VERSION = '5.3.4-DEV';
78+
public const VERSION = '5.3.4';
7979
public const VERSION_ID = 50304;
8080
public const MAJOR_VERSION = 5;
8181
public const MINOR_VERSION = 3;
8282
public const RELEASE_VERSION = 4;
83-
public const EXTRA_VERSION = 'DEV';
83+
public const EXTRA_VERSION = '';
8484

8585
public const END_OF_MAINTENANCE = '01/2022';
8686
public const END_OF_LIFE = '01/2022';

0 commit comments

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