Skip to content

Release v6.1.9 #48808

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Dec 28, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 41 additions & 0 deletions CHANGELOG-6.1.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,47 @@ in 6.1 minor versions.
To get the diff for a specific change, go to https://github.com/symfony/symfony/commit/XXX where XXX is the change hash
To get the diff between two versions, go to https://github.com/symfony/symfony/compare/v6.1.0...v6.1.1

* 6.1.9 (2022-12-28)

* bug #48787 [PhpUnitBridge] Use verbose deprecation output for quiet types only when it reaches the threshold (ogizanagi)
* bug #48784 [Console] Correctly overwrite progressbars with different line count per step (ncharalampidis)
* bug #48801 [Form] Make `ButtonType` handle `form_attr` option (MatTheCat)
* bug #48791 [DependencyInjection] Fix deduplicating service instances in circular graphs (nicolas-grekas)
* bug #48771 [CssSelector] Fix escape patterns (fancyweb)
* bug #48711 [Cache] RedisTrait::createConnection does not pass auth value from redis sentinel cluster DSN (evgkord)
* bug #48724 [VarExporter] Fix exporting classes with __unserialize() but not __serialize() (fancyweb)
* bug #48746 [Validator] Fix IBAN format for Tunisia and Mauritania (smelesh)
* bug #48738 [Workflow] Allow spaces in place names so the PUML dump doesn't break (Kamil Musial)
* bug #48718 Compatibility with doctrine/annotations 2 (derrabus)
* bug #48681 [Console] Revert "bug #48089 Fix clear line with question in section (maxbeckers) (chalasr)
* bug #48651 [HttpKernel] AbstractSessionListener should not override the cache lifetime for private responses (rodmen)
* bug #48591 [DependencyInjection] Shared private services becomes public after a public service is accessed (alexpott)
* bug #48126 [Mailer] Include all transports' debug messages in RoundRobin transport exception (mixdf)
* bug #48089 [Console] Fix clear line with question in section (maxbeckers)
* bug #48602 [HtmlSanitizer] Fix HtmlSanitizer default configuration behavior for allowed schemes (Titouan Galopin)
* bug #48635 [HttpFoundation] Use relative timestamps with MemcachedSessionHandler (tvlooy)
* bug #47979 [Cache] Fix dealing with ext-redis' multi/exec returning a bool (João Nogueira)
* bug #48612 [Messenger] [Amqp] Added missing rpc_timeout option (lyrixx)
* bug #48233 [Serializer] Prevent `GetSetMethodNormalizer` from creating invalid magic method call (klaussilveira)
* bug #48628 [HttpFoundation] Fix dumping array cookies (nicolas-grekas)
* bug #48048 [WebProfilerBundle] Fix dump header not being displayed (HypeMC)
* bug #47836 [HttpClient] TraceableHttpClient: increase decorator's priority (adpeyre)
* bug #48259 [FrameworkBundle] Allow configuring `framework.exceptions` with a config builder (MatTheCat)
* bug #48314 [Mime] Fix MessagePart serialization (Amunak)
* bug #48331 [Yaml] fix dumping top-level tagged values (xabbuh)
* bug #48615 Fix getting the name of closures on PHP 8.1.11+ (nicolas-grekas)
* bug #48624 [ErrorHandler][HttpKernel] Fix reading the SYMFONY_IDE env var (nicolas-grekas)
* bug #48618 [ErrorHandler] [DebugClassLoader] Fix some new return types support (fancyweb)
* bug #48421 [HttpFoundation] IPv4-mapped IPv6 addresses incorrectly rejected (bonroyage)
* bug #48501 [RateLimiter] Add `int` to `Reservation::wait()` (DaRealFreak)
* bug #48359 [VarDumper] Ignore \Error in __debugInfo() (fancyweb)
* bug #48534 [FrameworkBundle] add `kernel.locale_aware` tag to `LocaleSwitcher` (kbond)
* bug #48482 [DependencyInjection] Revert "bug #48027 Don't autoconfigure tag when it's already set with attributes" (nicolas-grekas)
* bug #48346 [HttpKernel] In DateTimeValueResolver, convert previously defined date attribute to the expected class (GromNaN)
* bug #48335 [TwigBridge] Amend `MoneyType` twig to include a space (mogilvie)
* bug #48046 [WebProfilerBundle] Remove redundant code from logger template (HypeMC)
* bug #48292 [Security] [LoginLink] Throw InvalidLoginLinkException on missing parameter (MatTheCat)

* 6.1.8 (2022-11-28)

* bug #48333 [Yaml] parse unquoted digits in tag values as integers (xabbuh)
Expand Down
4 changes: 2 additions & 2 deletions src/Symfony/Component/HttpKernel/Kernel.php
Original file line number Diff line number Diff line change
Expand Up @@ -78,12 +78,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl
*/
private static array $freshCache = [];

public const VERSION = '6.1.9-DEV';
public const VERSION = '6.1.9';
public const VERSION_ID = 60109;
public const MAJOR_VERSION = 6;
public const MINOR_VERSION = 1;
public const RELEASE_VERSION = 9;
public const EXTRA_VERSION = 'DEV';
public const EXTRA_VERSION = '';

public const END_OF_MAINTENANCE = '01/2023';
public const END_OF_LIFE = '01/2023';
Expand Down