8000 Merge branch '2.6' into 2.7 · symfony/symfony@d7870a2 · GitHub
[go: up one dir, main page]

Skip to content

Commit d7870a2

Browse files
committed
Merge branch '2.6' into 2.7
* 2.6: (46 commits) fixxed order of usage [2.7] [Form] Replaced calls to array_search() by in_array() where is no need to get the index [Process] Make test AbstractProcessTest::testStartAfterATimeout useful again removed non-sense example Fixes small typo. [Validator] Remove unnecessary include in tests [HttpFoundation] minor: clarify Request::getUrlencodedPrefix() regex fixed typo [Validator] fix DOS-style line endings Drop useless execution bit bumped Symfony version to 2.6.5 [Serializer] update changelog updated VERSION for 2.6.4 updated CHANGELOG for 2.6.4 bumped Symfony version to 2.5.11 [HttpKernel] Added use of provided by #12022 method to instantiate controller class in bundle's controller resolver updated VERSION for 2.5.10 updated CHANGELOG for 2.5.10 [Validator] Add a Russian translation for invalid charset message [2.3] [Validator] spanish translation for invalid charset message ... Conflicts: src/Symfony/Bridge/Doctrine/Validator/Constraints/UniqueEntityValidator.php src/Symfony/Component/HttpKernel/Exception/FatalErrorException.php src/Symfony/Component/HttpKernel/Exception/FlattenException.php src/Symfony/Component/HttpKernel/Kernel.php src/Symfony/Component/Routing/Tests/Generator/UrlGeneratorTest.php src/Symfony/Component/Validator/Resources/translations/validators.de.xlf src/Symfony/Component/Validator/Resources/translations/validators.en.xlf src/Symfony/Component/Validator/Resources/translations/validators.es.xlf src/Symfony/Component/Validator/Resources/translations/validators.fr.xlf src/Symfony/Component/Validator/Resources/translations/validators.pl.xlf src/Symfony/Component/Validator/Resources/translations/validators.ru.xlf src/Symfony/Component/Validator/Resources/translations/validators.sl.xlf
2 parents c9d76d6 + 2f6d5e4 commit d7870a2

File tree

73 files changed

+974
-548
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

73 files changed

+974
-548
lines changed

CHANGELOG-2.3.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,28 @@ in 2.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/v2.3.0...v2.3.1
99

10+
* 2.3.25 (2015-01-30)
11+
12+
* bug #13528 [Validator] reject ill-formed strings (nicolas-grekas)
13+
* bug #13525 [Validator] UniqueEntityValidator - invalidValue fixed. (Dawid Sajdak)
14+
* bug #13527 [Validator] drop grapheme_strlen in LengthValidator (nicolas-grekas)
15+
* bug #13376 [FrameworkBundle][config] allow multiple fallback locales. (aitboudad)
16+
* bug #12972 Make the container considered non-fresh if the environment parameters are changed (thewilkybarkid)
17+
* bug #13309 [Console] fixed 10531 (nacmartin)
18+
* bug #13352 [Yaml] fixed parse shortcut Key after unindented collection. (aitboudad)
19+
* bug #13039 [HttpFoundation] [Request] fix baseUrl parsing to fix wrong path_info (rk3rn3r)
20+
* bug #13250 [Twig][Bridge][TranslationDefaultDomain] add support of named arguments. (aitboudad)
21+
* bug #13332 [Console] ArgvInput and empty tokens (Taluu)
22+
* bug #13293 [EventDispatcher] Add missing checks to RegisterListenersPass (znerol)
23+
* bug #13262 [Yaml] Improve YAML boolean escaping (petert82, larowlan)
24+
* bug #13420 [Debug] fix loading order for legacy classes (nicolas-grekas)
25+
* bug #13371 fix missing comma in YamlDumper (garak)
26+
* bug #13365 [HttpFoundation] Make use of isEmpty() method (xelaris)
27+
* bug #13347 [Console] Helper\TableHelper->addRow optimization (boekkooi)
28+
* bug #13346 [PropertyAccessor] Allow null value for a array (2.3) (boekkooi)
29+
* bug #13170 [Form] Set a child type to text if added to the form without a type. (jakzal)
30+
* bug #13334 [Yaml] Fixed #10597: Improved Yaml directive parsing (VictoriaQ)
31+
1032
* 2.3.24 (2015-01-07)
1133

1234
* bug #13286 [Security] Don't destroy the session on buggy php releases. (derrabus)

CHANGELOG-2.5.md

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

10+
* 2.5.10 (2015-02-02)
11+
12+
* bug #13528 [Validator] reject ill-formed strings (nicolas-grekas)
13+
* bug #13525 [Validator] UniqueEntityValidator - invalidValue fixed. (Dawid Sajdak)
14+
* bug #13549 [EventDispatcher] Wrong EventDispatcher instance injected in listeners (dosten)
15+
* bug #13527 [Validator] drop grapheme_strlen in LengthValidator (nicolas-grekas)
16+
* bug #13376 [FrameworkBundle][config] allow multiple fallback locales. (aitboudad)
17+
* bug #12972 Make the container considered non-fresh if the environment parameters are changed (thewilkybarkid)
18+
* bug #13309 [Console] fixed 10531 (nacmartin)
19+
* bug #13352 [Yaml] fixed parse shortcut Key after unindented collection. (aitboudad)
20+
* bug #13343 [FrameworkBundle] FormDataCollector should be loaded only if form config is enabled (hason)
21+
* bug #13039 [HttpFoundation] [Request] fix baseUrl parsing to fix wrong path_info (rk3rn3r)
22+
* bug #13250 [Twig][Bridge][TranslationDefaultDomain] add support of named arguments. (aitboudad)
23+
* bug #13332 [Console] ArgvInput and empty tokens (Taluu)
24+
* bug #13293 [EventDispatcher] Add missing checks to RegisterListenersPass (znerol)
25+
* bug #13262 [Yaml] Improve YAML boolean escaping (petert82, larowlan)
26+
* bug #13420 [Debug] fix loading order for legacy classes (nicolas-grekas)
27+
* bug #13421 [FrameworkBundle] fix routing descriptor for options (Tobion)
28+
* bug #13405 [TwigBridge] exit when Twig environment is not set in the LintCommand (xabbuh)
29+
* bug #13371 fix missing comma in YamlDumper (garak)
30+
* bug #13365 [HttpFoundation] Make use of isEmpty() method (xelaris)
31+
* bug #13355 [Console] Helper\Table->addRow optimization (boekkooi)
32+
* bug #13347 [Console] Helper\TableHelper->addRow optimization (boekkooi)
33+
* bug #13346 [PropertyAccessor] Allow null value for a array (2.3) (boekkooi)
34+
* bug #13170 [Form] Set a child type to text if added to the form without a type. (jakzal)
35+
* bug #13334 [Yaml] Fixed #10597: Improved Yaml directive parsing (VictoriaQ)
36+
* bug #13316 [Form] fixed the CSRF extension to allow using only the new interfaces (fabpot)
37+
* bug #13305 [FrameworkBundle] fixed missing information in some descriptors (fabpot)
38+
1039
* 2.5.9 (2015-01-07)
1140

1241
* bug #13286 [Security] Don't destroy the session on buggy php releases. (derrabus)

CHANGELOG-2.6.md

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,46 @@ in 2.6 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.6.0...v2.6.1
99

10+
* 2.6.4 (2015-02-02)
11+
12+
* bug #13489 [VarDumper] CSS fix (Arrilot)
13+
* bug #13441 [VarDumper] fix handling of non-UTF8 strings (nicolas-grekas)
14+
* bug #13528 [Validator] reject ill-formed strings (nicolas-grekas)
15+
* bug #13525 [Validator] UniqueEntityValidator - invalidValue fixed. (Dawid Sajdak)
16+
* bug #13549 [EventDispatcher] Wrong EventDispatcher instance injected in listeners (dosten)
17+
* bug #13527 [Validator] drop grapheme_strlen in LengthValidator (nicolas-grekas)
18+
* bug #12649 [Hackday] [Toolbar] Fix info position and icons on small screens (stefanosala)
19+
* bug #13376 [FrameworkBundle][config] allow multiple fallback locales. (aitboudad)
20+
* bug #13473 [FrameworkBundle][xsd] added missing logging attribute. (aitboudad)
21+
* bug #12972 Make the container considered non-fresh if the environment parameters are changed (thewilkybarkid)
22+
* bug #13309 [Console] fixed 10531 (nacmartin)
23+
* bug #13352 [Yaml] fixed parse shortcut Key after unindented collection. (aitboudad)
24+
* bug #13501 [TwigBridge] Fix bootstrap rendering when user explicitly use form_label (lyrixx)
25+
* bug #13487 [VarDumper] Fixed HtmlDumper with long string (alOneh)
26+
* bug #13343 [FrameworkBundle] FormDataCollector should be loaded only if form config is enabled (hason)
27+
* bug #12258 [FrameworkBundle] print error message if server couldn't be started (xabbuh)
28+
* bug #13039 [HttpFoundation] [Request] fix baseUrl parsing to fix wrong path_info (rk3rn3r)
29+
* bug #13250 [Twig][Bridge][TranslationDefaultDomain] add support of named arguments. (aitboudad)
30+
* bug #13332 [Console] ArgvInput and empty tokens (Taluu)
31+
* bug #13353 [DependencyInjection] Fix missing ExpressionLanguageProviders (szicsu)
32+
* bug #13293 [EventDispatcher] Add missing checks to RegisterListenersPass (znerol)
33+
* bug #13262 [Yaml] Improve YAML boolean escaping (petert82, larowlan)
34+
* bug #13420 [Debug] fix loading order for legacy classes (nicolas-grekas)
35+
* bug #13421 [FrameworkBundle] fix routing descriptor for options (Tobion)
36+
* bug #13405 [TwigBridge] exit when Twig environment is not set in the LintCommand (xabbuh)
37+
* bug #13351 [VarDumper] fix very special vars handling (nicolas-grekas)
38+
* bug #13371 fix missing comma in YamlDumper (garak)
39+
* bug #13365 [HttpFoundation] Make use of isEmpty() method (xelaris)
40+
* bug #13355 [Console] Helper\Table->addRow optimization (boekkooi)
41+
* bug #13347 [Console] Helper\TableHelper->addRow optimization (boekkooi)
42+
* bug #13346 [PropertyAccessor] Allow null value for a array (2.3) (boekkooi)
43+
* bug #13170 [Form] Set a child type to text if added to the form without a type. (jakzal)
44+
* bug #13334 [Yaml] Fixed #10597: Improved Yaml directive parsing (VictoriaQ)
45+
* bug #13198 [Form] Fixed check of violation constraint #12792 (xelaris)
46+
* bug #13316 [Form] fixed the CSRF extension to allow using only the new interfaces (fabpot)
47+
* bug #13307 added missing support for factories in console descriptions (fabpot)
48+
* bug #13305 [FrameworkBundle] fixed missing information in some descriptors (fabpot)
49+
1050
* 2.6.3 (2015-01-07)
1151

1252
* bug #13286 [Security] Don't destroy the session on buggy php releases. (derrabus)

0 commit comments

Comments
 (0)
0