8000 Merge pull request #50454 from fabpot/release-6.2.11 · KerianMM/symfony@626f53a · GitHub
[go: up one dir, main page]

Skip to content

Commit 626f53a

Browse files
authored
Merge pull request symfony#50454 from fabpot/release-6.2.11
released v6.2.11
2 parents 9608af3 + 3ce0d07 commit 626f53a

File tree

2 files changed

+38
-2
lines changed

2 files changed

+38
-2
lines changed

CHANGELOG-6.2.md

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,42 @@ in 6.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/v6.2.0...v6.2.1
99

10+
* 6.2.11 (2023-05-27)
11+
12+
* bug #50442 [SecurityBundle] Update security-1.0.xsd to include missing access-token definition (aegypius)
13+
* bug #50429 [Console] block input stream if needed (joelwurtz)
14+
* bug #50312 [Security] Skip clearing CSRF Token on stateless logout (chalasr)
15+
* bug #50315 [Translation] Fix handling of null messages in `ArrayLoader` (rob006)
< 8000 code>16+
* bug #50338 [Console] Remove ``exec`` and replace it by ``shell_exec`` (maxbeckers)
17+
* bug #50193 [Serializer] Fix `SerializedPath` not working with constructor arguments (HypeMC)
18+
* bug #50280 [PropertyAccess] Fix nullsafe operator on array index (HypeMC)
19+
* bug #50362 [FrameworkBundle] Fix Workflow without a marking store definition uses marking store definition of previously defined workflow (krciga22)
20+
* bug #50309 [HttpFoundation] UrlHelper is now aware of RequestContext changes (giosh94mhz)
21+
* bug #50309 [HttpFoundation] UrlHelper is now aware of RequestContext changes (giosh94mhz)
22+
* bug #50352 [Notifier][TurboSMS] Fix get sender name (ZhukV)
23+
* bug #50354 [Process] Stop the process correctly even if underlying input stream is not closed (joelwurtz)
24+
* bug #50332 [PropertyInfo] Fix `PhpStanExtractor` when constructor has no docblock (HypeMC)
25+
* bug #50253 [FrameworkBundle] Generate caches consistently on successive run of `cache:clear` command (Okhoshi)
26+
* bug #49063 [Messenger] Respect `isRetryable` decision of the retry strategy for re-delivery (FlyingDR)
27+
* bug #50251 [Serializer] Handle datetime deserialization in U format (tugmaks)
28+
* bug #50266 [HttpFoundation] Fix file streaming after connection aborted (rlshukhov)
29+
* bug #50277 [Messenger] Add `IS_REPEATABLE` flag to `AsMessageHandler` attribute (adrianguenter)
30+
* bug #50269 Fix param type annotation (l-vo)
31+
* bug #50268 Allow resources in Query::setParam (l-vo)
32+
* bug #50256 [HttpClient] Fix setting duplicate-name headers when redirecting with AmpHttpClient (nicolas-grekas)
33+
* bug #50214 [WebProfilerBundle] Remove legacy filters remnants (MatTheCat)
34+
* bug #50235 [HttpClient] Fix getting through proxies via CONNECT (nicolas-grekas)
35+
* bug #50241 [HttpKernel] Prevent initialising lazy services during services reset (tucksaun)
36+
* bug #50244 [HttpKernel] Fix restoring surrogate content from cache (nicolas-grekas)
37+
* bug #50246 [DependencyInjection] Do not check errored definitions’ type (MatTheCat)
38+
* bug #49557 [PropertyInfo] Fix phpDocExtractor nullable array value type (fabpot)
39+
* bug #50213 [ErrorHandler] Prevent conflicts with WebProfilerBundle’s JavaScript (MatTheCat)
40+
* bug #50192 [Serializer] backed enum throw notNormalizableValueException outside construct method (alli83)
41+
* bug #50238 [HttpKernel] Don't use eval() to render ESI/SSI (nicolas-grekas)
42+
* bug #50226 [HttpClient] Ensure HttplugClient ignores invalid HTTP headers (nicolas-grekas)
43+
* bug #50203 [Messenger] Fix registering message handlers (nicolas-grekas)
44+
* bug #50204 [ErrorHandler] Skip Httplug deprecations for HttplugClient (nicolas-grekas)
45+
1046
* 6.2.10 (2023-04-28)
1147

1248
* bug #50143 [Console] trim(): Argument #1 () must be of type string, bool given (danepowell)

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 array $freshCache = [];
7777

78-
public const VERSION = '6.2.11-DEV';
78+
public const VERSION = '6.2.11';
7979
public const VERSION_ID = 60211;
8080
public const MAJOR_VERSION = 6;
8181
public const MINOR_VERSION = 2;
8282
public const RELEASE_VERSION = 11;
83-
public const EXTRA_VERSION = 'DEV';
83+
public const EXTRA_VERSION = '';
8484

8585
public const END_OF_MAINTENANCE = '07/2023';
8686
public const END_OF_LIFE = '07/2023';

0 commit comments

Comments
 (0)
0