Skip to content

Release v4.1.0-BETA2 #27331

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
May 21, 2018
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
44 changes: 44 additions & 0 deletions CHANGELOG-4.1.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,50 @@ in 4.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/v4.1.0...v4.1.1

* 4.1.0-BETA2 (2018-05-21)

* bug #27312 Supress deprecation notices thrown when getting private servies from container in tests (arderyp)
* feature #27275 [Messenger] Allow to scope handlers per bus (ogizanagi, sroze)
* bug #27264 [Validator] Use strict type in URL validator (mimol91)
* bug #27267 [DependencyInjection] resolve array env vars (jamesthomasonjr)
* bug #26781 [Form] Fix precision of MoneyToLocalizedStringTransformer's divisions on transform() (syastrebov)
* bug #27270 [Routing] Fix adding name prefix to canonical route names (ismail1432)
* bug #27286 [Translation] Add Occitan plural rule (kylekatarnls)
* bug #27271 [DI] Allow defining bindings on ChildDefinition (nicolas-grekas)
* bug #27246 Disallow invalid characters in session.name (ostrolucky)
* feature #27230 [Messenger] Select alternatives on missing receiver arg or typo (yceruto)
* bug #27287 [PropertyInfo] fix resolving parent|self type hints (nicolas-grekas)
* bug #27281 [HttpKernel] Fix dealing with self/parent in ArgumentMetadataFactory (fabpot)
* bug #24805 [Security] Fix logout (MatTheCat)
* bug #27265 [DI] Shared services should not be inlined in non-shared ones (nicolas-grekas)
* bug #27141 [Process] Suppress warnings when open_basedir is non-empty (cbj4074)
* bug #27250 [Session] limiting :key for GET_LOCK to 64 chars (oleg-andreyev)
* feature #27128 [Messenger] Middleware factories support in config (ogizanagi)
* bug #27214 [HttpKernel] Fix services are no longer injected into __invoke controllers method (ogizanagi)
* bug #27237 [Debug] Fix populating error_get_last() for handled silent errors (nicolas-grekas)
* bug #27232 [Cache][Lock] Fix usages of error_get_last() (nicolas-grekas)
* bug #27236 [Filesystem] Fix usages of error_get_last() (nicolas-grekas)
* feature #27202 [Messenger] Improve the profiler panel (ogizanagi)
* bug #27191 [DI] Display previous error messages when throwing unused bindings (nicolas-grekas)
* bug #27231 [FrameworkBundle] Fix cache:clear on vagrant (nicolas-grekas)
* bug #27222 [WebProfilerBundle][Cache] Fix misses calculation when calling getItems (fsevestre)
* bug #27227 [HttpKernel] Handle NoConfigurationException "onKernelException()" (nicolas-grekas)
* feature #27034 [Messenger][DX] Uses custom method names for handlers (sroze)
* bug #27228 [Messenger] Remove autoconfiguration for Sender/ReceiverInterface (kbond)
* bug #27229 [Messenger] Rename tag attribute "name" by "alias" (yceruto)
* bug #27224 [Messenger] Make sure default receiver name is set before command configuration (yceruto)
* feature #27225 [Messenger] Autoconfiguring TransportFactoryInterface classes (yceruto)
* bug #27220 [Messenger] Fix new AMQP Transport test with Envelope & fix contract (ogizanagi)
* bug #27184 [Messenger] Fix return senders based on the message parents/interfaces (yceruto)
* feature #27182 [Messenger] Re-introduce wrapped message configuration (with fix) (sroze, ogizanagi)
* bug #27209 [Workflow] add is deprecated since Symfony 4.1. Use addWorkflow() instead (xkobal)
* feature #26803 [Messenger] Add debug:messenger CLI command (ro0NL, sroze)
* bug #27189 [Profiler] Fix dump makes toolbar disappear (ogizanagi)
* bug #27199 [Messenger] Fix default bus name (ogizanagi)
* bug #27198 [Messenger] Fix the transport factory after moving it (sroze)
* bug #27197 [Messenger] Fix AMQP Transport factory & TransportFactoryInterface (ogizanagi)
* bug #27196 [Messenger] Fix AMQP Transport (yceruto)

* 4.1.0-BETA1 (2018-05-07)

* feature #26945 [Messenger] Support configuring messages when dispatching (ogizanagi)
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 @@ -63,12 +63,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl
private $requestStackSize = 0;
private $resetServices = false;

const VERSION = '4.1.0-DEV';
const VERSION = '4.1.0-BETA2';
const VERSION_ID = 40100;
const MAJOR_VERSION = 4;
const MINOR_VERSION = 1;
const RELEASE_VERSION = 0;
const EXTRA_VERSION = 'DEV';
const EXTRA_VERSION = 'BETA2';

const END_OF_MAINTENANCE = '01/2019';
const END_OF_LIFE = '07/2019';
Expand Down