Skip to content

Commit da35c47

Browse files
authored
Merge pull request symfony#58683 from fabpot/release-7.1.6
released v7.1.6
2 parents cad933c + 33a3a56 commit da35c47

File tree

2 files changed

+46
-2
lines changed

2 files changed

+46
-2
lines changed

CHANGELOG-7.1.md

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,50 @@ in 7.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/v7.1.0...v7.1.1
99

10+
* 7.1.6 (2024-10-27)
11+
12+
* bug #58669 [Cache] Revert "Initialize RedisAdapter cursor to 0" (nicolas-grekas)
13+
* bug #58649 [TwigBridge] ensure compatibility with Twig 3.15 (xabbuh)
14+
* bug #58661 [Cache] Initialize RedisAdapter cursor to 0 (thomas-hiron)
15+
* bug #58593 [Mime] fix encoding issue with UTF-8 addresses containing doubles spaces (0xb4lint)
16+
* bug #58636 [Notifier] Improve Telegrams markdown escaping (codedge)
17+
* bug #58615 [Validator] [Choice] Fix callback option if not array returned (symfonyaml)
18+
* bug #58618 [DependencyInjection] Fix linting factories implemented via __callStatic (KevinVanSonsbeek)
19+
* bug #58619 [HttpFoundation][Lock] Ensure compatibility with ext-mongodb v2 (GromNaN)
20+
* bug #58627 Minor fixes around `parse_url()` checks (nicolas-grekas)
21+
* bug #58631 [DependencyInjection] Fix parsing nested AutowireInline attributes (nicolas-grekas)
22+
* bug #58617 [DependencyInjection] Fix replacing abstract arguments with bindings (nicolas-grekas)
23+
* bug #58623 [Intl] do not access typed property before initialization (xabbuh)
24+
* bug #58626 [BrowserKit][FrameworkBundle] do not access typed properties before initialization (xabbuh)
25+
* bug #58613 Symfony 5.4 LTS will get security fixes until Feb 2029 thanks to Ibexa' sponsoring (nicolas-grekas)
26+
* bug #58523 [DoctrineBridge] fix: DoctrineTokenProvider not oracle compatible (jjjb03)
27+
* bug #58569 [Mailer][MailJet] Fix parameters for TrackClicks and TrackOpens (torohill)
28+
* bug #58557 [Doctrine][Messenger] Oracle sequences are suffixed with `_seq` (clem-rwan)
29+
* bug #58525 [Notifier] silence warnings triggered when malformed XML is parsed (xabbuh)
30+
* bug #58550 [Scheduler] silence PHP warning when an invalid date interval format string is used (xabbuh)
31+
* bug #58387 [Validator][CidrValidator] Fix error message for `OutOfRangeNetmask` validation (Fabdouarrahmane)
32+
* bug #58492 [MonologBridge] Fix PHP deprecation with `preg_match()` (simoheinonen)
33+
* bug #58449 [Form] Support intl.use_exceptions/error_level in NumberToLocalizedStringTransformer (bram123)
34+
* bug #54566 [Doctrine][Messenger] Use common sequence name to get id from Oracle (rjd22)
35+
* bug #58459 [FrameworkBundle] Fix displayed stack trace when session is used on stateless routes (nicolas-grekas)
36+
* bug #58255 [Serializer] Fix `ObjectNormalizer` gives warnings on normalizing with public static property (André Laugks)
37+
* bug #58306 [Serializer] Collect denormalization errors for variadic params (mtarld)
38+
* bug #58376 [HttpKernel] Correctly merge `max-age`/`s-maxage` and `Expires` headers (aschempp)
39+
* bug #58299 [DependencyInjection] Fix `XmlFileLoader` not respecting when env for services (Bradley Zeggelaar)
40+
* bug #58332 [Console] Suppress `proc_open` errors within `Terminal::readFromProcess` (fritzmg)
41+
* bug #58343 [HttpClient] Add `crypto_method` to scoped client options (HypeMC)
42+
* bug #58395 [TwigBridge] Fixed a parameterized choice label translation (7-zete-7)
43+
* bug #58409 [Translation] Fix extracting of message from ->trans() method with named params (tugmaks)
44+
* bug #58404 [TwigBridge] Remove usage of `Node()` instantiations (fabpot)
45+
* bug #58377 [Emoji] Update data to support emoji 16 (lyrixx)
46+
* bug #58393 [Dotenv] Default value can be empty (HypeMC)
47+
* bug #58400 [Mailer] Fix exception message on invalid event in `SendgridPayloadConverter` (alexandre-daubois)
48+
* bug #58372 Tweak error/exception handler registration (nicolas-grekas)
49+
* bug #58368 [Serializer] Readd AdvancedNameConverterInterface to MetadataAwareNameConverter (aurimasrimkusnfq, aurimasrim)
50+
* bug #58371 [PropertyInfo] Fix bigint extraction with type info (mtarld)
51+
* bug #58365 [Cache] silence warnings issued by Redis Sentinel on connection issues (xabbuh)
52+
* bug #58339 [Notifier] allow the Novu bridge to be used with symfony/notifier 7.x (xabbuh)
53+
1054
* 7.1.5 (2024-09-21)
1155

1256
* bug #58327 [FrameworkBundle] Do not access the container when the kernel is shut down (jderusse)

src/Symfony/Component/HttpKernel/Kernel.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,12 +73,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl
7373
*/
7474
private static array $freshCache = [];
7575

76-
public const VERSION = '7.1.6-DEV';
76+
public const VERSION = '7.1.6';
7777
public const VERSION_ID = 70106;
7878
public const MAJOR_VERSION = 7;
7979
public const MINOR_VERSION = 1;
8080
public const RELEASE_VERSION = 6;
81-
public const EXTRA_VERSION = 'DEV';
81+
public const EXTRA_VERSION = '';
8282

8383
public const END_OF_MAINTENANCE = '01/2025';
8484
public const END_OF_LIFE = '01/2025';

0 commit comments

Comments
 (0)