Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit6acf3e7

Browse files
committed
Merge branch '2.5'
* 2.5: [Doc] Use Markdown syntax highlighting [Finder] tweaked docs [Finder] Add info about possibilities offered by SplFileInfo fixed CS [Security][Http][Authentication] Make a test pass on HHVM fix components tests [Intl] FIxed failing test [Intl] Generated the data for ICU version 54-rc [EventDispatcher] fix doc bloc on EventDispatcherInterface [Validator] Update validators.zh_CN.xlf, fix translation error bumped Symfony version to 2.5.6 updated VERSION for 2.5.5 updated CHANGELOG for 2.5.5 bumped Symfony version to 2.3.21 updated VERSION for 2.3.20 update CONTRIBUTORS for 2.3.20 updated CHANGELOG for 2.3.20 [Intl] Integrated ICU data into Intl componentConflicts:src/Symfony/Component/Debug/README.mdsrc/Symfony/Component/DependencyInjection/README.mdsrc/Symfony/Component/HttpKernel/Kernel.phpsrc/Symfony/Component/OptionsResolver/README.md
2 parents832c78f +cfd1ecf commit6acf3e7

File tree

1,086 files changed

+247715
-2844
lines changed

Some content is hidden

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

1,086 files changed

+247715
-2844
lines changed

‎.travis.yml‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,6 @@ install:
3535
-sh -c 'if [ "$components" = "no" ]; then sh -c "COMPOSER_ROOT_VERSION=dev-master composer --prefer-source --dev install"; fi;'
3636

3737
script:
38-
-sh -c 'if [ "$components" = "no" ]; then sh -c "ls -d src/Symfony/*/* | parallel --gnu --keep-order '\''echo \"Running {} tests\"; phpunit --exclude-group tty,benchmark {};'\''"; fi;'
38+
-sh -c 'if [ "$components" = "no" ]; then sh -c "ls -d src/Symfony/*/* | parallel --gnu --keep-order '\''echo \"Running {} tests\"; phpunit --exclude-group tty,benchmark,intl-data {};'\''"; fi;'
3939
-sh -c 'if [ "$components" = "no" ]; then sh -c "echo "\""Running tests requiring tty"\""; phpunit --group tty"; fi;'
40-
-sh -c 'if [ "$components" = "yes" ]; then sh -c "find src/Symfony -mindepth 3 -type f -name '\''phpunit.xml.dist'\'' | sed '\''s#\(.*\)/.*#\1#'\'' | parallel --gnu --keep-order '\''echo \"Running {} tests\"; cd {}; COMPOSER_ROOT_VERSION=dev-master composer --prefer-source --dev install; phpunit --exclude-group tty,benchmark;'\''"; fi;'
40+
-sh -c 'if [ "$components" = "yes" ]; then sh -c "find src/Symfony -mindepth 3 -type f -name '\''phpunit.xml.dist'\'' | sed '\''s#\(.*\)/.*#\1#'\'' | parallel --gnu --keep-order '\''echo \"Running {} tests\"; cd {}; COMPOSER_ROOT_VERSION=dev-master composer --prefer-source --dev install; phpunit --exclude-group tty,benchmark,intl-data;'\''"; fi;'

‎CHANGELOG-2.3.md‎

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,37 @@ in 2.3 minor versions.
77
To get the diff for a specific change, go tohttps://github.com/symfony/symfony/commit/XXX where XXX is the change hash
88
To get the diff between two versions, go tohttps://github.com/symfony/symfony/compare/v2.3.0...v2.3.1
99

10+
* 2.3.20 (2014-09-28)
11+
12+
* bug#9453[Form][DateTime] Propagate invalid_message & invalid_message_parameters to date & time (egeloen)
13+
* bug#11058[Security] bug#10242 Missing checkPreAuth from RememberMeAuthenticationProvider (glutamatt)
14+
* bug#12004[Form] Fixed ValidatorTypeGuesser to guess properties without constraints not to be required (webmozart)
15+
* bug#11904 Make twig ExceptionController conformed with ExceptionListener (megazoll)
16+
* bug#11924[Form] Moved POST_MAX_SIZE validation from FormValidator to request handler (rpg600, webmozart)
17+
* bug#11079 Response::isNotModified returns true when If-Modified-Since is later than Last-Modified (skolodyazhnyy)
18+
* bug#11989[Finder][Urgent] Remove asterisk and question mark from folder name in test to prevent windows file system issues. (Adam)
19+
* bug#11908[Translation][Config] Clear libxml errors after parsing xliff file (pulzarraider)
20+
* bug#11937[HttpKernel] Make sure HttpCache is a trusted proxy (thewilkybarkid)
21+
* bug#11970[Finder] Escape location for regex searches (ymc-dabe)
22+
* bug#11837 Use getPathname() instead of string casting to get BinaryFileReponse file path (nervo)
23+
* bug#11513[Translation] made XliffFileDumper support CDATA sections. (hhamon)
24+
* bug#11907[Intl] Improved bundle reader implementations (webmozart)
25+
* bug#11874[Console] guarded against non-traversable aliases (thierrymarianne)
26+
* bug#11799[YAML] fix handling of empty sequence items (xabbuh)
27+
* bug#11906[Intl] Fixed a few bugs in TextBundleWriter (webmozart)
28+
* bug#11459[Form][Validator] All index items after children are to be considered grand-children when resolving ViolationPath (Andrew Moore)
29+
* bug#11715[Form] FormBuilder::getIterator() now deals with resolved children (issei-m)
30+
* bug#11892[SwiftmailerBridge] Bump allowed versions of swiftmailer (ymc-dabe)
31+
* bug#11918[DependencyInjection] remove`service` parameter type from XSD (xabbuh)
32+
* bug#11905[Intl] Removed non-working $fallback argument from ArrayAccessibleResourceBundle (webmozart)
33+
* bug#11497 Use separated function to resolve command and related arguments (JJK801)
34+
* bug#11374[DI] Added safeguards against invalid config in the YamlFileLoader (stof)
35+
* bug#11897[FrameworkBundle] Remove invalid markup (flack)
36+
* bug#11860[Security] Fix usage of unexistent method in DoctrineAclCache. (mauchede)
37+
* bug#11850[YAML] properly mask escape sequences in quoted strings (xabbuh)
38+
* bug#11856[FrameworkBundle] backport more error information from 2.6 to 2.3 (xabbuh)
39+
* bug#11843[Yaml] improve error message when detecting unquoted asterisks (xabbuh)
40+
1041
* 2.3.19 (2014-09-03)
1142

1243
* security#11832CVE-2014-6072 (fabpot)

‎CHANGELOG-2.5.md‎

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,45 @@ in 2.5 minor versions.
77
To get the diff for a specific change, go tohttps://github.com/symfony/symfony/commit/XXX where XXX is the change hash
88
To get the diff between two versions, go tohttps://github.com/symfony/symfony/compare/v2.5.0...v2.5.1
99

10+
* 2.5.5 (2014-09-28)
11+
12+
* bug#12016[Validator] Added ConstraintValidator::buildViolation() helper for BC with the 2.4 API (webmozart)
13+
* bug#12031[Validator] Fixed LegacyValidator when only a constraint is validated (webmozart)
14+
* bug#9453[Form][DateTime] Propagate invalid_message & invalid_message_parameters to date & time (egeloen)
15+
* bug#12030 Fix expression language in the container when using the "container" variable (fabpot)
16+
* bug#12032[Command] Set the process title as late as possible (lyrixx)
17+
* bug#11058[Security] bug#10242 Missing checkPreAuth from RememberMeAuthenticationProvider (glutamatt)
18+
* bug#12004[Form] Fixed ValidatorTypeGuesser to guess properties without constraints not to be required (webmozart)
19+
* bug#11904 Make twig ExceptionController conformed with ExceptionListener (megazoll)
20+
* bug#11924[Form] Moved POST_MAX_SIZE validation from FormValidator to request handler (rpg600, webmozart)
21+
* bug#12002[Security][Firewall] Bug fixed in SimplePreAuthenticationListener when createToken() not return TokenInterface object (adenkejawen, fabpot)
22+
* bug#11079 Response::isNotModified returns true when If-Modified-Since is later than Last-Modified (skolodyazhnyy)
23+
* bug#11989[Finder][Urgent] Remove asterisk and question mark from folder name in test to prevent windows file system issues. (Adam)
24+
* bug#11908[Translation][Config] Clear libxml errors after parsing xliff file (pulzarraider)
25+
* bug#11839[FrameworkBundle] check if the Validator component is present when forms are enabled (xabbuh)
26+
* bug#11418[JsonResponse] Silent only JSON errors (GromNaN)
27+
* bug#11937[HttpKernel] Make sure HttpCache is a trusted proxy (thewilkybarkid)
28+
* bug#11970[Finder] Escape location for regex searches (ymc-dabe)
29+
* bug#11837 Use getPathname() instead of string casting to get BinaryFileReponse file path (nervo)
30+
* bug#11513[Translation] made XliffFileDumper support CDATA sections. (hhamon)
31+
* bug#11928[Validator] The ratio of the ImageValidator is rounded to two decimals now (webmozart)
32+
* bug#11907[Intl] Improved bundle reader implementations (webmozart)
33+
* bug#11874[Console] guarded against non-traversable aliases (thierrymarianne)
34+
* bug#11799[YAML] fix handling of empty sequence items (xabbuh)
35+
* bug#11906[Intl] Fixed a few bugs in TextBundleWriter (webmozart)
36+
* bug#11459[Form][Validator] All index items after children are to be considered grand-children when resolving ViolationPath (Andrew Moore)
37+
* bug#11715[Form] FormBuilder::getIterator() now deals with resolved children (issei-m)
38+
* bug#11892[SwiftmailerBridge] Bump allowed versions of swiftmailer (ymc-dabe)
39+
* bug#11918[DependencyInjection] remove`service` parameter type from XSD (xabbuh)
40+
* bug#11905[Intl] Removed non-working $fallback argument from ArrayAccessibleResourceBundle (webmozart)
41+
* bug#11497 Use separated function to resolve command and related arguments (JJK801)
42+
* bug#11374[DI] Added safeguards against invalid config in the YamlFileLoader (stof)
43+
* bug#11897[FrameworkBundle] Remove invalid markup (flack)
44+
* bug#11860[Security] Fix usage of unexistent method in DoctrineAclCache. (mauchede)
45+
* bug#11850[YAML] properly mask escape sequences in quoted strings (xabbuh)
46+
* bug#11856[FrameworkBundle] backport more error information from 2.6 to 2.3 (xabbuh)
47+
* bug#11843[Yaml] improve error message when detecting unquoted asterisks (xabbuh)
48+
1049
* 2.5.4 (2014-09-03)
1150

1251
* security#11832CVE-2014-6072 (fabpot)

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp