Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 4683d3a

Browse filesBrowse files
authored
Merge pull request #48369 from fabpot/release-6.0.16
released v6.0.16
2 parents 3b90a91 + 9d42150 commit 4683d3a
Copy full SHA for 4683d3a

File tree

2 files changed

+31
-2
lines changed
Filter options

2 files changed

+31
-2
lines changed

‎CHANGELOG-6.0.md

Copy file name to clipboardExpand all lines: CHANGELOG-6.0.md
+29Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,35 @@ in 6.0 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.0.0...v6.0.1
99

10+
* 6.0.16 (2022-11-28)
11+
12+
* bug #48333 [Yaml] parse unquoted digits in tag values as integers (xabbuh)
13+
* bug #48330 [FrameworkBundle] do not wire the MercureTransportFactory if the MercureBundle is not enabled (xabbuh)
14+
* bug #48262 [Notifier] [SMSBiuras] `true`/`false` mismatch for `test_mode` option (StaffNowa)
15+
* bug #48273 [HttpKernel] Fix message for unresovable arguments of invokable controllers (fancyweb)
16+
* bug #48251 [PropertyInfo] ignore const expressions read by phpdocumentor (xabbuh)
17+
* bug #48224 [DependencyInjection] Process bindings in `ServiceLocatorTagPass` (MatTheCat)
18+
* bug #48179 [Console] Support completion for bash functions (Chi-teck)
19+
* bug #48217 [Console] Improve error message when shell is not detected in completion command (GromNaN)
20+
* bug #48222 [Translation] [Lokalize] Configure `replace_breaks` to prevent issues with multilines translations (Kocal)
21+
* bug #48210 [Console]  Fix signal handlers called after event listeners and skip exit (GromNaN)
22+
* bug #48198 [Messenger] Fix time-limit check exception (alamirault)
23+
* bug #48122 [PhpUnitBridge] Fix language deprecations incorrectly marked as direct (wouterj)
24+
* bug #47998 [Console] Fix console `ProgressBar::override()` after manual `ProgressBar::cleanup()` (maxbeckers)
25+
* bug #48173 [HttpClient] Handle Amp HTTP client v5 incompatibility gracefully (fancyweb)
26+
* bug #48172 [HttpKernel] Don’t try to wire Response argument with controller.service_arguments (MatTheCat)
27+
* bug #48085 [Messenger] Tell about messenger:consume invalid limit options (MatTheCat)
28+
* bug #48120 [Messenger] Do not throw 'no handlers' exception when skipping handlers due to duplicate handling (wouterj)
29+
* bug #48112 [HttpFoundation] Compare cookie with null value as empty string in ResponseCookieValueSame (fancyweb)
30+
* bug #48119 [FrameworkBundle][Lock] Allow to disable lock without defining a resource (MatTheCat)
31+
* bug #48093 [DependencyInjection] don't move locator tag for service subscriber (RobertMe)
32+
* bug #48075 [Mailer] Stream timeout not detected fgets returns false (Sezil)
33+
* bug #48092 Fix the notification email theme for asynchronously dispatched emails (krisbuist)
34+
* bug #48097 Fix search scope when performing fallback mapping driver detection (spideyfusion)
35+
* bug #48103 [HttpClient] Do not set http_version instead of setting it to null (Tetragramat)
36+
* bug #48027 [DependencyInjection] Don't autoconfigure tag when it's already set with attributes (nicolas-grekas)
37+
* bug #48050 [HttpFoundation] Check IPv6 is valid before comparing it (PhilETaylor)
38+
1039
* 6.0.15 (2022-10-28)
1140

1241
* bug #47990 [HttpClient] Fix retrying requests when the content is used by the strategy (nicolas-grekas)

‎src/Symfony/Component/HttpKernel/Kernel.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/HttpKernel/Kernel.php
+2-2Lines 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.0.16-DEV';
81+
public const VERSION = '6.0.16';
8282
public const VERSION_ID = 60016;
8383
public const MAJOR_VERSION = 6;
8484
public const MINOR_VERSION = 0;
8585
public const RELEASE_VERSION = 16;
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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.