8000 Merge pull request #54159 from fabpot/release-7.0.5 · symfony/symfony@aa77387 · GitHub
[go: up one dir, main page]

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 aa77387

Browse files
authored
Merge pull request #54159 from fabpot/release-7.0.5
released v7.0.5
2 parents 3c39c04 + f3ecda4 commit aa77387

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

CHANGELOG-7.0.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,16 @@ 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.5 (2024-03-04)
11+
12+
* bug #54113 [AssetMapper] Throw exception in Javascript compiler when PCRE error (smnandre)
13+
* bug #54129 [Clock] Add attributes to support PHPUnit 10 + 11 (ruudk)
14+
* bug #54079 [AssetMapper] Fix `JavaScriptImportPathCompiler` regression in regex (PhilETaylor)
15+
* bug #54102 [HttpClient] Fix deprecation on PHP 8.3 (nicolas-grekas)
16+
* bug #54089 [Mailer] [Brevo] Remove tags from mandatory event arguments (palgalik)
17+
* bug #54081 [DoctrineBridge] Safeguard dynamic access to Doctrine metadata properties (derrabus)
18+
* bug #54080 [Routing] Enhance error handling in StaticPrefixCollection for compatibility with libpcre2-10.43 (Lustmored)
19+
1020
* 7.0.4 (2024-02-27)
1121

1222
* bug #53985 [HttpKernel] Allow tagged controllers in ControllerResolver (marein)

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.5-DEV';
79+
public const VERSION = '7.0.5';
8080
public const VERSION_ID = 70005;
8181
public const MAJOR_VERSION = 7;
8282
public const MINOR_VERSION = 0;
8383
public const RELEASE_VERSION = 5;
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)
0