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 571b74b

Browse filesBrowse files
authored
Merge pull request #27390 from fabpot/release-4.1.0-BETA3
released v4.1.0-BETA3
2 parents 9e6fbe8 + ce538ca commit 571b74b
Copy full SHA for 571b74b

File tree

2 files changed

+26
-2
lines changed
Filter options

2 files changed

+26
-2
lines changed

‎CHANGELOG-4.1.md

Copy file name to clipboardExpand all lines: CHANGELOG-4.1.md
+24Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,30 @@ in 4.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/v4.1.0...v4.1.1
99

10+
* 4.1.0-BETA3 (2018-05-26)
11+
12+
* bug #27388 [Routing] Account for greediness when merging route patterns (nicolas-grekas)
13+
* bug #27344 [HttpKernel] reset kernel start time on reboot (kiler129)
14+
* bug #27365 [Serializer] Check the value of enable_max_depth if defined (dunglas)
15+
* bug #27358 [PhpUnitBridge] silence some stderr outputs (ostrolucky)
16+
* bug #27366 [DI] never inline lazy services (nicolas-grekas)
17+
* bug #27352 Remove reference to the test container after kernel shutdown (stof)
18+
* bug #27350 [HttpKernel] fix deprecation in AbstractTestSessionListener (alekitto)
19+
* bug #27367 [FrameworkBundle] cleanup generated test container (nicolas-grekas)
20+
* bug #27379 [FrameworkBundle] Fix using test.service_container when Client is rebooted (nicolas-grekas)
21+
* bug #27364 [DI] Fix bad exception on uninitialized references to non-shared services (nicolas-grekas)
22+
* bug #27359 [HttpFoundation] Fix perf issue during MimeTypeGuesser intialization (nicolas-grekas)
23+
* security #cve-2018-11408 [SecurityBundle] Fail if security.http_utils cannot be configured
24+
* security #cve-2018-11406 clear CSRF tokens when the user is logged out
25+
* security #cve-2018-11385 migrating session for UsernamePasswordJsonAuthenticationListener
26+
* security #cve-2018-11385 migrating session for UsernamePasswordJsonAuthenticationListener
27+
* security #cve-2018-11385 Adding session authentication strategy to Guard to avoid session fixation
28+
* security #cve-2018-11385 Adding session strategy to ALL listeners to avoid *any* possible fixation
29+
* security #cve-2018-11386 [HttpFoundation] Break infinite loop in PdoSessionHandler when MySQL is in loose mode
30+
* bug #27341 [WebProfilerBundle] Fixed validator/dump trace CSS (yceruto)
31+
* bug #27337 [FrameworkBundle] fix typo in CacheClearCommand (emilielorenzo)
32+
* bug #27292 [Serializer] Fix and improve constraintViolationListNormalizer's RFC7807 compliance (dunglas)
33+
1034
* 4.1.0-BETA2 (2018-05-21)
1135

1236
* bug #27312 Supress deprecation notices thrown when getting private servies from container in tests (arderyp)

‎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
@@ -63,12 +63,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl
6363
private $requestStackSize = 0;
6464
private $resetServices = false;
6565

66-
const VERSION = '4.1.0-DEV';
66+
const VERSION = '4.1.0-BETA3';
6767
const VERSION_ID = 40100;
6868
const MAJOR_VERSION = 4;
6969
const MINOR_VERSION = 1;
7070
const RELEASE_VERSION = 0;
71-
const EXTRA_VERSION = 'DEV';
71+
const EXTRA_VERSION = 'BETA3';
7272

7373
const END_OF_MAINTENANCE = '01/2019';
7474
const END_OF_LIFE = '07/2019';

0 commit comments

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