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 aca1ac2

Browse filesBrowse files
authored
Merge pull request #25507 from fabpot/release-4.0.2
released v4.0.2
2 parents a91b5a5 + bca0e2f commit aca1ac2
Copy full SHA for aca1ac2

File tree

2 files changed

+38
-2
lines changed
Filter options

2 files changed

+38
-2
lines changed

‎CHANGELOG-4.0.md

Copy file name to clipboardExpand all lines: CHANGELOG-4.0.md
+36Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,42 @@ 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.2 (2017-12-15)
11+
12+
* bug #25489 [FrameworkBundle] remove esi/ssi renderers if inactive (dmaicher)
13+
* bug #25502 Fixing wrong class_exists on interface (weaverryan)
14+
* bug #25427 Preserve percent-encoding in URLs when performing redirects in the UrlMatcher (mpdude)
15+
* bug #25480 [FrameworkBundle] add missing validation options to XSD file (xabbuh)
16+
* bug #25487 [Console] Fix a bug when passing a letter that could be an alias (Simperfit)
17+
* bug #25425 When available use AnnotationRegistry::registerUniqueLoader (jrjohnson)
18+
* bug #25474 [DI] Optimize Container::get() for perf (nicolas-grekas)
19+
* bug #24594 [Translation] Fix InvalidArgumentException when using untranslated plural forms from .po files (BjornTwachtmann)
20+
* bug #25233 [TwigBridge][Form] Fix hidden currency element with Bootstrap 3 theme (julienfalque)
21+
* bug #25413 [HttpKernel] detect deprecations thrown by container initialization during tests (nicolas-grekas)
22+
* bug #25408 [Debug] Fix catching fatal errors in case of nested error handlers (nicolas-grekas)
23+
* bug #25330 [HttpFoundation] Support 0 bit netmask in IPv6 (`::/0`) (stephank)
24+
* bug #25378 [VarDumper] Fixed file links leave blank pages when ide is configured (antalaron)
25+
* bug #25410 [HttpKernel] Fix logging of post-terminate errors/exceptions (nicolas-grekas)
26+
* bug #25409 [Bridge/Doctrine] Drop "memcache" type (nicolas-grekas)
27+
* bug #25417 [Process] Dont rely on putenv(), it fails on ZTS PHP (nicolas-grekas)
28+
* bug #25333 [DI] Impossible to set an environment variable and then an array as container parameter (Phantas0s)
29+
* bug #25447 [Process] remove false-positive BC breaking exception on Windows (nicolas-grekas)
30+
* bug #25381 [DI] Add context to service-not-found exceptions thrown by service locators (nicolas-grekas)
31+
* bug #25438 [Yaml] empty lines don't count for indent detection (xabbuh)
32+
* bug #25412 Extend Argon2i support check to account for sodium_compat (mbabker)
33+
* bug #25392 [HttpFoundation] Fixed default user-agent (3.X -> 4.X) (lyrixx)
34+
* bug #25389 [Yaml] fix some edge cases with indented blocks (xabbuh)
35+
* bug #25396 [Form] Fix debug:form command definition (yceruto)
36+
* bug #25398 [HttpFoundation] don't prefix cookies with "Set-Cookie:" (pableu)
37+
* bug #25354 [DI] Fix non-string class handling in PhpDumper (nicolas-grekas, sroze)
38+
* bug #25340 [Serializer] Unset attributes when creating child context (dunglas)
39+
* bug #25325 [Yaml] do not evaluate PHP constant names (xabbuh)
40+
* bug #25380 [FrameworkBundle][Cache] register system cache clearer only if it's used (xabbuh)
41+
* bug #25323 [ExpressionLanguage] throw an SyntaxError instead of an undefined index notice (Simperfit)
42+
* bug #25363 [HttpKernel] Disable inlining on PHP 5 (nicolas-grekas)
43+
* bug #25364 [DependencyInjection] Prevent a loop in aliases within the `findDefinition` method (sroze)
44+
* bug #25337 Remove Exclusive Lock That Breaks NFS Caching (brianfreytag)
45+
1046
* 4.0.1 (2017-12-05)
1147

1248
* bug #25304 [Bridge/PhpUnit] Prefer $_SERVER['argv'] over $argv (ricknox)

‎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.2-DEV';
66+
const VERSION = '4.0.2';
6767
const VERSION_ID = 40002;
6868
const MAJOR_VERSION = 4;
6969
const MINOR_VERSION = 0;
7070
const RELEASE_VERSION = 2;
71-
const EXTRA_VERSION = 'DEV';
71+
const EXTRA_VERSION = '';
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.