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 4440972

Browse filesBrowse files
authored
Merge pull request #48323 from fabpot/release-6.2.0-RC1
released v6.2.0-RC1
2 parents bc5fea4 + 5f03eb8 commit 4440972
Copy full SHA for 4440972

File tree

2 files changed

+14
-2
lines changed
Filter options

2 files changed

+14
-2
lines changed

‎CHANGELOG-6.2.md

Copy file name to clipboardExpand all lines: CHANGELOG-6.2.md
+12Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,18 @@ in 6.2 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/v6.2.0...v6.2.1
99

10+
* 6.2.0-RC1 (2022-11-25)
11+
12+
* bug #48312 [VarExporter] Improve partial-initialization API for ghost objects (nicolas-grekas)
13+
* bug #48285 [Security] Support loading UserBadge directly from accessToken (Jeroeny)
14+
* bug #48262 [Notifier] [SMSBiuras] `true`/`false` mismatch for `test_mode` option (StaffNowa)
15+
* bug #48273 [HttpKernel] Fix message for unresovable arguments of invokable controllers (fancyweb)
16+
* bug #48251 [PropertyInfo] ignore const expressions read by phpdocumentor (xabbuh)
17+
* bug #48224 [DependencyInjection] Process bindings in `ServiceLocatorTagPass` (MatTheCat)
18+
* bug #48271 [WebProfilerBundle] Fix form panel when there are no view vars (nicolas-grekas)
19+
* bug #48274 Add more #[\SensitiveParameter] (fancyweb)
20+
* bug #48179 [Console] Support completion for bash functions (Chi-teck)
21+
1022
* 6.2.0-BETA3 (2022-11-19)
1123

1224
* bug #48217 [Console] Improve error message when shell is not detected in completion command (GromNaN)

‎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
@@ -75,12 +75,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl
7575
*/
7676
private static array $freshCache = [];
7777

78-
public const VERSION = '6.2.0-DEV';
78+
public const VERSION = '6.2.0-RC1';
7979
public const VERSION_ID = 60200;
8080
public const MAJOR_VERSION = 6;
8181
public const MINOR_VERSION = 2;
8282
public const RELEASE_VERSION = 0;
83-
public const EXTRA_VERSION = 'DEV';
83+
public const EXTRA_VERSION = 'RC1';
8484

8585
public const END_OF_MAINTENANCE = '07/2023';
8686
public const END_OF_LIFE = '07/2023';

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.