Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit d59b404

Browse filesBrowse files
authored
Merge pull request #59019 from fabpot/release-7.1.9
released v7.1.9
2 parents 4c69288 + b741189 commit d59b404
Copy full SHA for d59b404

File tree

2 files changed

+36
-2
lines changed
Filter options

2 files changed

+36
-2
lines changed

‎CHANGELOG-7.1.md

Copy file name to clipboardExpand all lines: CHANGELOG-7.1.md
+34Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,40 @@ 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.9 (2024-11-27)
11+
12+
* bug #59013 [HttpClient] Fix checking for private IPs before connecting (nicolas-grekas)
13+
* bug #58562 [HttpClient] Close gracefull when the server closes the connection abruptly (discordier)
14+
* bug #59007 [Dotenv] read runtime config from composer.json in debug dotenv command (xabbuh)
15+
* bug #58963 [PropertyInfo] Fix write visibility for Asymmetric Visibility and Virtual Properties (xabbuh, pan93412)
16+
* bug #58983 [Translation] [Bridge][Lokalise] Fix empty keys array in PUT, DELETE requests causing Lokalise API error (DominicLuidold)
17+
* bug #58956 [DoctrineBridge] Fix `Connection::createSchemaManager()` for Doctrine DBAL v2 (neodevcode)
18+
* bug #58959 [PropertyInfo] consider write property visibility to decide whether a property is writable (xabbuh)
19+
* bug #58964 [TwigBridge] do not add child nodes to EmptyNode instances (xabbuh)
20+
* bug #58952 [Cache] silence warnings issued by Redis Sentinel on connection issues (xabbuh)
21+
* bug #58859 [AssetMapper] ignore missing directory in `isVendor()` (alexislefebvre)
22+
* bug #58917 [OptionsResolver] Allow Union/Intersection Types in Resolved Closures (zanbaldwin)
23+
* bug #58822 [DependencyInjection] Fix checking for interfaces in ContainerBuilder::getReflectionClass() (donquixote)
24+
* bug #58865 Dynamically fix compatibility with doctrine/data-fixtures v2 (greg0ire)
25+
* bug #58921 [HttpKernel] Ensure `HttpCache::getTraceKey()` does not throw exception (lyrixx)
26+
* bug #58908 [DoctrineBridge] don't call `EntityManager::initializeObject()` with scalar values (xabbuh)
27+
* bug #58938 [Cache] make RelayProxyTrait compatible with relay extension 0.9.0 (xabbuh)
28+
* bug #58924 [HttpClient] Fix empty hosts in option "resolve" (nicolas-grekas)
29+
* bug #58915 [HttpClient] Fix option "resolve" with IPv6 addresses (nicolas-grekas)
30+
* bug #58919 [WebProfilerBundle] Twig deprecations (mazodude)
31+
* bug #58914 [HttpClient] Fix option "bindto" with IPv6 addresses (nicolas-grekas)
32+
* bug #58870 [Serializer][Validator] prevent failures around not existing TypeInfo classes (xabbuh)
33+
* bug #58872 [PropertyInfo][Serializer][Validator] TypeInfo 7.2 compatibility (mtarld)
34+
* bug #58875 [HttpClient] Removed body size limit (Carl Julian Sauter)
35+
* bug #58866 [Validator] fix compatibility with PHP < 8.2.4 (xabbuh)
36+
* bug #58862 [Notifier] Fix GoIpTransport (nicolas-grekas)
37+
* bug #58860 [HttpClient] Fix catching some invalid Location headers (nicolas-grekas)
38+
* bug #58836 Work around `parse_url()` bug (bis) (nicolas-grekas)
39+
* bug #58818 [Messenger] silence PHP warnings issued by `Redis::connect()` (xabbuh)
40+
* bug #58828 [PhpUnitBridge] fix dumping tests to skip with data providers (xabbuh)
41+
* bug #58842 [Routing] Fix: lost priority when defining hosts in configuration (BeBlood)
42+
* bug #58850 [HttpClient] fix PHP 7.2 compatibility (xabbuh)
43+
1044
* 7.1.8 (2024-11-13)
1145

1246
* security #cve-2024-50342 [HttpClient] Resolve hostnames in NoPrivateNetworkHttpClient (nicolas-grekas)

‎src/Symfony/Component/HttpKernel/Kernel.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/HttpKernel/Kernel.php
+2-2Lines 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.9-DEV';
76+
public const VERSION = '7.1.9';
7777
public const VERSION_ID = 70109;
7878
public const MAJOR_VERSION = 7;
7979
public const MINOR_VERSION = 1;
8080
public const RELEASE_VERSION = 9;
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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.