Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit a2f4666

Browse files
Merge branch '4.3' into 4.4
* 4.3: bumped Symfony version to 4.3.5 Sort components on CI fix parameter type declaration and make fabbot happy Upgraded CI Composer updated VERSION for 4.3.4 updated CHANGELOG for 4.3.4 bumped Symfony version to 3.4.32 updated VERSION for 3.4.31 update CONTRIBUTORS for 3.4.31 updated CHANGELOG for 3.4.31
2 parents c1bca29 + 28f4c09 commit a2f4666

File tree

6 files changed

+146
-44
lines changed

6 files changed

+146
-44
lines changed

.appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ install:
4242
- echo extension=php_curl.dll >> php.ini-max
4343
- copy /Y php.ini-max php.ini
4444
- cd c:\projects\symfony
45-
- IF NOT EXIST composer.phar (appveyor DownloadFile https://github.com/composer/composer/releases/download/1.7.1/composer.phar)
45+
- IF NOT EXIST composer.phar (appveyor DownloadFile https://github.com/composer/composer/releases/download/1.9.0/composer.phar)
4646
- php composer.phar self-update
4747
- copy /Y .composer\* %APPDATA%\Composer\
4848
- php composer.phar global require --no-progress --no-scripts --no-plugins symfony/flex dev-master

.travis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ before_install:
7676
export PHPUNIT=$(readlink -f ./phpunit)
7777
export PHPUNIT_X="$PHPUNIT --exclude-group tty,benchmark,intl-data"
7878
export COMPOSER_UP='composer update --no-progress --no-suggest --ansi'
79-
export COMPONENTS=$(find src/Symfony -mindepth 2 -type f -name phpunit.xml.dist -printf '%h\n')
79+
export COMPONENTS=$(find src/Symfony -mindepth 2 -type f -name phpunit.xml.dist -printf '%h\n' | sort)
8080
find ~/.phpenv -name xdebug.ini -delete
8181
8282
if [[ $TRAVIS_PHP_VERSION = 7.4* ]]; then
@@ -227,15 +227,15 @@ install:
227227
SYMFONY_VERSION=$(git ls-remote --heads | grep -o '/[1-9].*' | tail -n 1 | sed s/.//) &&
228228
git fetch origin $SYMFONY_VERSION &&
229229
git checkout -m FETCH_HEAD &&
230-
COMPONENTS=$(find src/Symfony -mindepth 2 -type f -name phpunit.xml.dist -printf '%h\n')
230+
COMPONENTS=$(find src/Symfony -mindepth 2 -type f -name phpunit.xml.dist -printf '%h\n' | sort)
231231
else
232232
SYMFONY_VERSION=$(cat composer.json | grep '^ *"dev-master". *"[1-9]' | grep -o '[0-9.]*')
233233
fi
234234
235235
- |
236236
# Skip the phpunit-bridge on not-master branches when $deps is empty
237237
if [[ ! $deps && $TRAVIS_BRANCH != master ]]; then
238-
COMPONENTS=$(find src/Symfony -mindepth 3 -type f -name phpunit.xml.dist -not -wholename '*/Bridge/PhpUnit/*' -printf '%h\n')
238+
COMPONENTS=$(find src/Symfony -mindepth 3 -type f -name phpunit.xml.dist -not -wholename '*/Bridge/PhpUnit/*' -printf '%h\n' | sort)
239239
fi
240240
241241
- |

CHANGELOG-4.3.md

Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,68 @@ in 4.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/v4.3.0...v4.3.1
99

10+
* 4.3.4 (2019-08-26)
11+
12+
* bug #33335 [DependencyInjection] Fixed the `getServiceIds` implementation to always return aliases (pdommelen)
13+
* bug #33298 [Messenger] Stop worker when it should stop (tienvx)
14+
* bug #33292 [VarExporter] fix support for PHP 7.4 (nicolas-grekas)
15+
* bug #33282 [HttpKernel] Do not extend the new SF 4.3 ControllerEvent so we can make it final (Tobion)
16+
* bug #33278 [FrameworkBundle] Fix BrowserKit assertions to make them compatible with Panther (dunglas)
17+
* bug #33216 [Mime] Trim and remove line breaks from NamedAddress name arg (maldoinc)
18+
* bug #33124 [Config] Add handling for ignored keys in ArrayNode::mergeValues. (Alexandre Parent)
19+
* bug #33244 [Router] Fix TraceableUrlMatcher behaviour with trailing slash (Xavier Leune)
20+
* bug #33232 Fix handling for session parameters (vkhramtsov)
21+
* bug #32497 [Messenger] DispatchAfterCurrentBusMiddleware does not cancel messages from delayed handlers (Nyholm, BastienClement)
22+
* bug #33127 [Messenger] make delay exchange and queues durable like the normal ones by default (Tobion)
23+
* bug #33210 [Mailer] Don't duplicate addresses in Sendgrid Transport (pierredup)
24+
* bug #33172 [Console] fixed a PHP notice when there is no function in the stack trace of an Exception (fabpot)
25+
* bug #33157 Fix getMaxFilesize() returning zero (ausi)
26+
* bug #33139 [Intl] Cleanup unused language aliases entry (ro0NL)
27+
* bug #33126 [SecurityBundle] display the correct class name on the deprecated notice (maxhelias)
28+
* bug #33093 [EventDispatcher] wrong Request class (maxhelias)
29+
* bug #33092 [DependencyInjection] Improve an exception message (fabpot)
30+
* bug #32541 [HttpKernel] trim the leading backslash in the controller init (Simperfit, fabpot)
31+
* bug #32455 [HttpFoundation] Clear invalid session cookie (Toflar)
32+
* bug #33066 [Serializer] Fix negative DateInterval (jderusse)
33+
* bug #33045 Make HttpClientTestCase compatible with PHPUnit8 (jderusse)
34+
* bug #33033 [Lock] consistently throw NotSupportException (xabbuh)
35+
* bug #33022 [HttpClient] Remove CURLOPT_CONNECTTIMEOUT_MS curl opt (lyrixx)
36+
* bug #32516 [FrameworkBundle][Config] Ignore exceptions thrown during reflection classes autoload (fancyweb)
37+
* bug #33010 [TwigBridge] pass translation parameters to the trans filter (xabbuh)
38+
* bug #32981 Fix tests/code for php 7.4 (jderusse)
39+
* bug #32986 [Mime] fixed wrong mimetype (rjwebdev)
40+
* bug #32992 [ProxyManagerBridge] Polyfill for unmaintained version (jderusse)
41+
* bug #32989 [HttpClient] Declare `$active` first to prevent weird issue (Kocal)
42+
* bug #32999 Added correct plural for box -> boxes (cinamo)
43+
* bug #32933 [PhpUnitBridge] fixed PHPUnit 8.3 compatibility: method handleError was renamed to __invoke (karser)
44+
* bug #32947 [Intl] Support DateTimeInterface in IntlDateFormatter::format (pierredup)
45+
* bug #32919 [Intl] Order alpha2 to alpha3 mapping + phpdoc fixes (ro0NL)
46+
* bug #32792 [Messenger] Fix incompatibility with FrameworkBundle <4.3.1 (chalasr)
47+
* bug #32836 [Messenger] Removed named parameters and replaced with `?` placeholders for sqlsrv compatibility (David Legatt)
48+
* bug #32838 [FrameworkBundle] Detect indirect env vars in routing (ro0NL)
49+
* bug #32918 [Intl] Order alpha2 to alpha3 mapping (ro0NL)
50+
* bug #32902 [PhpUnitBridge] Allow sutFqcnResolver to return array (VincentLanglet)
51+
* bug #32814 Create mailBody with only attachments part present (srsbiz)
52+
* bug #32682 [HttpFoundation] Revert getClientIp @return docblock (ossinkine)
53+
* bug #32910 [Yaml] PHP-8: Uncaught TypeError: abs() expects parameter 1 to be int or float, string given (Aleksandr Dankovtsev)
54+
* bug #32870 #32853 Check if $this->parameters is array. (ABGEO07)
55+
* bug #32899 [Mailer] fix wrong error message when connection closes unexpectedly (fabpot)
56+
* bug #32895 [Mailer] Fix error not being thrown properly (fabpot)
57+
* bug #32868 [PhpUnitBridge] Allow symfony/phpunit-bridge > 4.2 to be installed with phpunit 4.8 (jderusse)
58+
* bug #32823 [HttpClient] Preserve the case of headers when sending them (nicolas-grekas)
59+
* bug #32767 [Yaml] fix comment in multi line value (soufianZantar)
60+
* bug #32790 [HttpFoundation] Fix `getMaxFilesize` (bennyborn)
61+
* bug #32796 [Cache] fix warning on PHP 7.4 (jpauli)
62+
* bug #32806 [Console] fix warning on PHP 7.4 (rez1dent3)
63+
* bug #32809 Don't add object-value of static properties in the signature of container metadata-cache (arjenm)
64+
* bug #32708 Recompile container when translations directory changes (pierredup)
65+
* bug #32722 [DependencyInjection] Fix bindings and tagged_locator (deguif)
66+
* bug #32802 Make sure trace_level is always defined (dbu)
67+
* bug #30096 [DI] Fix dumping Doctrine-like service graphs (bis) (weaverryan, nicolas-grekas)
68+
* bug #32799 [HttpKernel] do not stopwatch sections when profiler is disabled (Tobion)
69+
* bug #32631 [Messenger] expire delay queue and fix auto_setup logic (Tobion)
70+
* bug #32641 [Messenger] Retrieve table default options from the SchemaManager (vincenttouzet)
71+
1072
* 4.3.3 (2019-07-28)
1173

1274
* bug #32726 [Messenger] Fix redis last error not cleared between calls (chalasr)

0 commit comments

Comments
 (0)