8000 Merge pull request #25954 from fabpot/release-2.8.34 · symfony/symfony@0455b5d · GitHub
[go: up one dir, main page]

Skip to content

Commit 0455b5d

Browse files
authored
Merge pull request #25954 from fabpot/release-2.8.34
released v2.8.34
2 parents 9606f02 + 8548194 commit 0455b5d

File tree

2 files changed

+31
-2
lines changed

2 files changed

+31
-2
lines changed

CHANGELOG-2.8.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,35 @@ in 2.8 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/v2.8.0...v2.8.1
99

10+
* 2.8.34 (2018-01-29)
11+
12+
* bug #25922 [HttpFoundation] Use the correct syntax for session gc based on Pdo driver (tanasecosminromeo)
13+
* bug #25933 Disable CSP header on exception pages only in debug (ostrolucky)
14+
* bug #25926 [Form] Fixed Button::setParent() when already submitted (HeahDude)
15+
* bug #25927 [Form] Fixed submitting disabled buttons (HeahDude)
16+
* bug #25891 [DependencyInjection] allow null values for root nodes in YAML configs (xabbuh)
17+
* bug #25848 [Validator] add missing parent isset and add test (Simperfit)
18+
* bug #25861 do not conflict with egulias/email-validator 2.0+ (xabbuh)
19+
* bug #25851 [Validator] Conflict with egulias/email-validator 2.0 (emodric)
20+
* bug #25837 [SecurityBundle] Don't register in memory users as services (chalasr)
21+
* bug #25835 [HttpKernel] DebugHandlersListener should always replace the existing exception handler (nicolas-grekas)
22+
* bug #25829 [Debug] Always decorate existing exception handlers to deal with fatal errors (nicolas-grekas)
23+
* bug #25824 Fixing a bug where the dump() function depended on bundle ordering (weaverryan)
24+
* bug #25789 Enableable ArrayNodeDefinition is disabled for empty configuration (kejwmen)
25+
* bug #25816 Problem in phar see mergerequest #25579 (betzholz)
26+
* bug #25781 [Form] Disallow transform dates beyond the year 9999 (curry684)
27+
* bug #25812 Copied NO language files to the new NB locale (derrabus)
28+
* bug #25801 [Router] Skip anonymous classes when loading annotated routes (pierredup)
29+
* bug #25657 [Security] Fix fatal error on non string username (chalasr)
30+
* bug #25799 Fixed Request::__toString ignoring cookies (Toflar)
31+
* bug #25755 [Debug] prevent infinite loop with faulty exception handlers (nicolas-grekas)
32+
* bug #25771 [Validator] 19 digits VISA card numbers are valid (xabbuh)
33+
* bug #25751 [FrameworkBundle] Add the missing `enabled` session attribute (sroze)
34+
* bug #25750 [HttpKernel] Turn bad hosts into 400 instead of 500 (nicolas-grekas)
35+
* bug #25490 [Serializer] Fixed throwing exception with option JSON_PARTIAL_OUTPUT_ON_ERROR (diversantvlz)
36+
* bug #25709 Tweaked some styles in the profiler tables (javiereguiluz)
37+
* feature #25669 [Security] Fail gracefully if the security token cannot be unserialized from the session (thewilkybarkid)
38+
1039
* 2.8.33 (2018-01-05)
1140

1241
* bug #25532 [HttpKernel] Disable CSP header on exception pages (ostrolucky)

src/Symfony/Component/HttpKernel/Kernel.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,12 +59,12 @@ abstract class Kernel implements KernelInterface, TerminableInterface
5959
protected $startTime;
6060
protected $loadClassCache;
6161

62-
const VERSION = '2.8.34-DEV';
62+
const VERSION = '2.8.34';
6363
const VERSION_ID = 20834;
6464
const MAJOR_VERSION = 2;
6565
const MINOR_VERSION = 8;
6666
const RELEASE_VERSION = 34;
67-
const EXTRA_VERSION = 'DEV';
67+
const EXTRA_VERSION = '';
6868

6969
const END_OF_MAINTENANCE = '11/2018';
7070
const END_OF_LIFE = '11/2019';

0 commit comments

Comments
 (0)
0