Skip to content

Release v2.7.43 #26414

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
Mar 5, 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
4 changes: 4 additions & 0 deletions CHANGELOG-2.7.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ in 2.7 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.7.0...v2.7.1

* 2.7.43 (2018-03-05)

* bug #26368 [WebProfilerBundle] Fix Debug toolbar breaks app (xkobal)

* 2.7.42 (2018-02-28)

* bug #26338 [Debug] Keep previous errors of Error instances (Philipp91)
Expand Down
14 changes: 8 additions & 6 deletions CONTRIBUTORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,11 @@ Symfony is the result of the work of many people who made the code better
- Diego Saint Esteben (dosten)
- Alexandre Salomé (alexandresalome)
- William Durand (couac)
- Hamza Amrouche (simperfit)
- ornicar
- Francis Besset (francisbesset)
- Iltar van der Berg (kjarli)
- stealth35 ‏ (stealth35)
- Hamza Amrouche (simperfit)
- Alexander Mols (asm89)
- Yonel Ceruto (yonelceruto)
- Bulat Shakirzyanov (avalanche123)
Expand All @@ -57,15 +57,16 @@ Symfony is the result of the work of many people who made the code better
- Henrik Bjørnskov (henrikbjorn)
- Miha Vrhovnik
- Diego Saint Esteben (dii3g0)
- Dany Maillard (maidmaid)
- Pierre du Plessis (pierredup)
- Dany Maillard (maidmaid)
- Konstantin Kudryashov (everzet)
- Kevin Bond (kbond)
- Bilal Amarni (bamarni)
- Alexander M. Turek (derrabus)
- Jérémy DERUSSÉ (jderusse)
- Florin Patan (florinpatan)
- Samuel ROZE (sroze)
- Tobias Nyholm (tobias)
- Gábor Egyed (1ed)
- Michel Weimerskirch (mweimerskirch)
- Andrej Hudec (pulzarraider)
Expand All @@ -75,7 +76,6 @@ Symfony is the result of the work of many people who made the code better
- Titouan Galopin (tgalopin)
- Konstantin Myakshin (koc)
- Christian Raue
- Tobias Nyholm (tobias)
- Arnout Boks (aboks)
- Deni
- Henrik Westphal (snc)
Expand Down Expand Up @@ -200,6 +200,7 @@ Symfony is the result of the work of many people who made the code better
- Matthieu Bontemps (mbontemps)
- apetitpa
- Pierre Minnieur (pminnieur)
- Jannik Zschiesche (apfelbox)
- fivestar
- Dominique Bongiraud
- Jeremy Livingston (jeremylivingston)
Expand All @@ -224,7 +225,6 @@ Symfony is the result of the work of many people who made the code better
- Marcel Beerta (mazen)
- gadelat (gadelat)
- Loïc Faugeron
- Jannik Zschiesche (apfelbox)
- Hidde Wieringa (hiddewie)
- Marco Pivetta (ocramius)
- Rob Frawley 2nd (robfrawley)
Expand Down Expand Up @@ -697,6 +697,7 @@ Symfony is the result of the work of many people who made the code better
- Nykopol (nykopol)
- Jordan Deitch
- Casper Valdemar Poulsen
- Remon van de Kamp
- Josiah (josiah)
- Joschi Kuphal
- John Bohn (jbohn)
Expand Down Expand Up @@ -736,6 +737,7 @@ Symfony is the result of the work of many people who made the code better
- Adrien Lucas (adrienlucas)
- Zhuravlev Alexander (scif)
- James Michael DuPont
- Xavier HAUSHERR
- Tom Klingenberg
- Christopher Hall (mythmakr)
- Patrick Dawkins (pjcdawkins)
Expand Down Expand Up @@ -1102,7 +1104,6 @@ Symfony is the result of the work of many people who made the code better
- Pierre Tachoire (krichprollsch)
- Marc J. Schmidt (marcjs)
- Marco Jantke
- Remon van de Kamp
- Saem Ghani
- Clément LEFEBVRE
- Conrad Kleinespel
Expand Down Expand Up @@ -1225,7 +1226,6 @@ Symfony is the result of the work of many people who made the code better
- Sebastian Ionescu
- Thomas Ploch
- Simon Neidhold
- Xavier HAUSHERR
- Valentin VALCIU
- Jeremiah VALERIE
- Kevin Dew
Expand Down Expand Up @@ -1573,6 +1573,7 @@ Symfony is the result of the work of many people who made the code better
- Vladimir Chernyshev (volch)
- Yorkie Chadwick (yorkie76)
- GuillaumeVerdon
- Philipp Keck
- Ondrej Mirtes
- akimsko
- Youpie
Expand Down Expand Up @@ -1630,6 +1631,7 @@ Symfony is the result of the work of many people who made the code better
- Jordan Hoff
- znerol
- Christian Eikermann
- Kai Eichinger
- Antonio Angelino
- Matt Fields
- Niklas Keller
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.7.43-DEV';
const VERSION = '2.7.43';
const VERSION_ID = 20743;
const MAJOR_VERSION = 2;
const MINOR_VERSION = 7;
const RELEASE_VERSION = 43;
const EXTRA_VERSION = 'DEV';
const EXTRA_VERSION = '';

const END_OF_MAINTENANCE = '05/2018';
const END_OF_LIFE = '05/2019';
Expand Down