Skip to content

Commit c89bda5

Browse files
authored
Merge pull request symfony#52860 from fabpot/release-7.0.1
released v7.0.1
2 parents 9a26206 + 0683961 commit c89bda5

File tree

2 files changed

+17
-2
lines changed

2 files changed

+17
-2
lines changed

CHANGELOG-7.0.md

+15
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,21 @@ 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.1 (2023-12-01)
11+
12+
* bug #52814 [Workflow] Add `getEnabledTransition()` to TraceableWorkflow (alexandre-daubois)
13+
* bug #52852 [Serializer] Fix TranslatableNormalizer when the Translator is disabled (Jean-Beru)
14+
* bug #52836 [DependencyInjection] Fix parsing named autowiring aliases that contain underscores (nicolas-grekas)
15+
* bug #52804 [Serializer] Fix support of plain object types denormalization (andersonamuller)
16+
* bug #52845 [Routing] Restore aliases removal in RouteCollection::remove() (fancyweb)
17+
* bug #52846 [PhpUnitBridge]  run composer update for compatibility with PHPUnit versions shipping composer.lock (xabbuh)
18+
* bug #52823 add parameter types in query builder (javiercno)
19+
* bug #52825 [AssetMapper] Upgrade asset mapper to 6.4 fails due to invalid entries "downloaded_to" and "preload" (redflo)
20+
* bug #52808 [DependencyInjection] Fix dumping containers with null-referenced services (nicolas-grekas)
21+
* bug #52797 [VarExporter] Fix lazy ghost trait when using nullsafe operator (nicolas-grekas)
22+
* bug #52806 [Routing] Fix removing aliases pointing to removed route in `RouteCollection::remove()` (fancyweb)
23+
* bug #52805 [Routing] Fix conflicting FQCN aliases with route name (fancyweb)
24+
1025
* 7.0.0 (2023-11-29)
1126

1227
* bug #52786 [Serializer] Revert allowed attributes fix (mtarld)

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