10000 Merge pull request #57306 from fabpot/release-7.1.1 · symfony/symfony@27a2664 · GitHub
[go: up one dir, main page]

Skip to content

Commit 27a2664

Browse files
authored
Merge pull request #57306 from fabpot/release-7.1.1
released v7.1.1
2 parents b7c5de2 + 2d40585 commit 27a2664

File tree

2 files changed

+17
-2
lines changed

2 files changed

+17
-2
lines changed

CHANGELOG-7.1.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,21 @@ 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.1 (2024-06-04)
11+
12+
* bug #57110 [PhpUnitBridge] Fix error handler triggered outside of tests (HypeMC)
13+
* bug #57305 [Validator] do not modify a constraint during validation to not leak its context (xabbuh)
14+
* bug #57297 [FrameworkBundle] not registered definitions must not be modified (xabbuh)
15+
* bug #57234 [String] Fix Inflector for 'hardware' (podhy)
16+
* bug #57224 [Mime] Use streams instead of loading raw message generator into memory (bytestream)
17+
* bug #57284 [Mime] Fix TextPart using an unknown File (fabpot)
18+
* bug #57282 [Scheduler] Throw an exception when no dispatcher has been passed to a Schedule (fabpot)
19+
* bug #57276 Fix autoload configs to avoid warnings when building optimized autoloaders (Seldaek)
20+
* bug #57275 Fix autoload configs to avoid warnings when building optimized autoloaders (Seldaek)
21+
* bug #57263 [SecurityBundle] Fix `container.build_hash` parameter binding (alexandre-daubois)
22+
* bug #57197 [Serializer] Fix denormalizing a collection of union types (HypeMC)
23+
* bug #57188 [DoctrineBridge] Fix `UniqueEntityValidator` with proxy object (HypeMC)
24+
1025
* 7.1.0 (2024-05-31)
1126

1227
* bug #57248 [DoctrineBridge] Revert deprecating by-{id} mapping of entities (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.1-DEV';
76+
public const VERSION = '7.1.1';
7777
public const VERSION_ID = 70101;
7878
public const MAJOR_VERSION = 7;
7979
public const MINOR_VERSION = 1;
8080
public const RELEASE_VERSION = 1;
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