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

Skip to content

Commit 18ea553

Browse files
authored
Merge pull request #50772 from fabpot/release-6.2.12
released v6.2.12
2 parents e30c802 + aaac260 commit 18ea553

File tree

2 files changed

+31
-2
lines changed

2 files changed

+31
-2
lines changed

CHANGELOG-6.2.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,35 @@ 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.12 (2023-06-26)
11+
12+
* bug #50763 [DependencyInjection] Skip errored definitions deep-referenced as runtime exceptions (nicolas-grekas)
13+
* bug #50728 [HttpClient] Explicitly exclude CURLOPT_POSTREDIR (nicolas-grekas)
14+
* bug #48961 [WebProfilerBundle] right blocks: fix display (jmsche)
15+
* bug #50671 [HttpClient] Fix encoding some characters in query strings (Daniel Kozák)
16+
* bug #50655 Revert "Respect isRetryable decision of the retry strategy for re-delivery" (bendavies)
17+
* bug #50665 [FrameworkBundle] Ignore missing directories in about command (ro0NL)
18+
* bug #50644 [VarDumper] Dumping DateTime throws error if getTimezone is false (bogdanmoza)
19+
* bug #50656 Only update autoload_runtime.php when it changed (Seldaek)
20+
* bug #50698 [HttpClient] Fix int conversion for `GenericRetryStrategy` with floated multiplier (francisbesset)
21+
* bug #50611 [Clock] Fix MockClock::modify() on PHP 8.3 (nicolas-grekas)
22+
* bug #50548 [FrameworkBundle] Show non-bundle extensions in `debug:config` & `config:dump` list view & completion (HypeMC)
23+
* bug #50585 [Cache] Fix RedisTrait::createConnection for cluster (darkanakin41)
24+
* bug #50546 [FrameworkBundle] Fix `debug:config` & `config:dump` in debug mode (HypeMC)
25+
* bug #50560 [DependencyInjection] Support PHP 8.2 `true` and `null` type (ruudk)
26+
* bug #50562 [Lock] Fix sprintf (fancyweb)
27+
* bug #50524 Fix Doctrine deprecations (nicolas-grekas)
28+
* bug #50539 [Validator] Remove internal from methods on non-internal interfaces (wouterj)
29+
* bug #50534 [PhpUnitBridge] Fix support for the NO_COLOR env var (nicolas-grekas)
30+
* bug #50517 [DependencyInjection] Fix casting scalar env vars from null (fancyweb)
31+
* bug #50515 [Mailer] [MailPace] Fix undefined array key in errors response (Florian Heller)
32+
* bug #50507 [Cache] Fix DBAL deprecations (MatTheCat)
33+
* bug #50501 [Serializer] Fix discriminator map not working with `AbstractNormalizer::OBJECT_TO_POPULATE` (HypeMC)
34+
* bug #50480 [Serializer] Fix discriminator map not working with `AbstractNormalizer::OBJECT_TO_POPULATE` (HypeMC)
35+
* bug #50437 [Filesystem] Follow symlinks when dumping files (ausi)
36+
* bug #50478 [DependencyInjection] Escape `` from parameter-like default values (MatTheCat)
37+
* bug #50452 Hide definitions bearing the `container.excluded` tag (Myks92)
38+
1039
* 6.2.11 (2023-05-27)
1140

1241
* bug #50442 [SecurityBundle] Update security-1.0.xsd to include missing access-token definition (aegypius)

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.12-DEV';
78+
public const VERSION = '6.2.12';
7979
public const VERSION_ID = 60212;
8080
public const MAJOR_VERSION = 6;
8181
public const MINOR_VERSION = 2;
8282
public const RELEASE_VERSION = 12;
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)