8000 Merge pull request #23555 from fabpot/release-3.3.5 · amcastror/symfony@b9a0d3d · GitHub
[go: up one dir, main page]

Skip to content

Commit b9a0d3d

Browse files
authored
Merge pull request symfony#23555 from fabpot/release-3.3.5
released v3.3.5
2 parents 7294781 + d7d9a07 commit b9a0d3d

File tree

2 files changed

+28
-2
lines changed

2 files changed

+28
-2
lines changed

CHANGELOG-3.3.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,32 @@ in 3.3 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/v3.3.0...v3.3.1
99

10+
* 3.3.5 (2017-07-17)
11+
12+
* bug #23549 [PropertyInfo] conflict for phpdocumentor/reflection-docblock 3.2 (xabbuh)
13+
* bug #23513 [FrameworkBundle] Set default public directory on install assets (yceruto)
14+
* security #23507 [Security] validate empty passwords again (xabbuh)
15+
* bug #23526 [HttpFoundation] Set meta refresh time to 0 in RedirectResponse content (jnvsor)
16+
* bug #23535 Make server:* commands work out of the box with the public/ root dir (fabpot)
17+
* bug #23540 Disable inlining deprecated services (alekitto)
18+
* bug #23498 [Process] Fixed issue between process builder and exec (lyrixx)
19+
* bug #23490 [DependencyInjection] non-conflicting anonymous service ids across files (xabbuh)
20+
* bug #23468 [DI] Handle root namespace in service definitions (ro0NL)
21+
* bug #23477 [Process] Fix parsing args on Windows (nicolas-grekas)
22+
* bug #23256 [Security] Fix authentication.failure event not dispatched on AccountStatusException (chalasr)
23+
* bug #23461 Use rawurlencode() to transform the Cookie into a string (javiereguiluz)
24+
* bug #23465 [HttpKernel][VarDumper] Truncate profiler data & optim perf (nicolas-grekas)
25+
* bug #23457 [FrameworkBundle] check _controller attribute is a string before parsing it (alekitto)
26+
* bug #23459 [TwigBundle] allow to configure custom formats in XML configs (xabbuh)
27+
* bug #23460 Don't display the Symfony debug toolbar when printing the page (javiereguiluz)
28+
* bug #23469 [FrameworkBundle] do not wire namespaces for the ArrayAdapter (xabbuh)
29+
* bug #23434 [DotEnv] Fix variable substitution (brieucthomas)
30+
* bug #23426 Fixed HttpOnly flag when using Cookie::fromString() (Toflar)
31+
* bug #22439 [DX] [TwigBundle] Enhance the new exception page design (sustmi)
32+
* bug #23417 [DI][Security] Prevent unwanted deprecation notices when using Expression Languages (dunglas)
33+
* bug #23261 Fixed absolute url generation for query strings and hash urls (alexander-schranz)
34+
* bug #23398 [Filesystem] Dont copy perms when origin is remote (nicolas-grekas)
35+
1036
* 3.3.4 (2017-07-05)
1137

1238
* bug #23413 [VarDumper] Reduce size of serialized Data objects (nicolas-grekas)

src/Symfony/Component/HttpKernel/Kernel.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,12 +61,12 @@ abstract class Kernel implements KernelInterface, TerminableInterface
6161

6262
private $projectDir;
6363

64-
const VERSION = '3.3.5-DEV';
64+
const VERSION = '3.3.5';
6565
const VERSION_ID = 30305;
6666
const MAJOR_VERSION = 3;
6767
const MINOR_VERSION = 3;
6868
const RELEASE_VERSION = 5;
69-
const EXTRA_VERSION = 'DEV';
69+
const EXTRA_VERSION = '';
7070

7171
const END_OF_MAINTENANCE = '01/2018';
7272
const END_OF_LIFE = '07/2018';

0 commit comments

Comments
 (0)
0