Skip to content

Release v3.4.0-BETA4 #24932

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Nov 12, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions CHANGELOG-3.4.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,30 @@ in 3.4 minor versions.
To get the diff for a specific change, go to https://github.com/symfony/symfony/commit/XXX where XXX is the change hash
To get the diff between two versions, go to https://github.com/symfony/symfony/compare/v3.4.0...v3.4.1

* 3.4.0-BETA4 (2017-11-12)

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

* 3.4.0-BETA3 (2017-11-05)

* bug #24531 [HttpFoundation] Fix forward-compat of NativeSessionStorage with PHP 7.2 (sroze)
Expand Down
4 changes: 2 additions & 2 deletions src/Symfony/Component/HttpKernel/Kernel.php
Original file line number Diff line number Diff line change
Expand Up @@ -67,12 +67,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl
private $requestStackSize = 0;
private $resetServices = false;

const VERSION = '3.4.0-DEV';
const VERSION = '3.4.0-BETA4';
const VERSION_ID = 30400;
const MAJOR_VERSION = 3;
const MINOR_VERSION = 4;
const RELEASE_VERSION = 0;
const EXTRA_VERSION = 'DEV';
const EXTRA_VERSION = 'BETA4';

const END_OF_MAINTENANCE = '11/2020';
const END_OF_LIFE = '11/2021';
Expand Down