8000 Merge branch '5.0' · symfony/symfony@a06a0d8 · GitHub
[go: up one dir, main page]

Skip to content

Commit a06a0d8

Browse files
Merge branch '5.0'
* 5.0: [Finder] Fixed docs Fix PR template Adjust pull request template for 5.0 branchout Update HttpKernel.php bumped Symfony version to 4.4.0 updated VERSION for 4.4.0-RC1 updated CHANGELOG for 4.4.0-RC1
2 parents 44d79c4 + eb4f5a8 commit a06a0d8

File tree

4 files changed

+28
-5
lines changed

4 files changed

+28
-5
lines changed

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
| Q | A
22
| ------------- | ---
3-
| Branch? | 4.4 for features / 3.4 or 4.3 for bug fixes <!-- see below -->
3+
| Branch? | master for features / 3.4, 4.3, 4.4 or 5.0 for bug fixes <!-- see below -->
44
| Bug fix? | yes/no
55
| New feature? | yes/no <!-- please update src/**/CHANGELOG.md files -->
66
| Deprecations? | yes/no <!-- please update UPGRADE-*.md and src/**/CHANGELOG.md files -->
@@ -16,6 +16,5 @@ Additionally (see https://symfony.com/roadmap):
1616
- Never break backward compatibility (see https://symfony.com/bc).
1717
- Bug fixes must be submitted against the lowest maintained branch where they apply
1818
(lowest branches are regularly merged to upper ones so they get the fixes too.)
19-
- Features and deprecations must be submitted against branch 4.4.
20-
- Legacy code removals go to the master branch.
19+
- Features and deprecations must be submitted against branch master.
2120
-->

CHANGELOG-4.4.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,30 @@ in 4.4 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.4.0...v4.4.1
99

10+
* 4.4.0-RC1 (2019-11-17)
11+
12+
* bug #34419 [Cache] Disable igbinary on PHP >= 7.4 (nicolas-grekas)
13+
* bug #34347 [Messenger] Perform no deep merging of bus middleware (vudaltsov)
14+
* bug #34366 [HttpFoundation] Allow redirecting to URLs that contain a semicolon (JayBizzle)
15+
* feature #34405 [HttpFoundation] Added possibility to configure expiration time in redis session handler (mantulo)
16+
* bug #34397 [FrameworkBundle] Remove project dir from Translator cache vary scanned directories (fancyweb)
17+
* bug #34384 [DoctrineBridge] Improve queries parameters display in Profiler (fancyweb)
18+
* bug #34408 [Cache] catch exceptions when using PDO directly (xabbuh)
19+
* bug #34411 [HttpKernel] Flatten "exception" controller argument if not typed (chalasr)
20+
* bug #34410 [HttpFoundation] Fix MySQL column type definition. (jbroutier)
21+
* bug #34403 [Cache] Redis Tag Aware warn on wrong eviction policy (andrerom)
22+
* bug #34400 [HttpKernel] collect bundle classes, not paths (nicolas-grekas)
23+
* bug #34398 [Config] fix id-generation for GlobResource (nicolas-grekas)
24+
* bug #34404 [HttpClient] fix HttpClientDataCollector (nicolas-grekas)
25+
* bug #34396 [Finder] Allow ssh2 stream wrapper for sftp (damienalexandre)
26+
* bug #34383 [DI] Use reproducible entropy to generate env placeholders (nicolas-grekas)
27+
* bug #34389 [WebProfilerBundle] add FrameworkBundle requirement (xabbuh)
28+
* bug #34381 [WebProfilerBundle] Require symfony/twig-bundle (fancyweb)
29+
* bug #34358 [Security] always check the token on non-lazy firewalls (nicolas-grekas, lyrixx)
30+
* bug #34390 [FrameworkBundle] fix wiring of httplug client (nicolas-grekas)
31+
* bug #34369 [FrameworkBundle] Disallow WebProfilerBundle < 4.4 (derrabus)
32+
* bug #34370 [DI] fix detecting singly implemented interfaces (nicolas-grekas)
33+
1034
* 4.4.0-BETA2 (2019-11-13)
1135

1236
* bug #34344 [Console] Constant STDOUT might be undefined (nicolas-grekas)

src/Symfony/Component/Finder/Finder.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -778,7 +778,7 @@ private function searchInDirectory(string $dir): \Iterator
778778
/**
779779
* Normalizes given directory names by removing trailing slashes.
780780
*
781-
* Excluding: (s)ftp:// wrapper
781+
* Excluding: (s)ftp:// or ssh2.(s)ftp:// wrapper 992B
782782
*/
783783
private function normalizeDir(string $dir): string
784784
{

src/Symfony/Component/HttpKernel/HttpKernel.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ public function __construct(EventDispatcherInterface $dispatcher, ControllerReso
6161
*/
6262
public function handle(Request $request, int $type = HttpKernelInterface::MASTER_REQUEST, bool $catch = true)
6363
{
64-
$request->headers->set('X-Php-Ob-Level', ob_get_level());
64+
$request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
6565

6666
try {
6767
return $this->handleRaw($request, $type);

0 commit comments

Comments
 (0)
0