Skip to content

Commit d3fe8ab

Browse files
authored
Merge pull request symfony#48031 from fabpot/release-6.1.7
released v6.1.7
2 parents b8a2366 + 6d38391 commit d3fe8ab

File tree

2 files changed

+22
-2
lines changed

2 files changed

+22
-2
lines changed

CHANGELOG-6.1.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,26 @@ in 6.1 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.1.0...v6.1.1
99

10+
* 6.1.7 (2022-10-28)
11+
12+
* bug #47990 [HttpClient] Fix retrying requests when the content is used by the strategy (nicolas-grekas)
13+
* bug #48005 [ErrorHandler] s/</br>/<br> (PhilETaylor)
14+
* bug #47907 [Console] Update Application.php (aleksandr-shevchenko)
15+
* bug #47955 [Security][Serializer] Add missing args to trigger_deprecation (alamirault)
16+
* bug #47932 Throw LogicException instead of Error when trying to generate logout-… (addiks)
17+
* bug #47918 [Intl] Update the ICU data to 72.1 - 5.4 (jderusse)
18+
* bug #47857 [HttpKernel] Fix empty request stack when terminating with exception (krzyc)
19+
* bug #47879 [HttpClient] Fix buffering after calling AsyncContext::passthru() (nicolas-grekas, lubo13)
20+
* bug #47878 [HttpKernel] Remove EOL when using error_log() in HttpKernel Logger (cyve)
21+
* bug #47854 [HttpClient] Don't override header if is x-www-form-urlencoded (Oipnet)
22+
* bug #47883 [Console] Fix error output on windows cli (Maximilian.Beckers)
23+
* bug #47884 [Cache] Reserve numeric keys when doing memory leak prevention (simoheinonen)
24+
* bug #47863 [DoctrineBridge] Allow doctrine/event-manager 2 (derrabus)
25+
* bug #47831 [Messenger] Fix amqp socket lost (GurvanVgx)
26+
* bug #47855 [Routing] TypeError in Router when using UrlGenerator (Maximilian.Beckers)
27+
* bug #47822 [Mailer] fix: use message object from event (rogamoore)
28+
* bug #47858 [DoctrineBridge] Implement `EventManager::getAllListeners()` (derrabus)
29+
1030
* 6.1.6 (2022-10-12)
1131

1232
* bug #47621 [Serializer] Allow getting discriminated type by class name (TamasSzigeti)

src/Symfony/Component/HttpKernel/Kernel.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,12 +78,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl
7878
*/
7979
private static array $freshCache = [];
8080

81-
public const VERSION = '6.1.7-DEV';
81+
public const VERSION = '6.1.7';
8282
public const VERSION_ID = 60107;
8383
public const MAJOR_VERSION = 6;
8484
public const MINOR_VERSION = 1;
8585
public const RELEASE_VERSION = 7;
86-
public const EXTRA_VERSION = 'DEV';
86+
public const EXTRA_VERSION = '';
8787

8888
public const END_OF_MAINTENANCE = '01/2023';
8989
public const END_OF_LIFE = '01/2023';

0 commit comments

Comments
 (0)