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 f21bd1d

Browse filesBrowse files
authored
Merge pull request #54976 from fabpot/release-7.1.0-RC1
released v7.1.0-RC1
2 parents 7c956d8 + bff5f6d commit f21bd1d
Copy full SHA for f21bd1d

File tree

2 files changed

+32
-2
lines changed
Filter options

2 files changed

+32
-2
lines changed

‎CHANGELOG-7.1.md

Copy file name to clipboardExpand all lines: CHANGELOG-7.1.md
+30Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,36 @@ 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.0-RC1 (2024-05-17)
11+
12+
* bug #54970 [DependencyInjection] Process PHP configs using the ContainerConfigurator (MatTheCat)
13+
* bug #49186 [Serializer] Improve exception message in UnwrappingDenormalizer (andersonamuller)
14+
* bug #54694 [PropertyInfo] Update DoctrineExtractor for new DBAL 4 BIGINT type (llupa)
15+
* bug #54851 [Serializer] Fixed "Warning: Attempt to read property "value" on string" (michaljusiega, xabbuh)
16+
* bug #54913 [Serializer] Fix CurrentType for missing property (ElisDN)
17+
* feature #54941 Les-Tilleuls.coop is sponsoring Symfony 7.1, thanks to them! \o/ (nicolas-grekas)
18+
* bug #54797 [PhpUnitBridge] Fix `DeprecationErrorHandler` with PhpUnit 10 (HypeMC)
19+
* bug #54878 [Filesystem] Fix dumpFile `stat failed` error hitting custom handler (acoulton)
20+
* bug #54924 [Validator] IBAN Check digits should always between 2 and 98 (karstennilsen)
21+
* bug #54919 [ErrorHandler] Do not call xdebug_get_function_stack() with xdebug >= 3.0 when not in develop mode (fmata)
22+
* bug #54910 [HttpFoundation]  filter out empty HTTP header parts (xabbuh)
23+
* bug #54888 [String] Fix folded in compat mode (smnandre)
24+
* bug #54925 [VarDumper]  adapt namespace changes for new DOM extension classes (xabbuh)
25+
* bug #54835 [DoctrineBridge]  fix setting validated fields not using the options array (xabbuh)
26+
* bug #54863 [Process] Return `false` when `open_basedir` prevents access to `/dev/tty` (mjauvin)
27+
* bug #54908 [DependencyInjection] Fix "Cannot replace arguments" errors caused by ResolveAutowireInlineAttributesPass (nicolas-grekas)
28+
* bug #54860 [HttpClient] Revert fixing curl default options (alexandre-daubois)
29+
* feature #54859 [Messenger] Don't mark `EnvelopeAwareExceptionInterface` internal (valtzu)
30+
* bug #54850 [VarExporter] fix `ProxyHelper::generateLazyProxy()` when a method returns null (nikophil)
31+
* bug #54842 [Messenger] Don't drop stamps when message validation fails (valtzu)
32+
* bug #54838 [WebProfilerBundle] Fix assignment to constant variable (HypeMC)
33+
* bug #54837 [Mailer] [Sendgrid] Use `DataPart::getContentId()` when `DataPart::setContentId()` is used (SherinBloemendaal)
34+
* bug #54839 Fix exception thrown during `LDAP_MODIFY_BATCH_REMOVE_ALL` batch operations (phasdev)
35+
* bug #54834 [Validator] Check `Locale` class existence before using it (alexandre-daubois)
36+
* bug #54830 [HttpClient] Fix cURL default options for PHP 8.4 (alexandre-daubois)
37+
* bug #54828 [Serializer] Fix `GetSetMethodNormalizer` not working with setters with optional args (HypeMC)
38+
* bug #54816 [Cache] Fix support for predis/predis:^2.0 (mfettig)
39+
1040
* 7.1.0-BETA1 (2024-05-02)
1141

1242
* feature #54818 [Translation] Crowdin is backing its translation bridge, thanks to them! \o/ (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.0-DEV';
76+
public const VERSION = '7.1.0-RC1';
7777
public const VERSION_ID = 70100;
7878
public const MAJOR_VERSION = 7;
7979
public const MINOR_VERSION = 1;
8080
public const RELEASE_VERSION = 0;
81-
public const EXTRA_VERSION = 'DEV';
81+
public const EXTRA_VERSION = 'RC1';
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.