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

Skip to content

Commit 7c44cba

Browse files
committed
Merge remote-tracking branch 'upstream/master' into output-stream
* upstream/master: (633 commits) [Security] Fix the default authentication handlers config definition updated VERSION for 2.0.16 update CONTRIBUTORS for 2.0.16 updated CHANGELOG for 2.0.16 [Validator] Improved error messages displayed when the Valid constraint is misused [Form] Fixed TransformationFailedExceptions to be caught in the model transformers [Form] Improved ValidatorTypeGuesser to interpret the constraints True and False [Validator] Deprecated the Size constraint [Validator] Fix docblocks [Process] remade ProcessBuilder::setTimeout fluent [Process] fixed setting the timeout to null [Validator] Reverted the changes done to the Size constraint in 3a5e84f [Validator] Added the constraints MinCount and MaxCount [Validator] Removed the Range constraint as it duplicates functionality given in Min and Max [Form] Enabled error bubbling from the parts of a date/time field to the main field [Locale] Fixed error resetting in StubIntlDateFormatter::parse() [Form] Renamed the options "data_timezone" and "user_timezone" [Process] re-added the possibility to set the Process timeout to null (to disable it) (closes #4843) added missing listener priority changes in the UPGRADE file (refs #2680) [Form] Fixed tests failing on systems with timezones other than +01:00 ... Conflicts: src/Symfony/Component/HttpFoundation/StreamedResponse.php
2 parents a2f32a9 + d4b40fb commit 7c44cba

File tree

1,277 files changed

+28961
-14143
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,277 files changed

+28961
-14143
lines changed

.editorconfig

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
; top-most EditorConfig file
2+
root = true
3+
4+
; Unix-style newlines
5+
[*]
6+
end_of_line = LF
7+
8+
[*.php]
9+
indent_style = space
10+
indent_size = 4

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
language: php
22

33
php:
4-
- 5.3.2
4+
- 5.3.3
55
- 5.3
66
- 5.4
77

88
before_script:
99
- curl -s http://getcomposer.org/installer | php
10-
- php composer.phar --dev install
10+
- COMPOSER_ROOT_VERSION=dev-master php composer.phar --dev install

CHANGELOG-2.0.md

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,60 @@ in 2.0 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.0.0...v2.0.1
99

10+
* 2.0.14 (2012-05-17)
11+
12+
* d1c831d: Change must-proxy-revalidate by proxy-revalidate
13+
* 445fd2f: In console terms columns are width and rows are height
14+
* 926ac98: [Finder] replaced static by self on a private variable
15+
* 47605f6: [Form][DataMapper] Do not update form to data when form is read only
16+
* c642a5e: [CssSelector] ignored an optional whitespace after a combinator
17+
* cbc3ed3: [HttpKernel] added some constant for better forward compatibility
18+
* 906f6f6: [DependencyInjection] fixed private services removal when used as configurators (closes #3758)
19+
* 970d0b4: [BrowserKit] Check class existence only when required.
20+
* 1ed8b72: Autoloader should not throw exception because PHP will continue to call other registered autoloaders.
21+
* 7fe236a: [Security] Configure ports in RetryAuthenticationEntryPoint according to router settings
22+
23+
* 2.0.13 (2012-04-30)
24+
25+
* 5b92b9e: [Console] Selectively output to STDOUT or OUTPUT stream
26+
* c89f3d3: [HttpKernel] Added DEPRECATED errors
27+
* 689a40d: [MonologBridge] Fixed the WebProcessor
28+
* 2e7d3b1: http_build_query fix
29+
* de73de0: http_build_query fix
30+
* 3b7ee9a: http_build_query fix
31+
* 14b3b05: [TwigBundle] added missing entry in the XSD schema
32+
* 7ddc8cb: [FrameworkBundle] Monitor added/removed translations files in dev (fix #3653)
33+
* 686653a: [HttpKernel] Fixed wache vary write (fixes #3896).
34+
* 45ada32: Add Support for boolean as to string into yaml extension
35+
* cd783fb: [HttpKernel] Fixed cache vary lookup (fixes #3896).
36+
* 3939c90: [FrameworkBundle] Fix TraceableEventDispatcher unable to trace static class callables
37+
* e4cbbf3: [Locale] fixed StubNumberFormatter::format() to behave like the NumberFormatter::parse() regarding to error flagging
38+
* f16ff89: [Locale] fixed StubNumberFormatter::parse() to behave like the NumberFormatter::parse() regarding to error flagging
39+
* 0a60664: [Locale] updated StubIntlDateFormatter::format() exception message when timestamp argument is an array for PHP >= 5.3.4
40+
* 6f9c05d: [Locale] Complete Stub with intl_error_name
41+
* 312a5a4: [Locale] fixed StubIntlDateFormatter::format() to set the right error for PHP >= 5.3.4 and to behave like the intl when formatting successfully
42+
* bb61e09: [Locale] use the correct way for Intl error
43+
* 01fcb08: [HttpKernel] Fix the ProfilerListener (fix #3620)
44+
* 3ae826a: Fix issue #3251: Check attribute type of service tags
45+
* 57dd914: [EventDispatcher] Fixed E_NOTICES with multiple eventnames per subscriber with mixed priorities
46+
* 77185e0: [Routing] Allow spaces in the script name for the apache dumper
47+
* 6465a69: [Routing] Fixes to handle spaces in route pattern
48+
* 31dde14: [Locale] updated StubIntlDateFormatter::format() behavior for PHP >= 5.3.4
49+
* 8a2b115: [Console] Mock terminal size to prevent formatting errors on small terminals
50+
* 595cc11: [Console] Wrap exception messages to the terminal width to avoid ugly output
51+
* 97f7b29: [Console] Avoid outputing \r's in exception messages
52+
* 04ae7cc: [Routing] fixed exception message.
53+
* f7647f9: [Routing] improved exception message when giving an invalid route name.
54+
* 0024ddc: Fix for using route name as check_path.
55+
* fc41d4f: [Security] [HttpDigest] Fixes a configuration error caused by an invalid 'key' child node configuration
56+
* 24a0d0a: [DependencyInjection] Support Yaml calls without arguments
57+
* 15dd17e: Simplified CONTENT_ headers retrieval
58+
* 86a3512: [FrameworkBundle] Add support for full URLs to redirect controller
59+
* 068e859: [TwigBundle] Changed getAndCleanOutputBuffering() handling of systems where ob_get_level() never returns 0
60+
* efa807a: [HttpKernel] fixed sub-request which should be always a GET (refs #3657)
61+
* c1206c3: [FrameworkBundle] Subrequests should always use GET method
62+
* 0c9b2d4: use SecurityContextInterface instead of SecurityContext
63+
1064
* 2.0.12 (2012-03-19)
1165

1266
* 54b2413: Webprofiler ipv6 search fix

0 commit comments

Comments
 (0)