8000 Merge pull request #25689 from fabpot/release-2.8.33 · symfony/symfony@a3bb63a · GitHub
[go: up one dir, main page]

Skip to content

Commit a3bb63a

Browse files
authored
Merge pull request #25689 from fabpot/release-2.8.33
released v2.8.33
2 parents 6c1a23b + 643eb0d commit a3bb63a

File tree

2 files changed

+22
-2
lines changed

2 files changed

+22
-2
lines changed

CHANGELOG-2.8.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,26 @@ 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.33 (2018-01-05)
11+
12+
* bug #25532 [HttpKernel] Disable CSP header on exception pages (ostrolucky)
13+
* bug #25491 [Routing] Use the default host even if context is empty (sroze)
14+
* bug #25662 Dumper shouldn't use html format for phpdbg / cli-server (jhoff)
15+
* bug 8000 #25529 [Validator] Fix access to root object when using composite constraint (ostrolucky)
16+
* bug #25430 Fixes for Oracle in PdoSessionHandler (elislenio)
17+
* bug #25599 Add application/ld+json format associated to json (vincentchalamon)
18+
* bug #25407 [Console] Commands with an alias should not be recognized as ambiguous (Simperfit)
19+
* bug #25521 [Console] fix a bug when you are passing a default value and passing -n would output the index (Simperfit)
20+
* bug #25489 [FrameworkBundle] remove esi/ssi renderers if inactive (dmaicher)
21+
* bug #25427 Preserve percent-encoding in URLs when performing redirects in the UrlMatcher (mpdude)
22+
* bug #25480 [FrameworkBundle] add missing validation options to XSD file (xabbuh)
23+
* bug #25487 [Console] Fix a bug when passing a letter that could be an alias (Simperfit)
24+
* bug #25233 [TwigBridge][Form] Fix hidden currency element with Bootstrap 3 theme (julienfalque)
25+
* bug #25408 [Debug] Fix catching fatal errors in case of nested error handlers (nicolas-grekas)
26+
* bug #25330 [HttpFoundation] Support 0 bit netmask in IPv6 (`::/0`) (stephank)
27+
* bug #25410 [HttpKernel] Fix logging of post-terminate errors/exceptions (nicolas-grekas)
28+
* bug #25323 [ExpressionLanguage] throw an SyntaxError instead of an undefined index notice (Simperfit)
29+
1030
* 2.8.32 (2017-12-04)
1131

1232
* bug #25278 Fix for missing whitespace control modifier in form layout (kubawerlos)

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.33-DEV';
62+
const VERSION = '2.8.33';
6363
const VERSION_ID = 20833;
6464
const MAJOR_VERSION = 2;
6565
const MINOR_VERSION = 8;
6666
const RELEASE_VERSION = 33;
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