Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 4ffbef1

Browse files
authored
Merge pull request #43211 from fabpot/release-5.3.8
released v5.3.8
2 parents de2ff10 + e5b3c3b commit 4ffbef1

File tree

2 files changed

+34
-2
lines changed

2 files changed

+34
-2
lines changed

CHANGELOG-5.3.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,38 @@ 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.8 (2021-09-28)
11+
12+
* bug #43206 [Workflow] Add missing audit-trail settings in framework workflow con… (Stephan Wentz)
13+
* bug #42354 [Ldap][Security] Make LdapAuthenticator an EntryPoint (dcp-dev, chalasr)
14+
* bug #43146 [SecurityBundle] Fixed LogicException message of FirewallAwareTrait (fkropfhamer)
15+
* bug #43158 [Cache] Fix invalidating tags on Redis <5 (wouterj)
16+
* bug #43179 [Ldap] Fix `resource` type checks & docblocks on PHP 8.1 (chalasr)
17+
* bug #43174 [Messenger] relax parameter type (xabbuh)
18+
* bug #43137 [FrameworkBundle] Avoid secrets:decrypt-to-local command to fail (noniagriconomie)
19+
* bug #43171 [VarDumper] fix dumping typed references from properties (nicolas-grekas)
20+
* bug #43124 [Messenger] [Redis] Allow authentication with user and password (GaryPEGEOT)
21+
* bug #39350 [FrameworkBundle] Remove translation data_collector BEFORE adding it to profiler (l-vo)
22+
* bug #43115 [DependencyInjection] Fix iterator in ServiceConfigurator (jderusse)
23+
* bug #43073 [Notifier] Update FirebaseTransport.php (dima-gr)
24+
* bug #43031 [Form] Do not trim unassigned unicode characters (simonberger)
25+
* bug #43058 [WebProfilerBundle] Fix displaying certain configs (HypeMC)
26+
* bug #43022 [PhpUnitBridge] Track unsilenced deprecations only for userland (nicolas-grekas)
27+
* bug #42979 [FrameworkBundle] fix session-related BC layer triggering deprecation (nicolas-grekas)
28+
* bug #42672 [PropertyAccess] Fix Regression in PropertyAccessor::isWritable() (haase-fabian)
29+
* bug #42976 [Mime] Allow array as input for RawMessage (derrabus)
30+
* bug #42932 [Messenger] Support rediss in transport bridge (RuslanZavacky)
31+
* bug #42771 [FrameworkBundle] Match 5.3 and 5.1 mailer configuration (wizardz)
32+
* bug #42098 [PropertyInfo] Support for intersection types (derrabus)
33+
* bug #42904 [Cache] Make sure PdoAdapter::prune() always returns a bool (derrabus)
34+
* bug #42896 [HttpClient] Fix handling timeouts when responses are destructed (nicolas-grekas)
35+
* bug #42862 [Framework] Clean "about" command help after Environment section was removed (GromNaN)
36+
* bug #42835 [Cache] Fix implicit float to int cast (derrabus)
37+
* bug #42831 [Mime] Update mime types (fabpot)
38+
* bug #42830 [HttpKernel] Fix empty timeline in profiler (nicodmf)
39+
* bug #42815 [DependencyInjection] Fix circular reference in autowired decorators (shyim)
40+
* bug #42819 Fix tests failing with DBAL 3 (derrabus)
41+
1042
* 5.3.7 (2021-08-30)
1143

1244
* bug #42769 [HttpClient] Don't pass float to `usleep()` (derrabus)

src/Symfony/Component/HttpKernel/Kernel.php

Lines 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.8-DEV';
78+
public const VERSION = '5.3.8';
7979
public const VERSION_ID = 50308;
8080
public const MAJOR_VERSION = 5;
8181
public const MINOR_VERSION = 3;
8282
public const RELEASE_VERSION = 8;
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)