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 6423afb

Browse filesBrowse files
authored
Merge pull request #24762 from fabpot/release-4.0.0-BETA2
released v4.0.0-BETA2
2 parents 1595afe + cfdf415 commit 6423afb
Copy full SHA for 6423afb

File tree

2 files changed

+48
-2
lines changed
Filter options

2 files changed

+48
-2
lines changed

‎CHANGELOG-4.0.md

Copy file name to clipboardExpand all lines: CHANGELOG-4.0.md
+46Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,52 @@ 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-BETA2 (2017-10-30)
11+
12+
* bug #24728 [Bridge\Twig] fix bootstrap checkbox_row to render properly & remove spaceless (arkste)
13+
* bug #24709 [HttpKernel] Move services reset to Kernel::handle()+boot() (nicolas-grekas)
14+
* bug #24703 [TwigBridge] Bootstrap 4 form theme fixes (vudaltsov)
15+
* bug #24744 debug:container --types: Fix bug with non-existent classes (weaverryan)
16+
* bug #24747 [VarDumper] HtmlDumper: fix collapsing nodes with depth < maxDepth (ogizanagi)
17+
* bug #24743 [FrameworkBundle] Do not activate the cache if Doctrine's cache is not present (sroze)
18+
* bug #24605 [FrameworkBundle] Do not load property_access.xml if the component isn't installed (ogizanagi)
19+
* bug #24710 [TwigBridge] Fix template paths in profiler (ro0NL)
20+
* bug #24706 [DependencyInjection] Add the possibility to disable assets via xml (renatomefi)
21+
* bug #24696 Ensure DeprecationErrorHandler::collectDeprecations() is triggered (alexpott)
22+
* bug #24711 [TwigBridge] Re-add Bootstrap 3 Checkbox Layout (arkste)
23+
* bug #24713 [FrameworkBundle] fix CachePoolPrunerPass to use correct command service id (kbond)
24+
* bug #24686 Fix $_ENV/$_SERVER precedence in test framework (fabpot)
25+
* bug #24691 [HttpFoundation] Fix caching of session-enabled pages (nicolas-grekas)
26+
* feature #24677 [HttpFoundation] Allow DateTimeImmutable in Response setters (derrabus)
27+
* bug #24694 [Intl] Allow passing null as a locale fallback (jakzal)
28+
* bug #24606 [HttpFoundation] Fix FileBag issue with associative arrays (enumag)
29+
* bug #24673 [DI] Throw when a service name or an alias contains dynamic values (prevent an infinite loop) (dunglas)
30+
* bug #24684 [Security] remove invalid deprecation notice on AbstractGuardAuthenticator::supports() (kbond)
31+
* bug #24681 Fix isolated error handling (alexpott)
32+
* bug #24575 Ensure that PHPUnit's error handler is still working in isolated tests (alexpott)
33+
* bug #24597 [PhpUnitBridge] fix deprecation triggering test detection (xabbuh)
34+
* feature #24671 [DI] Handle container.autowiring.strict_mode to opt-out from legacy autowiring (nicolas-grekas)
35+
* bug #24660 Escape trailing \ in QuestionHelper autocompletion (kamazee)
36+
* bug #24624 [Security] Fix missing BC layer for AbstractGuardAuthenticator::getCredentials() (chalasr)
37+
* bug #24598 Prefer line formatter on missing cli dumper (greg0ire)
38+
* bug #24635 [DI] Register default env var provided types (ro0NL)
39+
* bug #24620 [FrameworkBundle][Workflow] Fix deprectation when checking workflow.registry service in dump command (Jean-Beru)
40+
* bug #24644 [Security] Fixed auth provider authenticate() cannot return void (glye)
41+
* bug #24642 [Routing] Fix resource miss (dunglas)
42+
* bug #24608 Adding the Form default theme files to be warmed up in Twig's cache (weaverryan)
43+
* bug #24626 streamed response should return $this (DQNEO)
44+
* feature #24631 [Form] Fix FormEvents::* constant and value matching (yceruto, javiereguiluz)
45+
* bug #24630 [WebServerBundle] Prevent commands from being registered by convention (chalasr)
46+
* bug #24589 Username and password in basic auth are allowed to contain '.' (Richard Quadling)
47+
* bug #24566 Fixed unsetting from loosely equal keys OrderedHashMap (maryo)
48+
* bug #24570 [Debug] Fix same vendor detection in class loader (Jean-Beru)
49+
* bug #24573 Fixed pathinfo calculation for requests starting with a question mark. (syzygymsu)
50+
* bug #24565 [Serializer] YamlEncoder: throw if the Yaml component isn't installed (dunglas)
51+
* bug #24563 [Serializer] ObjectNormalizer: throw if PropertyAccess isn't installed (dunglas)
52+
* bug #24571 [PropertyInfo] Add support for the iterable type (dunglas)
53+
* bug #24579 pdo session fix (mxp100)
54+
* bug #24536 [Security] Reject remember-me token if UserCheckerInterface::checkPostAuth() fails (kbond)
55+
1056
* 4.0.0-BETA1 (2017-10-19)
1157

1258
* feature #24583 Adding a new debug:autowiring command (weaverryan)

‎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.0.0-DEV';
66+
const VERSION = '4.0.0-BETA2';
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 = 'BETA2';
7272

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

0 commit comments

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