8000 Merge pull request #46192 from fabpot/release-4.4.41 · symfony/symfony@6c95a48 · GitHub
[go: up one dir, main page]

Skip to content

Commit 6c95a48

Browse files
authored
Merge pull request #46192 from fabpot/release-4.4.41
released v4.4.41
2 parents 7f4c304 + 182df09 commit 6c95a48

File tree

2 files changed

+23
-2
lines changed

2 files changed

+23
-2
lines changed

CHANGELOG-4.4.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,27 @@ 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.41 (2022-04-27)
11+
12+
* bug #46154 [Mailer] Restore X-Transport after failure (zenas1210)
13+
* bug #46171 [VarDumper] Fix dumping floats on PHP8 (nicolas-grekas)
14+
* bug #46170 Fix dumping enums on PHP 8.2 (nicolas-grekas)
15+
* bug #46143 [Cache] Prevent fatal errors on php 8 when running concurrently with TagAwareAdapter v6.1 (sbelyshkin)
16+
* bug #46149 Modify processing of uploaded files to be compatible with PHP 8.1 (p-golovin)
17+
* bug #46125 [FrameworkBundle] Always add CacheCollectorPass (fancyweb)
18+
* bug #46121 Fix "Notice: Undefined index: headers" in messenger with Oracle (rjd22)
19+
* bug #45980 [Finder] Add support of no-capture regex modifier in MultiplePcreFilterIterator (available from PHP 8.2) (alexandre-daubois)
20+
* bug #46008 [Workflow] Catch error when trying to get an uninitialized marking (lyrixx)
21+
* bug #40998 [Form] Use reference date in reverse transform (KDederichs)
22+
* bug #46012 [HttpKernel] Fix Symfony not working on SMB share (qinshuze)
23+
* bug #45992 [Mailer] Return-Path has higher priority for envelope address than From address (tpetry)
24+
* bug #45998 [HttpClient] Fix sending content-length when streaming the body (nicolas-grekas)
25+
* bug #45565 Fix table header seperator wrapping (alamirault)
26+
* bug #45968 [Intl] Update the ICU data to 71.1 - 4.4 (jderusse)
27+
* bug #45947 [FrameworkBundle] [Command] Fix `debug:router --no-interaction` error … (WilliamBoulle)
28+
* bug #45931 [Process] Fix Process::getEnv() when setEnv() hasn't been called before (asika32764)
29+
* bug #45928 [ExpressionLanguage] Fix matching null against a regular expression (ausi)
30+
1031
* 4.4.40 (2022-04-02)
1132

1233
* bug #45910 [Messenger] reset connection on worker shutdown (SanderHagen)

src/Symfony/Component/HttpKernel/Kernel.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,12 +76,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl
7676

7777
private static $freshCache = [];
7878

79-
public const VERSION = '4.4.41-DEV';
79+
public const VERSION = '4.4.41';
8080
public const VERSION_ID = 40441;
8181
public const MAJOR_VERSION = 4;
8282
public const MINOR_VERSION = 4;
8383
public const RELEASE_VERSION = 41;
84-
public const EXTRA_VERSION = 'DEV';
84+
public const EXTRA_VERSION = '';
8585

8686
public const END_OF_MAINTENANCE = '11/2022';
8787
public const END_OF_LIFE = '11/2023';

0 commit comments

Comments
 (0)
0