Skip to content

Commit 96e43bf

Browse files
authored
Merge pull request symfony#57845 from fabpot/release-7.0.10
released v7.0.10
2 parents eae511b + 38cf5e2 commit 96e43bf

File tree

2 files changed

+30
-2
lines changed

2 files changed

+30
-2
lines changed

CHANGELOG-7.0.md

+28
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,34 @@ in 7.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/v7.0.0...v7.0.1
99

10+
* 7.0.10 (2024-07-26)
11+
12+
* bug #57803 [FrameworkBundle] move adding detailed JSON error messages to the validate phase (xabbuh)
13+
* bug #57815 [Console][PhpUnitBridge][VarDumper] Fix `NO_COLOR` empty value handling (alexandre-daubois)
14+
* bug #57828 [Translation] Fix CSV escape char in `CsvFileLoader` on PHP >= 7.4 (alexandre-daubois)
15+
* bug #57812 [Validator] treat uninitialized properties referenced by property paths as null (xabbuh)
16+
* bug #57816 [DoctrineBridge] fix messenger bus dispatch inside an active transaction (IndraGunawan)
17+
* bug #57799 [ErrorHandler][VarDumper] Remove PHP 8.4 deprecations (alexandre-daubois)
18+
* bug #57772 [WebProfilerBundle] Add word wrap in tables in dialog to see all the text in workflow listeners dialog (SpartakusMd)
19+
* bug #57802 [PropertyInfo] Fix nullable value returned from extractFromMutator on CollectionType (benjilebon)
20+
* bug #57832 [DependencyInjection] Do not try to load default method name on interface (lyrixx)
21+
* bug #57748 [SecurityBundle] use firewall-specific user checkers when manually logging in users (xabbuh)
22+
* bug #57753 [ErrorHandler] restrict the maximum length of the X-Debug-Exception header (xabbuh)
23+
* bug #57646 [Serializer] Raise correct exception in `ArrayDenormalizer` when called without a nested denormalizer (derrabus)
24+
* bug #57674 [Cache] Improve `dbindex` DSN parameter parsing (constantable)
25+
* bug #57678 [Validator] Add `setGroupProvider` to `AttributeLoader` (Maximilian Zumbansen)
26+
* bug #57679 [WebProfilerBundle] Change incorrect check for the `stateless` request attribute (themasch)
27+
* bug #57663 [Cache] use copy() instead of rename() on Windows (xabbuh)
28+
* bug #57617 [PropertyInfo] Handle collection in PhpStan same as PhpDoc (mtarld)
29+
* bug #54057 [Messenger] Passing actual `Envelope` to `WorkerMessageRetriedEvent` (daffoxdev)
30+
* bug #57645 [Routing] Discard in-memory cache of routes when writing the file-based cache (mpdude)
31+
* bug #57621 [Mailer]  force HTTP 1.1 for Mailgun API requests (xabbuh)
32+
* bug #57616 [String] Revert "Fixed u()->snake(), b()->snake() and s()->snake() methods" (nicolas-grekas)
33+
* bug #57593 [SecurityBundle] Compare paths after realpath() has been applied to both (xabbuh)
34+
* bug #57594 [String] Normalize underscores in snake() (xabbuh)
35+
* bug #57585 [HttpFoundation] Fix MockArraySessionStorage to generate more conform ids (Seldaek)
36+
* bug #57589 [FrameworkBundle] fix AssetMapper usage without assets enabled (xabbuh)
37+
1038
* 7.0.9 (2024-06-28)
1139

1240
* bug #57345 [DependencyInjection] Fix regression in ordering service locators by priority (longwave)

src/Symfony/Component/HttpKernel/Kernel.php

+2-2
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 = '7.0.10-DEV';
79+
public const VERSION = '7.0.10';
8080
public const VERSION_ID = 70010;
8181
public const MAJOR_VERSION = 7;
8282
public const MINOR_VERSION = 0;
8383
public const RELEASE_VERSION = 10;
84-
public const EXTRA_VERSION = 'DEV';
84+
public const EXTRA_VERSION = '';
8585

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

0 commit comments

Comments
 (0)