8000 Merge pull request #49883 from fabpot/release-6.2.8 · symfony/symfony@93fbfe0 · GitHub
[go: up one dir, main page]

Skip to content

Commit 93fbfe0

Browse files
authored
Merge pull request #49883 from fabpot/release-6.2.8
released v6.2.8
2 parents 6b9538b + 70f9994 commit 93fbfe0

File tree

2 files changed

+37
-2
lines changed

2 files changed

+37
-2
lines changed

CHANGELOG-6.2.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,41 @@ 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.8 (2023-03-31)
11+
12+
* bug #49835 [Form] CollectionType apply prototypeOptions to ResizeFormListener new fields (Thorry84)
13+
* bug #49849 [FrameworkBundle] Fix services usages output for text descriptor (rmikalkenas)
14+
* bug #49525 [Serializer] Fix serialized path for non-scalar values (boenner)
15+
* bug #49618 [Serializer] Preserve array keys while denormalize variadic parameters (melya)
16+
* bug #49401 [TwigBridge] Fix raw content rendering in HTML notification emails (1ed)
17+
* bug #49679 [FrameworkBundle] enable metadata cache when annotation is disabled (bastnic)
18+
* bug #49796 [HttpClient] Fix not calling the on progress callback when canceling a MockResponse (fancyweb)
19+
* bug #49850 [FrameworkBundle] Fix auto-discovering validator constraints (nicolas-grekas)
20+
* bug #49867 [DependencyInjection] Filter "container.excluded" services when using `findTaggedServiceIds()` (nicolas-grekas)
21+
* bug #49833 [Translation] TranslatorBag::diff now iterates over catalogue domains instead of operation domains (welcoMattic)
22+
* bug #49848 [Cache] Fix storing binary keys when using pgsql (nicolas-grekas)
23+
* bug #49765 [Console] Add missing ZSH mention in DumpCompletionCommand help (lyrixx)
24+
* bug #49843 [FrameworkBundle] Add missing monolog channel tag for messenger services (rmikalkenas)
25+
* bug #49745 [FrameworkBundle] Fix wiring session.handler when handler_id is null (nicolas-grekas)
26+
* bug #49189 [FrameworkBundle] Improve documentation about translation:extract --sort option (marien-probesys)
27+
* bug #49274 [VarDumper] Disable links for IntelliJ platform (SerafimArts)
28+
* bug #49682 [FrameworkBundle] Workflow - Fix LogicException about a wrong configuration of "enabled" node (adpauly)
29+
* bug #49758 [HttpFoundation] Use separate caches for IpUtils checkIp4 and checkIp6 (danielburger1337)
30+
* bug #49722 [HttpClient] Encode and decode curly brackets {} (pbowyer)
31+
* bug #49720 [Serializer] GetSetMethodNormalizer::supportss should not check ignored methods (nikophil)
32+
* bug #49681 [String] Correct inflection of 'codes' and 'names' (GwendolenLynch)
33+
* bug #49697 [Validator] Update BIC validator IBAN mappings (maxbeckers)
34+
* bug #49706 Stop stopwatch events in case of exception (MatTheCat)
35+
* bug #49657 [HttpKernel] Change limit argument from string to integer for Profiler (Aliance)
36+
* bug #49674 [FrameworkBundle] Rename limiter’s `strategy` to `policy` in XSD (MatTheCat)
37+
* bug #49673 [VarDumper] Fixed dumping of CutStub (lyrixx)
38+
* bug #49604 [Mailer] STDOUT blocks infinitely under Windows when STDERR is filled (TemaYud)
39+
* bug #49651 [DependencyInjection] Fix support binary values in parameters. (vtsykun)
40+
* bug #49548 [Messenger] Fix `TransportNamesStamp` deserialization (tucksaun)
41+
* bug #49580 [HttpClient] Fix encoding "+" in URLs (nicolas-grekas)
42+
* bug #49541 [Security] Remove ``@internal`` tag on `TraceableAuthenticator::getAuthenticator()` (florentdestremau)
43+
* bug #49578 [DependencyInjection] Fix dumping array of enums parameters (fancyweb)
44+
1045
* 6.2.7 (2023-02-28)
1146

1247
* bug #49526 [Security] Migrate the session on login only when the user changes (nicolas-grekas)

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