Skip to content

Commit 7e6cd19

Browse files
authored
Merge pull request symfony#59337 from fabpot/release-7.1.10
released v7.1.10
2 parents 824af8d + 711480e commit 7e6cd19

File tree

2 files changed

+24
-2
lines changed

2 files changed

+24
-2
lines changed

CHANGELOG-7.1.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,28 @@ in 7.1 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.1.0...v7.1.1
99

10+
* 7.1.10 (2024-12-31)
11+
12+
* bug #59304 [PropertyInfo] Remove ``@internal`` from `PropertyReadInfo` and `PropertyWriteInfo` (Dario Guarracino)
13+
* bug #59228 [HttpFoundation] Avoid mime type guess with temp files in `BinaryFileResponse` (alexandre-daubois)
14+
* bug #59318 [Finder] Fix using `==` as default operator in `DateComparator` (MatTheCat)
15+
* bug #59321 [HtmlSanitizer] reject URLs containing whitespaces (xabbuh)
16+
* bug #59250 [HttpClient] Fix a typo in NoPrivateNetworkHttpClient (Jontsa)
17+
* bug #59103 [Messenger] ensure exception on rollback does not hide previous exception (nikophil)
18+
* bug #59226 [FrameworkBundle] require the writer to implement getFormats() in the translation:extract (xabbuh)
19+
* bug #59213 [FrameworkBundle] don't require fake notifier transports to be installed as non-dev dependencies (xabbuh)
20+
* bug #59066 Fix resolve enum in string type resolver (DavidBadura)
21+
* bug #59156 [PropertyInfo] Fix interface handling in PhpStanTypeHelper (mtarld)
22+
* bug #59160 [BeanstalkMessenger] Round delay to an integer to avoid deprecation warning (plantas)
23+
* bug #59012 [PropertyInfo] Fix interface handling in `PhpStanTypeHelper` (janedbal)
24+
* bug #59134 [HttpKernel] Denormalize request data using the csv format when using "#[MapQueryString]" or "#[MapRequestPayload]" (except for content data) (ovidiuenache)
25+
* bug #59140 [WebProfilerBundle] fix: white-space in highlighted code (chr-hertel)
26+
* bug #59124 [FrameworkBundle] fix: notifier push channel bus abstract arg (raphael-geffroy)
27+
* bug #59069 [Console] Fix division by 0 error (Rindula)
28+
* bug #59070 [PropertyInfo] evaluate access flags for properties with asymmetric visibility (xabbuh)
29+
* bug #59062 [HttpClient] Always set CURLOPT_CUSTOMREQUEST to the correct HTTP method in CurlHttpClient (KurtThiemann)
30+
* bug #59023 [HttpClient] Fix streaming and redirecting with NoPrivateNetworkHttpClient (nicolas-grekas)
31+
1032
* 7.1.9 (2024-11-27)
1133

1234
* bug #59013 [HttpClient] Fix checking for private IPs before connecting (nicolas-grekas)

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.1.10-DEV';
76+
public const VERSION = '7.1.10';
7777
public const VERSION_ID = 70110;
7878
public const MAJOR_VERSION = 7;
7979
public const MINOR_VERSION = 1;
8080
public const RELEASE_VERSION = 10;
81-
public const EXTRA_VERSION = 'DEV';
81+
public const EXTRA_VERSION = '';
8282

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

0 commit comments

Comments
 (0)