Skip to content

Commit 201a7b9

Browse files
authored
Merge pull request #61286 from fabpot/release-7.3.2
released v7.3.2
2 parents a691c45 + e7dcb09 commit 201a7b9

File tree

2 files changed

+60
-2
lines changed

2 files changed

+60
-2
lines changed

CHANGELOG-7.3.md

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,64 @@ in 7.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/v7.3.0...v7.3.1
99

10+
* 7.3.2 (2025-07-31)
11+
12+
* bug #61276 [DependencyInjection] Escape parameters before resolving env placeholders (MatTheCat)
13+
* bug #61268 [Console] [Table] Fix unnecessary wrapping (schlndh)
14+
* bug #61085 [Lock] Fix using fractional TTLs (manuelderuiter)
15+
* bug #61271 [Messenger] disable detecting modified indexes with DBAL 4.3 (xabbuh)
16+
* bug #61242 [Console] [Table] Fix invalid UTF-8 due to text wrapping (schlndh)
17+
* bug #61234 [Cache] RedisTrait::doFetch should use pipeline with GET's instead of MGET for Relay\Cluster (dorrogeray)
18+
* bug #61246 [VarDumper] Use unique identifier for `RequestContextProvider` (ToshY)
19+
* bug #61261 [FrameworkBundle] Fix `lint:container --resolve-env-vars` (MatTheCat)
20+
* bug #61080 [Console] Fix `TreeHelper::addChild` when providing a string (jtattevin)
21+
* bug #60296 [Serializer] Handle invalid mapping type property type (KorvinSzanto)
22+
* bug #58995 [Config] Do not generate unreachable configuration paths (bobvandevijver)
23+
* bug #60867 [WebProfilerBundle] Fix missing indent on non php files opended in the profiler (phcorp)
24+
* bug #61233 [ObjectMapper] skip reading uninitialized values (soyuka)
25+
* bug #61199 [JsonPath] Fix parsing invalid Unicode codepoints (nicolas-grekas)
26+
* bug #61223 [Mailer][Brevo] Update Webhook IPs (jarbey)
27+
* bug #61201 [Console] Fix JSON description for negatable input flags (nicolas-grekas)
28+
* bug #61220 [Cache] fix compatibility with different Relay versions (xabbuh)
29+
* bug #61194 [Security] Fix added $token argument to UserCheckerInterface::checkPostAuth() (nicolas-grekas)
30+
* bug #61146 [ObjectMapper] initialize lazy objects (soyuka)
31+
* bug #61161 [Lock] Fallback to `eval` when `LOAD` fails due to missing script (santysisi)
32+
* bug #61151 [ObjectMapper] update promoted properties w/ an object as target (soyuka)
33+
* bug #61158 [FrameworkBundle] Add missing html5-allow-no-tld to XSD file (nicolas-grekas)
34+
* bug #61144 [VarDumper] Fix dumping on systems that don't have a working iconv (nicolas-grekas)
35+
* bug #60798 [JsonPath] Handle slice selector overflow (alexandre-daubois)
36+
* bug #61138 [Console] fix profiler with overridden `run()` method (vinceAmstoutz)
37+
* bug #61079 [Config] Fix support for attributes on class constants and enum cases (ruudk)
38+
* bug #61131 [Validator] error if the fields option is missing for the Collection constraint (xabbuh)
39+
* bug #61111 [Translation] fix support of `TranslatableInterface` in `IdentityTranslator` (VincentLanglet)
40+
* bug #61117 [Validator] fix handling required options (xabbuh)
41+
* bug #61121 [DependencyInjection] Fix proxying services defined with an abstract class and a factory (nicolas-grekas)
42+
* bug #61120 [DoctrineBridge] Prevent idle connection listener from running on subrequest (a.dmitryuk, dmitryuk)
43+
* bug #61106 Fix `@var` phpdoc (fabpot)
44+
* bug #61091 [Lock] [MongoDB] Enforce readPreference=primary and writeConcern=majority (notrix)
45+
* bug #61105 [FrameworkBundle] fix phpdoc in `MicroKernelTrait` (santysisi)
46+
* bug #61014 [TypeInfo] Reuse `CollectionType::mergeCollectionValueTypes` for `ConstFetchNode` (norkunas)
47+
* bug #61076 [ExpressionLanguage] Fix dumping of null safe operator (ivantsepp)
48+
* bug #60856 [ObjectMapper] handle non existing property errors (soyuka)
49+
* bug #60802 [JsonPath] Improve escape sequence validation in name selector (alexandre-daubois)
50+
* bug #60741 [Scheduler] Fix `#[AsCronTask]` not passing arguments to command (Jan Pintr, jan-pintr)
51+
* bug #61056 [Validator] Allow mixed root on `CompoundConstraintTestCase` validator (thePanz)
52+
* bug #61028 [Serializer] Fix `readonly` property initialization from incorrect scope (santysisi)
53+
* bug #61073 [VarExporter] Dump implicit-nullable types as explicit to prevent the corresponding deprecation (nicolas-grekas)
54+
* bug #61062 [Brevo Mailer] Webhook IP Addresses have changed (richardhj)
55+
* bug #61004 [TypeInfo] Fix imported-only alias resolving (mtarld)
56+
* bug #60975 [Form] Fix precision loss when rounding large integers in `NumberToLocalizedStringTransformer` (OskarStark)
57+
* bug #61001 [JsonStreamer] Fix nested generated foreach loops (mttsch)
58+
* bug #61036 [ObjectMapper] Correctly manage constructor initialization (alanpoulain)
59+
* bug #60953 [DoctrineBridge] Restore compatibility with Doctrine ODM (pepeh)
60+
* bug #61020 [Doctrine][FrameworkBundle][Serializer][Validator] Increase minimum version of type-info component (mitelg)
61+
* bug #61031 [HttpClient] return early if handle has been cleaned up before (xabbuh)
62+
* bug #60998 [TwigBridge] fix command option mode (`InputOption::VALUE_REQUIRED`) (gharlan)
63+
* bug #60961 [TypeInfo] Fix `Type::fromValue` with empty array (norkunas)
64+
* bug #60956 [TypeInfo] Fix `Type::fromValue` incorrectly setting object type instead of enum (norkunas)
65+
* bug #60958 [Serializer] remove return type from `AbstractObjectNormalizer::getAllowedAttributes()` (xabbuh)
66+
* bug #60507 [Console][Messenger] Fix: Allow `UnrecoverableExceptionInterface` to bypass retry in `RunCommandMessageHandler` (santysisi)
67+
1068
* 7.3.1 (2025-06-28)
1169

1270
* bug #60044 [Console] Table counts wrong column width when using colspan and `setColumnMaxWidth()` (vladimir-vv)

src/Symfony/Component/HttpKernel/Kernel.php

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

76-
public const VERSION = '7.3.2-DEV';
76+
public const VERSION = '7.3.2';
7777
public const VERSION_ID = 70302;
7878
public const MAJOR_VERSION = 7;
7979
public const MINOR_VERSION = 3;
8080
public const RELEASE_VERSION = 2;
81-
public const EXTRA_VERSION = 'DEV';
81+
public const EXTRA_VERSION = '';
8282

8383
public const END_OF_MAINTENANCE = '01/2026';
8484
public const END_OF_LIFE = '01/2026';

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