Skip to content

Commit 1bc2a0c

Browse files
authored
Merge pull request #50773 from fabpot/release-6.3.1
released v6.3.1
2 parents 2790e85 + e1da2f1 commit 1bc2a0c

File tree

2 files changed

+52
-2
lines changed

2 files changed

+52
-2
lines changed

CHANGELOG-6.3.md

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,56 @@ in 6.3 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.3.0...v6.3.1
99

10+
* 6.3.1 (2023-06-26)
11+
12+
* bug #50763 [DependencyInjection] Skip errored definitions deep-referenced as runtime exceptions (nicolas-grekas)
13+
* bug #50637 [FrameworkBundle] Fixed parsing new JSON output of debug:config not possible (Toflar)
14+
* bug #50728 [HttpClient] Explicitly exclude CURLOPT_POSTREDIR (nicolas-grekas)
15+
* bug #50710 [FrameworkBundle] Fix setting decorated services during tests (nicolas-grekas)
16+
* bug #50749 [AssetMapper] Allow DirectoryResource for cache (weaverryan)
17+
* bug #50760 [HttpFoundation] Require PHPUnit 9.6 by default (nicolas-grekas)
18+
* bug #50747 [HttpKernel] Nullable and default value arguments in RequestPayloadValueResolver (mdeboer)
19+
* bug #48961 [WebProfilerBundle] right blocks: fix display (jmsche)
20+
* bug #50730 [HttpFoundation] Make Request::getPayload() return an empty InputBag if request body is empty (nicolas-grekas)
21+
* bug #50654 [Validator] Add the `message` option to the `PasswordStrength` constraint (alexandre-daubois)
22+
* bug #50671 [HttpClient] Fix encoding some characters in query strings (Daniel Kozák)
23+
* bug #50673 [HttpKernel] make `RequestPayloadValueResolver::resolve()` throw on variadic argument (javaDeveloperKid)
24+
* bug #50655 Revert "Respect isRetryable decision of the retry strategy for re-delivery" (bendavies)
25+
* bug #50665 [FrameworkBundle] Ignore missing directories in about command (ro0NL)
26+
* bug #50644 [VarDumper] Dumping DateTime throws error if getTimezone is false (bogdanmoza)
27+
* bug #50712 [FrameworkBundle] Fix secrets:list not displaying local vars (nicolas-grekas)
28+
* bug #50656 Only update autoload_runtime.php when it changed (Seldaek)
29+
* bug #50698 [HttpClient] Fix int conversion for `GenericRetryStrategy` with floated multiplier (francisbesset)
30+
* bug #50686 [Messenger] Don't mark `RedispatchMessage` as internal (valtzu)
31+
* bug #50530 [DependencyInjection] Fix support for `false` boolean env vars (Okhoshi)
32+
* bug #50577 [HttpClient] Remove final keyword on `AsyncResponse` (lyrixx)
33+
* bug #50611 [Clock] Fix MockClock::modify() on PHP 8.3 (nicolas-grekas)
34+
* bug #50548 [FrameworkBundle] Show non-bundle extensions in `debug:config` & `config:dump` list view & completion (HypeMC)
35+
* bug #50585 [Cache] Fix RedisTrait::createConnection for cluster (darkanakin41)
36+
* bug #50599 [MonologBridge] widen return type for Monolog 3 compatibility (xabbuh)
37+
* bug #50546 [FrameworkBundle] Fix `debug:config` & `config:dump` in debug mode (HypeMC)
38+
* bug #50560 [DependencyInjection] Support PHP 8.2 `true` and `null` type (ruudk)
39+
* bug #50563 [FrameworkBundle] remove unusable cache pools (xabbuh)
40+
* bug #50567 [PhpUnitBridge] Ignore deprecations about the annotation mapping driver when it's not possible to move to the attribute driver yet (nicolas-grekas)
41+
* bug #50562 [Lock] Fix sprintf (fancyweb)
42+
* bug #50540 [Validator] GH-50526: Reverting ExecutionContextInterface void return types in favor of docblock annotations. (upchuk)
43+
* bug #50524 Fix Doctrine deprecations (nicolas-grekas)
44+
* bug #50539 [Validator] Remove internal from methods on non-internal interfaces (wouterj)
45+
* bug #50532 [Messenger] Prevent `StopWorkerOnSignalsListener::$signals` to be assigned to null in case `SIGTERM` constant doesn't exist (alexandre-daubois)
46+
* bug #50534 [PhpUnitBridge] Fix support for the NO_COLOR env var (nicolas-grekas)
47+
* bug #50525 [PhpUnitBridge] Fix classifying doctrine/deprecations as direct/indirect (nicolas-grekas)
48+
* bug #50521 [Serializer] Fix ignoring objects that only implement DenormalizableInterface (spideyfusion)
49+
* bug #50517 [DependencyInjection] Fix casting scalar env vars from null (fancyweb)
50+
* bug #50515 [Mailer] [MailPace] Fix undefined array key in errors response (Florian Heller)
51+
* bug #50514 [PhpUnitBridge] Disable deduplication of Doctrine deprecations (nicolas-grekas)
52+
* bug #50508 [Messenger] Add deprecation message for the `messenger.listener.stop_worker_on_sigterm_signal_listener` service (alexandre-daubois)
53+
* bug #50507 [Cache] Fix DBAL deprecations (MatTheCat)
54+
* bug #50501 [Serializer] Fix discriminator map not working with `AbstractNormalizer::OBJECT_TO_POPULATE` (HypeMC)
55+
* bug #50503 [SecurityBundle] Fix error message when using OIDC and web-token/jwt-core is not installed (nicolas-grekas)
56+
* bug #50498 [FrameworkBundle] ease migration to symfony 6.3 (lyrixx)
57+
* bug #50480 [Serializer] Fix discriminator map not working with `AbstractNormalizer::OBJECT_TO_POPULATE` (HypeMC)
58+
* bug #50493 [VarDumper] Use documentElement instead of body for JS flag (ohader)
59+
1060
* 6.3.0 (2023-05-30)
1161

1262
* bug #50432 [Security] Validate `aud` and `iss` claims on OidcTokenHandler (vincentchalamon)

src/Symfony/Component/HttpKernel/Kernel.php

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

79-
public const VERSION = '6.3.1-DEV';
79+
public const VERSION = '6.3.1';
8080
public const VERSION_ID = 60301;
8181
public const MAJOR_VERSION = 6;
8282
public const MINOR_VERSION = 3;
8383
public const RELEASE_VERSION = 1;
84-
public const EXTRA_VERSION = 'DEV';
84+
public const EXTRA_VERSION = '';
8585

8686
public const END_OF_MAINTENANCE = '01/2024';
8787
public const END_OF_LIFE = '01/2024';

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy