10000 Merge branch '2.5' · symfony/symfony@782ba96 · GitHub
[go: up one dir, main page]

Skip to content

Commit 782ba96

Browse files
committed
Merge branch '2.5'
* 2.5: updated VERSION for 2.4.7 updated CHANGELOG for 2.4.7 bumped Symfony version to 2.3.18 updated VERSION for 2.3.17 update CONTRIBUTORS for 2.3.17 updated CHANGELOG for 2.3.17 added XSD to PHPUnit configuration fix the return types add missing docblock for ProcessBuilder::addEnvironmentVariables() bug #11319 [HttpKernel] Ensure the storage exists before purging it in ProfilerTest [Translation] Added unescaping of ids in PoFileLoader updated italian translation for validation messages [DomCrawler] Fix docblocks and formatting. [DomCrawler] Remove the query string and the anchor of the uri of a link Simplified the Travis test command Remove Expression Language services when the component is unavailable Added SK translations [Console] Make sure formatter is the same
2 parents 9d6817e + 47c686d commit 782ba96

Some content is hidden

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

54 files changed

+421
-135
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,5 @@ before_script:
2626
- sh -c 'if [ "$TRAVIS_PHP_VERSION" != "5.3.3" ]; then phpunit --self-update; fi;'
2727

2828
script:
29-
- ls -d src/Symfony/*/* | parallel --gnu --keep-order 'echo "Running {} tests"; phpunit --exclude-group tty,benchmark {};' || false
29+
- ls -d src/Symfony/*/* | parallel --gnu --keep-order 'echo "Running {} tests"; phpunit --exclude-group tty,benchmark {};'
3030
- echo "Running tests requiring tty"; phpunit --group tty

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.17 (2014-07-07)
11+
12+
* bug #11238 [Translation] Added unescaping of ids in PoFileLoader (JustBlackBird)
13+
* bug #11194 [DomCrawler] Remove the query string and the anchor of the uri of a link (benja-M-1)
14+
* bug #11272 [Console] Make sure formatter is the same. (akimsko)
15+
* bug #11259 [Config] Fixed failed config schema loads due to libxml_disable_entity_loader usage (ccorliss)
16+
* bug #11234 [ClassLoader] fixed PHP warning on PHP 5.3 (fabpot)
17+
* bug #11179 [Process] Fix ExecutableFinder with open basedir (cs278)
18+
* bug #11242 [CssSelector] Refactored the CssSelector to remove the circular object graph (stof)
19+
* bug #11219 [DomCrawler] properly handle buttons with single and double quotes insid... (xabbuh)
20+
* bug #11220 [Components][Serializer] optional constructor arguments can be omitted during the denormalization process (xabbuh)
21+
* bug #11186 Added missing `break` statement (apfelbox)
22+
* bug #11169 [Console] Fixed notice in DialogHelper (florianv)
23+
* bug #11144 [HttpFoundation] Fixed Request::getPort returns incorrect value under IPv6 (kicken)
24+
* bug #10966 PHP Fatal error when getContainer method of ContainerAwareCommand has be... (kevinvergauwen)
25+
* bug #10981 [HttpFoundation] Fixed isSecure() check to be compliant with the docs (Jannik Zschiesche)
26+
* bug #11092 [HttpFoundation] Fix basic authentication in url with PHP-FPM (Kdecherf)
27+
* bug #10808 [DomCrawler] Empty select with attribute name="foo[]" bug fix (darles)
28+
* bug #11063 [HttpFoundation] fix switch statement (Tobion)
29+
* bug #11009 [HttpFoundation] smaller fixes for PdoSessionHandler (Tobion)
30+
* bug #11041 Remove undefined variable $e (skydiablo)
31+
1032
* 2.3.16 (2014-05-31)
1133

1234
* bug #11014 [Validator] Remove property and method targets from the optional and required constraints (jakzal)

CHANGELOG-2.4.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,29 @@ in 2.4 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.4.0...v2.4.1
99

10+
* 2.4.7 (2014-07-08)
11+
12+
* bug #11283 [SecurityBundle] Remove Expression Language services when the component is unavailable (thewilkybarkid)
13+
* bug #11238 [Translation] Added unescaping of ids in PoFileLoader (JustBlackBird)
14+
* bug #11194 [DomCrawler] Remove the query string and the anchor of the uri of a link (benja-M-1)
15+
* bug #11272 [Console] Make sure formatter is the same. (akimsko)
16+
* bug #11259 [Config] Fixed failed config schema loads due to libxml_disable_entity_loader usage (ccorliss)
17+
* bug #11234 [ClassLoader] fixed PHP warning on PHP 5.3 (fabpot)
18+
* bug #11179 [Process] Fix ExecutableFinder with open basedir (cs278)
19+
* bug #11242 [CssSelector] Refactored the CssSelector to remove the circular object graph (stof)
20+
* bug #11219 [DomCrawler] properly handle buttons with single and double quotes insid... (xabbuh)
21+
* bug #11220 [Components][Serializer] optional constructor arguments can be omitted during the denormalization process (xabbuh)
22+
* bug #11186 Added missing `break` statement (apfelbox)
23+
* bug #11169 [Console] Fixed notice in DialogHelper (florianv)
24+
* bug #11144 [HttpFoundation] Fixed Request::getPort returns incorrect value under IPv6 (kicken)
25+
* bug #10966 PHP Fatal error when getContainer method of ContainerAwareCommand has be... (kevinvergauwen)
26+
* bug #10981 [HttpFoundation] Fixed isSecure() check to be compliant with the docs (Jannik Zschiesche)
27+
* bug #11092 [HttpFoundation] Fix basic authentication in url with PHP-FPM (Kdecherf)
28+
* bug #10808 [DomCrawler] Empty select with attribute name="foo[]" bug fix (darles)
29+
* bug #11063 [HttpFoundation] fix switch statement (Tobion)
30+
* bug #11009 [HttpFoundation] smaller fixes for PdoSessionHandler (Tobion)
31+
* bug #11041 Remove undefined variable $e (skydiablo)
32+
1033
* 2.4.6 (2014-05-31)
1134

1235
* bug #11014 [Validator] Remove property and method targets from the optional and required constraints (jakzal)

0 commit comments

Comments
 (0)
0