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

Appearance settings

Commit 0c147fa

Browse filesBrowse files
Merge branch '3.1'
* 3.1: (22 commits) [travis] Fix deps=low/high builds [Form] Fix depreciation triggers fixed CS skip test with current phpunit bridge Fix for #19183 to add support for new PHP MongoDB extension in sessions. [Console] Fix for block() padding formatting after #19189 [Security][Guard] check if session exist before using it bumped Symfony version to 3.1.3 updated VERSION for 3.1.2 updated CHANGELOG for 3.1.2 bumped Symfony version to 3.0.9 updated VERSION for 3.0.8 updated CHANGELOG for 3.0.8 bumped Symfony version to 2.8.9 updated VERSION for 2.8.8 updated CHANGELOG for 2.8.8 bumped Symfony version to 2.7.16 updated VERSION for 2.7.15 update CONTRIBUTORS for 2.7.15 updated CHANGELOG for 2.7.15 ... Conflicts: src/Symfony/Component/HttpKernel/Kernel.php
2 parents dbd1ee0 + 3726aa1 commit 0c147fa
Copy full SHA for 0c147fa

File tree

23 files changed

+580
-169
lines changed
Filter options

23 files changed

+580
-169
lines changed

‎.github/travis.php

Copy file name to clipboardExpand all lines: .github/travis.php
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@
4646
$versions = @file_get_contents('https://packagist.org/packages/'.$package->name.'.json') ?: '{"package":{"versions":[]}}';
4747
$versions = json_decode($versions);
4848

49-
foreach ($versions->package->versions as $version => $package) {
50-
$packages[$package->name] += array($version => $package);
49+
foreach ($versions->package->versions as $v => $package) {
50+
$packages[$package->name] += array($v => $package);
5151
}
5252
}
5353

‎CHANGELOG-3.0.md

Copy file name to clipboardExpand all lines: CHANGELOG-3.0.md
+33Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,39 @@ in 3.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/v3.0.0...v3.0.1
99

10+
* 3.0.8 (2016-06-30)
11+
12+
* bug #19217 [HttpKernel] Inline ValidateRequestListener logic into HttpKernel (nicolas-grekas)
13+
* bug #18688 [HttpFoundation] Warning when request has both Forwarded and X-Forwarded-For (magnusnordlander)
14+
* bug #19173 [Console] Decouple SymfonyStyle from TableCell (ro0NL)
15+
* bug #19189 [Console] Fix formatting of SymfonyStyle::comment() (chalasr)
16+
* bug #19211 [Form] fix post max size translation type extension for >= 2.8 (Tobion)
17+
* bug #17822 [WIP] [Form] fix `empty_data` option in expanded `ChoiceType` (HeahDude)
18+
* bug #19134 Distinguish between first and subsequent progress bar displays (rquadling)
19+
* bug #19061 [FORM] fix post_max_size_message translation (alt. 2) (David Badura)
20+
* bug #19100 [Console] Fixed SymfonyQuestionHelper multi-choice with defaults (sstok)
21+
* bug #18924 [DoctrineBridge] Don't use object IDs in DoctrineChoiceLoader when passing a value closure (webmozart)
22+
* bug #19138 [DomCrawler] No more exception on field name with strange format (guiled, fabpot)
23+
* bug #18935 [Form] Consider a violation even if the form is not submitted (egeloen)
24+
* bug #19127 [Form] Add exception to FormRenderer about non-unique block names (enumag)
25+
* bug #19118 [Process] Fix pipes cleaning on Windows (nicolas-grekas)
26+
* bug #19128 Avoid phpunit 5.4 warnings on getMock (2.7+) (iltar)
27+
* bug #19114 [HttpKernel] Dont close the reponse stream in debug (nicolas-grekas)
28+
* bug #19101 [Session] fix PDO transaction aborted under PostgreSQL (Tobion)
29+
* bug #18501 [HttpFoundation] changed MERGE queries (hjkl)
30+
* bug #19062 [HttpFoundation] Fix UPSERT for PgSql >= 9.5 (nicolas-grekas)
31+
* bug #18548 [Form] minor fixes in DateTime transformers (HeahDude)
32+
* bug #18732 [PropertyAccess][DX] Enhance exception that say that some methods are missing if they don't (nykopol)
33+
* bug #19048 [HttpFoundation] Use UPSERT for sessions stored in PgSql >= 9.5 (nicolas-grekas)
34+
* bug #19038 Fix feature detection for IE (Alsciende)
35+
* bug #18915 [DependencyInjection] force enabling the external XML entity loaders (xabbuh)
36+
* bug #19020 [Form] Fixed collapsed choice attributes (HeahDude)
37+
* bug #19028 [Yaml] properly count skipped comment lines (xabbuh)
38+
* bug #19009 [WebProfilerBundle] Fix invalid CSS style (romainneutron)
39+
* bug #17733 [Yaml] Fix wrong line number when comments are inserted in the middle of a block. (paradajozsef)
40+
* bug #18911 Fixed singular of committee (peterrehm)
41+
* bug #18971 Do not inject web debug toolbar on attachments (peterrehm)
42+
1043
* 3.0.7 (2016-06-06)
1144

1245
* bug #18908 [DependencyInjection] force enabling the external XML entity loaders (xabbuh)

‎CHANGELOG-3.1.md

Copy file name to clipboardExpand all lines: CHANGELOG-3.1.md
+30Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,36 @@ in 3.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/v3.1.0...v3.1.1
99

10+
* 3.1.2 (2016-06-30)
11+
12+
* bug #19227 [DoctrineBridge] fixed default parameter value in UniqueEntityValidator (HeahDude)
13+
* bug #18934 Fixed some issues of the AccessDecisionManager profiler (javiereguiluz)
14+
* bug #19217 [HttpKernel] Inline ValidateRequestListener logic into HttpKernel (nicolas-grekas)
15+
* bug #18688 [HttpFoundation] Warning when request has both Forwarded and X-Forwarded-For (magnusnordlander)
16+
* bug #19173 [Console] Decouple SymfonyStyle from TableCell (ro0NL)
17+
* bug #19204 [Security] Allow LDAP loadUser override (tucksaun)
18+
* bug #19189 [Console] Fix formatting of SymfonyStyle::comment() (chalasr)
19+
* bug #19211 [Form] fix post max size translation type extension for >= 2.8 (Tobion)
20+
* bug #17822 [WIP] [Form] fix `empty_data` option in expanded `ChoiceType` (HeahDude)
21+
* bug #19159 [WebProfilerBundle] Added a conflict for Http-Kernel < 3.1 (HeahDude)
22+
* bug #19134 Distinguish between first and subsequent progress bar displays (rquadling)
23+
* bug #19061 [FORM] fix post_max_size_message translation (alt. 2) (David Badura)
24+
* bug #19100 [Console] Fixed SymfonyQuestionHelper multi-choice with defaults (sstok)
25+
* bug #18924 [DoctrineBridge] Don't use object IDs in DoctrineChoiceLoader when passing a value closure (webmozart)
26+
* bug #19138 [DomCrawler] No more exception on field name with strange format (guiled, fabpot)
27+
* bug #18935 [Form] Consider a violation even if the form is not submitted (egeloen)
28+
* bug #19127 [Form] Add exception to FormRenderer about non-unique block names (enumag)
29+
* bug #19118 [Process] Fix pipes cleaning on Windows (nicolas-grekas)
30+
* bug #19128 Avoid phpunit 5.4 warnings on getMock (2.7+) (iltar)
31+
* bug #19120 [FrameworkBundle] templating can be fully disabled (xabbuh)
32+
* bug #19114 [HttpKernel] Dont close the reponse stream in debug (nicolas-grekas)
33+
* bug #19101 [Session] fix PDO transaction aborted under PostgreSQL (Tobion)
34+
* bug #18501 [HttpFoundation] changed MERGE queries (hjkl)
35+
* bug #19081 [YAML] Fixed parsing problem with nested DateTime lists (jkphl, xabbuh)
36+
* bug #19062 [HttpFoundation] Fix UPSERT for PgSql >= 9.5 (nicolas-grekas)
37+
* bug #18548 [Form] minor fixes in DateTime transformers (HeahDude)
38+
* bug #18732 [PropertyAccess][DX] Enhance exception that say that some methods are missing if they don't (nykopol)
39+
1040
* 3.1.1 (2016-06-15)
1141

1242
* bug #19048 [HttpFoundation] Use UPSERT for sessions stored in PgSql >= 9.5 (nicolas-grekas)

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.