Skip to content

Commit 87df0b7

Browse files
author
Tiago Brito
committed
Merge pull request #1 from symfony/master
update symfony repo
2 parents c9e842c + 3968607 commit 87df0b7

File tree

795 files changed

+14393
-5037
lines changed

Some content is hidden

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

795 files changed

+14393
-5037
lines changed

.travis.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ php:
44
- 5.3.3
55
- 5.3
66
- 5.4
7+
- 5.5
8+
9+
matrix:
10+
allow_failures:
11+
- php: 5.5
712

813
before_script:
914
- COMPOSER_ROOT_VERSION=dev-master composer --prefer-source --dev install

CHANGELOG-2.0.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,22 @@ 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.21 (2012-12-21)
11+
12+
* b8e5689: [FrameworkBundle] fixed ESI calls
13+
14+
* 2.0.20 (2012-12-20)
15+
16+
* 532cc9a: [FrameworkBundle] added support for URIs as an argument to HttpKernel::render()
17+
* 1f8c501: [FrameworkBundle] restricted the type of controllers that can be executed by InternalController
18+
* 8b2c17f: fix double-decoding in the routing system
19+
* 773d818: [FrameworkBundle] Added a check on file mime type for CodeHelper::fileExcerpt()
20+
* a0e2391: [FrameworkBundle] used the new method for trusted proxies
21+
* 8bb3208: [Config] Loader::import must return imported data
22+
* 447ff91: [HttpFoundation] changed UploadedFile::move() to use move_uploaded_file() when possible
23+
* 0489799: [HttpFoundation] added a check for the host header value
24+
* ae3d531: [TwigBundle] Moved the registration of the app global to the environment
25+
1026
* 2.0.19 (2012-11-29)
1127

1228
* e5536f0: replaced magic strings by proper constants

CHANGELOG-2.1.md

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

10+
* 2.1.6 (2012-12-21)
11+
12+
* b8e5689: [FrameworkBundle] fixed ESI calls
13+
* ce536cd: [FrameworkBundle] fixed ESI calls
14+
15+
* 2.1.5 (2012-12-20)
16+
17+
* 532cc9a: [FrameworkBundle] added support for URIs as an argument to HttpKernel::render()
18+
* 1f8c501: [FrameworkBundle] restricted the type of controllers that can be executed by InternalController
19+
* 2cd43da: [Process] Allow non-blocking start with PhpProcess
20+
* 8b2c17f: fix double-decoding in the routing system
21+
* 098b593: [Session] Added exception to save method
22+
* ad29df5: [Form] Fixed DateTimeToStringTransformer parsing on PHP < 5.3.8
23+
* 773d818: [FrameworkBundle] Added a check on file mime type for CodeHelper::fileExcerpt()
24+
* f24e3d7: [HttpKernel] Revise MongoDbProfilerStorage::write() return value
25+
* 78c5273: [Session] Document Mongo|MongoClient argument type instead of "object"
26+
* de19a81: [HttpKernel] Support MongoClient and Mongo connection classes
27+
* b28af77: [Session] Support MongoClient and Mongo connection classes
28+
* 20e93bf: [Session] Utilize MongoDB::selectCollection()
29+
* b20c5ca: [Form] Fixed reverse transformation of values in DateTimeToStringTransformer
30+
* d2231d8: [Console] Add support for parsing terminal width/height on localized windows, fixes #5742
31+
* 03b880f: [Form] Fixed treatment of countables and traversables in Form::isEmpty()
32+
* 21a59ca: [Form] Fixed FileType not to throw an exception when bound empty
33+
* eac14b5: Check if key # is defined in $value
34+
* a0e2391: [FrameworkBundle] used the new method for trusted proxies
35+
* d6a402a: [Security] fixed path info encoding (closes #6040, closes #5695)
36+
* 47dfb9c: [HttpFoundation] added some tests for the previous merge and removed dead code (closes #6037)
37+
* 1ab4923: Improved Cache-Control header when no-cache is sent
38+
* 4e909bd: Fix to allow null values in labels array
39+
* 9e46819: Fixed: HeaderBag::parseCacheControl() not parsing quoted zero correctly
40+
* 8bb3208: [Config] Loader::import must return imported data
41+
* ca5d9ac: [DoctrineBridge] Fixed caching in DoctrineType when "choices" or "preferred_choices" is passed
42+
* 6e7e08f: [Form] Fixed the default value of "format" in DateType to DateType::DEFAULT_FORMAT if "widget" is not "single_text"
43+
* 447ff91: [HttpFoundation] changed UploadedFile::move() to use move_uploaded_file() when possible (closes #5878, closes #6185)
44+
* 0489799: [HttpFoundation] added a check for the host header value
45+
* b604eb7: [DoctrineBridge] Improved performance of the EntityType when used with the "query_builder" option
46+
* 99321cb: [DoctrineBridge] Fixed: Exception is thrown if the entity class is not known to Doctrine
47+
* 2ed30e7: Fixed DefaultValue for session.auto_start in NodeDefinition
48+
* ae3d531: [TwigBundle] Moved the registration of the app global to the environment
49+
1050
* 2.1.4 (2012-11-29)
1151

1252
* e5536f0: replaced magic strings by proper constants

CONTRIBUTING.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@ Contributing
33

44
Symfony2 is an open source, community-driven project. If you'd like to contribute,
55
please read the [Contributing Code][1] part of the documentation. If you're submitting
6-
a pull request, please follow the guidelines in the [Submitting a Patch][2] section.
6+
a pull request, please follow the guidelines in the [Submitting a Patch][2] section
7+
and use the [Pull Request Template][3].
78

89
[1]: http://symfony.com/doc/current/contributing/code/index.html
910
[2]: http://symfony.com/doc/current/contributing/code/patches.html#check-list
11+
[3]: http://symfony.com/doc/current/contributing/code/patches.html#make-a-pull-request

0 commit comments

Comments
 (0)