Skip to content

Release v2.3.41 #18738

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 3 commits into from
May 9, 2016
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
5 changes: 5 additions & 0 deletions CHANGELOG-2.3.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ in 2.3 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/v2.3.0...v2.3.1

* 2.3.41 (2016-05-09)

* security #18733 limited the maximum length of a submitted username (fabpot)
* bug #18709 [DependencyInjection] top-level anonymous services must be public (xabbuh)

* 2.3.40 (2016-04-29)

* bug #18246 [DependencyInjection] fix ambiguous services schema (backbone87)
Expand Down
10 changes: 6 additions & 4 deletions CONTRIBUTORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@ Symfony is the result of the work of many people who made the code better
- Alexandre Salomé (alexandresalome)
- William Durand (couac)
- ornicar
- Jules Pietri (heah)
- stealth35 ‏ (stealth35)
- Alexander Mols (asm89)
- Jules Pietri (heah)
- Francis Besset (francisbesset)
- Bulat Shakirzyanov (avalanche123)
- Saša Stamenković (umpirsky)
Expand Down Expand Up @@ -129,6 +129,7 @@ Symfony is the result of the work of many people who made the code better
- Arnaud Kleinpeter (nanocom)
- Joel Wurtz (brouznouf)
- Philipp Wahala (hifi)
- Titouan Galopin (tgalopin)
- Richard Shank (iampersistent)
- Thomas Rabaix (rande)
- Vincent AUBERT (vincent)
Expand All @@ -141,7 +142,6 @@ Symfony is the result of the work of many people who made the code better
- Michał Pipa (michal.pipa)
- Amal Raghav (kertz)
- Jonathan Ingram (jonathaningram)
- Titouan Galopin (tgalopin)
- Artur Kotyrba
- Rouven Weßling (realityking)
- Warnar Boekkooi (boekkooi)
Expand Down Expand Up @@ -240,6 +240,7 @@ Symfony is the result of the work of many people who made the code better
- Michael Holm (hollo)
- Marc Weistroff (futurecat)
- Hidde Wieringa (hiddewie)
- Daniel Espendiller
- Chris Smith (cs278)
- Florian Klein (docteurklein)
- Manuel Kiessling (manuelkiessling)
Expand Down Expand Up @@ -436,6 +437,7 @@ Symfony is the result of the work of many people who made the code better
- Benjamin Leveque (benji07)
- Nate (frickenate)
- jhonnyL
- Jhonny Lidfors (jhonne)
- sasezaki
- Dawid Pakuła (zulusx)
- Florian Rey (nervo)
Expand Down Expand Up @@ -611,7 +613,6 @@ Symfony is the result of the work of many people who made the code better
- Adrien Lucas (adrienlucas)
- James Michael DuPont
- Tom Klingenberg
- Jhonny Lidfors (jhonne)
- Christopher Hall (mythmakr)
- Paul Kamer (pkamer)
- Rafał Wrzeszcz (rafalwrzeszcz)
Expand Down Expand Up @@ -904,7 +905,6 @@ Symfony is the result of the work of many people who made the code better
- Albin Kerouaton
- Sébastien HOUZÉ
- Jingyu Wang
- Daniel Espendiller
- steveYeah
- Samy Dindane (dinduks)
- Keri Henare (kerihenare)
Expand Down Expand Up @@ -945,6 +945,7 @@ Symfony is the result of the work of many people who made the code better
- Tadcka
- Beth Binkovitz
- Romain Geissler
- Oliver Hoff
- Tomaz Ahlin
- Benjamin Cremer (bcremer)
- Marcus Stöhr (dafish)
Expand Down Expand Up @@ -1302,6 +1303,7 @@ Symfony is the result of the work of many people who made the code better
- znerol
- Christian Eikermann
- Antonio Angelino
- Shawn Iwinski
- Vladimir Sazhin
- lol768
- jamogon
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 @@ -58,12 +58,12 @@ abstract class Kernel implements KernelInterface, TerminableInterface
protected $startTime;
protected $loadClassCache;

const VERSION = '2.3.41-DEV';
const VERSION = '2.3.41';
const VERSION_ID = 20341;
const MAJOR_VERSION = 2;
const MINOR_VERSION = 3;
const RELEASE_VERSION = 41;
const EXTRA_VERSION = 'DEV';
const EXTRA_VERSION = '';

/**
* Constructor.
Expand Down