Skip to content

Commit f3e9cc5

Browse files
authored
Merge pull request symfony#57293 from fabpot/release-7.0.8
released v7.0.8
2 parents fdbf36b + 3a6f3ae commit f3e9cc5

File tree

2 files changed

+46
-2
lines changed

2 files changed

+46
-2
lines changed

CHANGELOG-7.0.md

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,50 @@ 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.8 (2024-06-02)
11+
12+
* bug #57284 [Mime] Fix TextPart using an unknown File (fabpot)
13+
* bug #57282 [Scheduler] Throw an exception when no dispatcher has been passed to a Schedule (fabpot)
14+
* bug #57275 Fix autoload configs to avoid warnings when building optimized autoloaders (Seldaek)
15+
* bug #54572 [Mailer] Fix sendmail transport failure handling and interactive mode (bobvandevijver)
16+
* bug #57228 [Mime] fix PHP 7 compatibility (xabbuh)
17+
* bug #57065 [Mime] Fixed `Mime\Message::ensureValidity()` when a required header is set, but has an empty body (rhertogh)
18+
* bug #57069 [Config] gracefully handle cases when no resolver is set (xabbuh)
19+
* bug #57109 [Notifier] keep boolean options when their value is false (xabbuh)
20+
* bug #54971 [Serializer] Cache readability/writability computation (mtarld)
21+
* bug #56488 [VarExporter] Fix exporting default values involving global constants (kylekatarnls)
22+
* bug #49186 [Serializer] Improve exception message in UnwrappingDenormalizer (andersonamuller)
23+
* bug #54694 [PropertyInfo] Update DoctrineExtractor for new DBAL 4 BIGINT type (llupa)
24+
* bug #54913 [Serializer] Fix CurrentType for missing property (ElisDN)
25+
* bug #54797 [PhpUnitBridge] Fix `DeprecationErrorHandler` with PhpUnit 10 (HypeMC)
26+
* bug #54878 [Filesystem] Fix dumpFile `stat failed` error hitting custom handler (acoulton)
27+
* bug #54924 [Validator] IBAN Check digits should always between 2 and 98 (karstennilsen)
28+
* bug #54919 [ErrorHandler] Do not call xdebug_get_function_stack() with xdebug >= 3.0 when not in develop mode (fmata)
29+
* bug #54910 [HttpFoundation]  filter out empty HTTP header parts (xabbuh)
30+
* bug #54888 [String] Fix folded in compat mode (smnandre)
31+
* bug #54863 [Process] Return `false` when `open_basedir` prevents access to `/dev/tty` (mjauvin)
32+
* bug #54860 [HttpClient] Revert fixing curl default options (alexandre-daubois)
33+
* bug #54850 [VarExporter] fix `ProxyHelper::generateLazyProxy()` when a method returns null (nikophil)
34+
* bug #54842 [Messenger] Don't drop stamps when message validation fails (valtzu)
35+
* bug #54838 [WebProfilerBundle] Fix assignment to constant variable (HypeMC)
36+
* bug #54837 [Mailer] [Sendgrid] Use `DataPart::getContentId()` when `DataPart::setContentId()` is used (SherinBloemendaal)
37+
* bug #54839 Fix exception thrown during `LDAP_MODIFY_BATCH_REMOVE_ALL` batch operations (phasdev)
38+
* bug #54834 [Validator] Check `Locale` class existence before using it (alexandre-daubois)
39+
* bug #54830 [HttpClient] Fix cURL default options for PHP 8.4 (alexandre-daubois)
40+
* bug #54828 [Serializer] Fix `GetSetMethodNormalizer` not working with setters with optional args (HypeMC)
41+
* bug #54816 [Cache] Fix support for predis/predis:^2.0 (mfettig)
42+
* bug #54804 [Serializer] separate the property info and write info extractors (xabbuh)
43+
* bug #54800 [WebProfilerBundle] fix compatibility with Twig 3.10 (xabbuh)
44+
* bug #54794 [Strings][EnglishInflector] Fix incorrect pluralisation of 'Album' (timporter)
45+
* bug #54714 [Serializer] convert empty CSV header names into numeric keys (xabbuh)
46+
* bug #54775 [Messenger] accept AbstractAsset instances when filtering schemas (xabbuh)
47+
* bug #54758 [Validator] handle edge cases when constructing constraints with named arguments (xabbuh)
48+
* bug #54759 [Filesystem] better distinguish URL schemes and Windows drive letters (xabbuh)
49+
* bug #54791 [FrameworkBundle] move wiring of the property info extractor to the ObjectNormalizer (xabbuh)
50+
* bug #54760 [Validator] handle union and intersection types for cascaded validations (xabbuh)
51+
* bug #54776 [Cache] fix: remove unwanted cast to int (Arend Hummeling)
52+
* bug #54700 [Dotenv] show overridden vars too when running debug:dotenv (HMRDevil)
53+
1054
* 7.0.7 (2024-04-29)
1155

1256
* bug #54699 [DoctrineBridge] Update AbstractSchemaListener to adjust more database params (ywisax)

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 = '7.0.8-DEV';
79+
public const VERSION = '7.0.8';
8080
public const VERSION_ID = 70008;
8181
public const MAJOR_VERSION = 7;
8282
public const MINOR_VERSION = 0;
8383
public const RELEASE_VERSION = 8;
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)