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

Skip to content

Commit c2452af

Browse files
authored
Merge pull request #23553 from fabpot/release-2.8.25
released v2.8.25
2 parents f49cc11 + 5836f0e commit c2452af

File tree

2 files changed

+15
-2
lines changed

2 files changed

+15
-2
lines changed

CHANGELOG-2.8.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,19 @@ 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.25 (2017-07-17)
11+
12+
* security #23507 [Security] validate empty passwords again (xabbuh)
13+
* bug #23526 [HttpFoundation] Set meta refresh time to 0 in RedirectResponse content (jnvsor)
14+
* bug #23540 Disable inlining deprecated services (alekitto)
15+
* bug #23468 [DI] Handle root namespace in service definitions (ro0NL)
16+
* bug #23256 [Security] Fix authentication.failure event not dispatched on AccountStatusException (chalasr)
17+
* bug #23461 Use rawurlencode() to transform the Cookie into a string (javiereguiluz)
18+
* bug #23459 [TwigBundle] allow to configure custom formats in XML configs (xabbuh)
19+
* bug #23460 Don't display the Symfony debug toolbar when printing the page (javiereguiluz)
20+
* bug #23261 Fixed absolute url generation for query strings and hash urls (alexander-schranz)
21+
* bug #23398 [Filesystem] Dont copy perms when origin is remote (nicolas-grekas)
22+
1023
* 2.8.24 (2017-07-05)
1124

1225
* bug #23378 [FrameworkBundle] Do not remove files from assets dir (1ed)

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