8000 Merge pull request #52600 from fabpot/release-7.0.0-RC1 · symfony/symfony@b3d69f3 · GitHub
[go: up one dir, main page]

Skip to content

Commit b3d69f3

Browse files
authored
Merge pull request #52600 from fabpot/release-7.0.0-RC1
released v7.0.0-RC1
2 parents 79bf7ad + 936caaa commit b3d69f3

File tree

2 files changed

+13
-2
lines changed

2 files changed

+13
-2
lines changed

CHANGELOG-7.0.md

+11
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,17 @@ 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.0-RC1 (2023-11-15)
11+
12+
* bug #52597 [DependencyInjection] Fix dumping containers with null-referenced services (nicolas-grekas)
13+
* bug #52588 [Messenger] Use extension_loaded call to check if pcntl extension is loaded, as SIGTERM might be set be swoole (Sergii Dolgushev)
14+
* feature #52569 [VarExporter] Drop support for partially initialized lazy object (nicolas-grekas)
15+
* bug #52567 [AssetMapper] Fixing js sourceMappingURL extraction when sourceMappingURL used in code (weaverryan)
16+
* bug #52579 [DomCrawler] UriResolver support path with colons (vdauchy)
17+
* bug #52581 [Messenger] attach all required parameters to query (xabbuh)
18+
* feature #52568 [VarExporter] Deprecate per-property lazy-initializers (nicolas-grekas)
19+
* feature #52560 [Mailer] Update default Mailjet port (Katario)
20+
1021
* 7.0.0-BETA3 (2023-11-10)
1122

1223
* bug #51666 [RateLimiter] CompoundLimiter was accepting requests even when some limiters already consumed all tokens (10n)

src/Symfony/Component/HttpKernel/Kernel.php

+2-2
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.0-DEV';
79+
public const VERSION = '7.0.0-RC1';
8080
public const VERSION_ID = 70000;
8181
public const MAJOR_VERSION = 7;
8282
public const MINOR_VERSION = 0;
8383
public const RELEASE_VERSION = 0;
84-
public const EXTRA_VERSION = 'DEV';
84+
public const EXTRA_VERSION = 'RC1';
8585

8686
public const END_OF_MAINTENANCE = '07/2024';
8787
public const END_OF_LIFE = '07/2024';

0 commit comments

Comments
 (0)
0