Skip to content

Commit d0bd660

Browse files
authored
Merge pull request symfony#24933 from fabpot/release-4.0.0-BETA4
released v4.0.0-BETA4
2 parents c631745 + b654e82 commit d0bd660

File tree

2 files changed

+27
-2
lines changed

2 files changed

+27
-2
lines changed

CHANGELOG-4.0.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,31 @@ in 4.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/v4.0.0...v4.0.1
99

10+
* 4.0.0-BETA4 (2017-11-12)
11+
12+
* bug #24874 [TwigBridge] Fixed the .form-check-input class in the bs4 templates (vudaltsov)
13+
* bug #24929 [Console] Fix traversable autocomplete values (ro0NL)
14+
* feature #24860 [FrameworkBundle] Add default translations path option and convention (yceruto)
15+
* bug #24921 [Debug] Remove false-positive deprecation from DebugClassLoader (nicolas-grekas)
16+
* bug #24856 [FrameworkBundle] Add default mapping path for validator component in bundle-less app (yceruto)
17+
* bug #24833 [FrameworkBundle] Add default mapping path for serializer component in bundle-less app (yceruto)
18+
* bug #24908 [WebServerBundle] Prevent console.terminate from being fired when server:start finishes (kbond)
19+
* bug #24888 [FrameworkBundle] Specifically inject the debug dispatcher in the collector (ogizanagi)
20+
* bug #24909 [Intl] Update ICU data to 60.1 (jakzal)
21+
* bug #24870 [YAML] Allow to parse custom tags when linting yaml files (pierredup)
22+
* bug #24910 [HttpKernel][Debug] Remove noise from stack frames of deprecations (nicolas-grekas)
23+
* bug #24906 [Bridge/ProxyManager] Remove direct reference to value holder property (nicolas-grekas)
24+
* feature #24887 [Cache][Lock] Add RedisProxy for lazy Redis connections (nicolas-grekas)
25+
* bug #24633 [Config] Fix cannotBeEmpty() (ro0NL)
26+
* bug #24900 [Validator] Fix Costa Rica IBAN format (Bozhidar Hristov)
27+
* bug #24904 [Validator] Add Belarus IBAN format (Bozhidar Hristov)
28+
* bug #24837 [TwigBridge] [Bootstrap 4] Fix validation error design for expanded choiceType (ostrolucky)
29+
* bug #24878 [HttpFoundation] Prevent PHP from sending Last-Modified on session start (nicolas-grekas)
30+
* bug #24881 [WebserverBundle] fixed the bug that caused that the webserver would … (Serkan Yildiz)
31+
* bug #24722 Replace more docblocks by type-hints (nicolas-grekas)
32+
* bug #24850 [DI] Fix cannot bind env var (ogizanagi)
33+
* bug #24851 [TwigBridge] Fix BC break due required twig environment (ro0NL)
34+
1035
* 4.0.0-BETA3 (2017-11-05)
1136

1237
* bug #24531 [HttpFoundation] Fix forward-compat of NativeSessionStorage with PHP 7.2 (sroze)

src/Symfony/Component/HttpKernel/Kernel.php

Lines 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.0.0-DEV';
66+
const VERSION = '4.0.0-BETA4';
6767
const VERSION_ID = 40000;
6868
const MAJOR_VERSION = 4;
6969
const MINOR_VERSION = 0;
7070
const RELEASE_VERSION = 0;
71-
const EXTRA_VERSION = 'DEV';
71+
const EXTRA_VERSION = 'BETA4';
7272

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

0 commit comments

Comments
 (0)