Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit feff411

Browse files
committed
Merge branch '2.3'
* 2.3: Clear lazy loading initializer after the service is successfully initialized [FrameworkBundle] added support for double-quoted strings in the extractor (closes #8797) [SecurityBundle] Move format-dependent tests from SecurityExtensionTest bumped Symfony version to 2.3.5-DEV updated VERSION for 2.3.4 updated CHANGELOG for 2.3.4 bumped Symfony version to 2.2.7 updated VERSION for 2.2.6 update CONTRIBUTORS for 2.2.6 updated CHANGELOG for 2.2.6 clearToken exception is thrown at wrong place. fix typo in test skipped message [Form] Fixed Form::all() signature for PHP 5.3.3 [Form] Fixed Form::all() signature for PHP 5.3.3 [Locale] Fixed: Locale::setDefault() throws no exception when "en" is passed [Locale] Fixed: StubLocale::setDefault() throws no exception when "en" is passed [Translation] Grammar fix [Yaml] fixed embedded folded string parsing [Validator] fixed Boolean handling in XML constraint mappings (closes #5603) [Translation] Fixed regression: When only one rule is passed to transChoice(), this rule should be used Conflicts: src/Symfony/Component/HttpKernel/Kernel.php
2 parents 5994f69 + c0a256d commit feff411

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+1416
-522
lines changed

CHANGELOG-2.2.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,41 @@ in 2.2 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/v2.2.0...v2.2.1
99

10+
* 2.2.6 (2013-08-26)
11+
12+
* f936b41: clearToken exception is thrown at wrong place.
13+
* d0faf55: [Locale] Fixed: StubLocale::setDefault() throws no exception when "en" is passed
14+
* 566d79c: [Yaml] fixed embedded folded string parsing
15+
* 0951b8d: [Translation] Fixed regression: When only one rule is passed to transChoice(), this rule should be used
16+
* 4563f1b: [Yaml] Fix comment containing a colon on a scalar line being parsed as a hash.
17+
* 7e87eb1: fixed request format when forwarding a request
18+
* ccaaedf: [Form] PropertyPathMapper::mapDataToForms() *always* calls setData() on every child to ensure that all *_DATA events were fired when the initialization phase is over (except for virtual forms)
19+
* 00bc270: [Form] Fixed: submit() reacts to dynamic modifications of the form children
20+
* 05fdb12: Fixed issue #6932 - Inconsistent locale handling in subrequests
21+
* b3c3159: fixed locale of sub-requests when explicitely set by the developer (refs #8821)
22+
* b72bc0b: [Locale] fixed build-data exit code in case of an error
23+
* 9bb7a3d: fixed request format of sub-requests when explicitely set by the developer (closes #8787)
24+
* fa35597: Sets _format attribute only if it wasn't set previously by the user.
25+
* f946108: fixed the format of the request used to render an exception
26+
* 51022c3: Fix typo in the check_path validator
27+
* 5f7219e: added a missing use statement (closes #8808)
28+
* 262879d: fix for Process:isSuccessful()
29+
* 0723c10: [Process] Use a consistent way to reset data of the process latest run
30+
* 85a9c9d: [HttpFoundation] Fixed removing a nonexisting namespaced attribute.
31+
* 191d320: [Validation] Fixed IdentityTranslator to pass correct Locale to MessageSelector
32+
* c6ecd83: SwiftMailerHandler in Monolog bridge now able to react to kernel.terminate event
33+
* 99adcf1: {HttpFoundation] [Session] fixed session compatibility with memcached/redis session storage
34+
* ab9a96b: Fixes for hasParameterOption and getParameterOption methods of ArgvInput
35+
* dbd0855: Added sleep() workaround for windows php rename bug
36+
* fa769a2: [Process] Add more precision to Process::stop timeout
37+
* 3ef517b: [Process] Fix #8739
38+
* 18896d5a: [Validator] fixed the wrong isAbstract() check against the class (fixed #8589)
39+
* e8e76ec: [TwigBridge] Prevent code extension to display warning
40+
* 1a73b44: added missing support for the new output API in PHP 5.4+
41+
* e0c7d3d: Fixed bug introduced in #8675
42+
* 0b965fb: made the filesystem loader compatible with Twig 2.0
43+
* 322f880: replaced deprecated Twig features
44+
1045
* 2.2.5 (2013-08-07)
1146

1247
* c35cc5b: added trusted hosts check

CHANGELOG-2.3.md

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,55 @@ in 2.3 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/v2.3.0...v2.3.1
99

10+
* 2.3.4 (2013-08-27)
11+
12+
* f936b41: clearToken exception is thrown at wrong place.
13+
* ea480bd: [Form] Fixed Form::all() signature for PHP 5.3.3
14+
* e1f40f2: [Locale] Fixed: Locale::setDefault() throws no exception when "en" is passed
15+
* d0faf55: [Locale] Fixed: StubLocale::setDefault() throws no exception when "en" is passed
16+
* 566d79c: [Yaml] fixed embedded folded string parsing
17+
* 33b0a17: [Validator] fixed Boolean handling in XML constraint mappings (closes #5603)
18+
* 0951b8d: [Translation] Fixed regression: When only one rule is passed to transChoice(), this rule should be used
19+
* 4563f1b: [Yaml] Fix comment containing a colon on a scalar line being parsed as a hash.
20+
* 7e87eb1: fixed request format when forwarding a request
21+
* 07d14e5: [Form] Removed exception in Button::setData(): setData() is now always called for all elements in the form tree during the initialization of the tree
22+
* ccaaedf: [Form] PropertyPathMapper::mapDataToForms() *always* calls setData() on every child to ensure that all *_DATA events were fired when the initialization phase is over (except for virtual forms)
23+
* 00bc270: [Form] Fixed: submit() reacts to dynamic modifications of the form children
24+
* c4636e1: added a functional test for locale handling in sub-requests
25+
* 05fdb12: Fixed issue #6932 - Inconsistent locale handling in subrequests
26+
* b3c3159: fixed locale of sub-requests when explicitely set by the developer (refs #8821)
27+
* 9bb7a3d: fixed request format of sub-requests when explicitely set by the developer (closes #8787)
28+
* fa35597: Sets _format attribute only if it wasn't set previously by the user.
29+
* f946108: fixed the format of the request used to render an exception
30+
* 51022c3: Fix typo in the check_path validator
31+
* 5f7219e: added a missing use statement (closes #8808)
32+
* 262879d: fix for Process:isSuccessful()
33+
* 0723c10: [Process] Use a consistent way to reset data of the process latest run
34+
* 85a9c9d: [HttpFoundation] Fixed removing a nonexisting namespaced attribute.
35+
* 191d320: [Validation] Fixed IdentityTranslator to pass correct Locale to MessageSelector
36+
* c6ecd83: SwiftMailerHandler in Monolog bridge now able to react to kernel.terminate event
37+
* 99adcf1: {HttpFoundation] [Session] fixed session compatibility with memcached/redis session storage
38+
* ab9a96b: Fixes for hasParameterOption and getParameterOption methods of ArgvInput
39+
* dbd0855: Added sleep() workaround for windows php rename bug
40+
* c342715: [Form] Fixed: Added "validation_groups" option to submit button
41+
* fa01e6b: [Process] Fix for #8754 (Timed-out processes are successful)
42+
* 909fab6: [Process] Fix #8742 : Signal-terminated processes are not successful
43+
* fa769a2: [Process] Add more precision to Process::stop timeout
44+
* 3ef517b: [Process] Fix #8739
45+
* 572ba68: [TwigBridge] removed superflous ; when rendering form_enctype() (closes #8660)
46+
* 18896d5a: [Validator] fixed the wrong isAbstract() check against the class (fixed #8589)
47+
* e8e76ec: [TwigBridge] Prevent code extension to display warning
48+
* 96aec0f: Fix internal sub-request creation
49+
* 6ed0fdf: [Form] Moved auto_initialize option to the BaseType
50+
* e47657d: Make sure ContextErrorException is loaded during compile time errors
51+
* 98f6969: Fix empty process argument escaping on Windows
52+
* 1a73b44: added missing support for the new output API in PHP 5.4+
53+
* e0c7d3d: Fixed bug introduced in #8675
54+
* 0b965fb: made the filesystem loader compatible with Twig 2.0
55+
* 8fa0453: [Intl] Updated stubs to reflect ICU 51.2
56+
* 322f880: replaced deprecated Twig features
57+
* 48338fc: Ignore null value in comparison validators
58+
1059
* 2.3.3 (2013-08-07)
1160

1261
* c35cc5b: added trusted hosts check

CONTRIBUTORS.md

Lines changed: 35 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,11 @@ Symfony2 is the result of the work of many people who made the code better
2323
- Benjamin Eberlei (beberlei)
2424
- Jakub Zalas (jakubzalas)
2525
- Hugo Hamon (hhamon)
26-
- Eriksen Costa (eriksencosta)
2726
- Martin Hasoň (hason)
28-
- Jonathan Wage (jwage)
27+
- Eriksen Costa (eriksencosta)
2928
- William Durand (couac)
29+
- Jonathan Wage (jwage)
30+
- Romain Neutron (romain)
3031
- Alexandre Salomé (alexandresalome)
3132
- ornicar
3233
- stealth35 ‏ (stealth35)
@@ -36,21 +37,20 @@ Symfony2 is the result of the work of many people who made the code better
3637
- Henrik Bjørnskov (henrikbjorn)
3738
- Miha Vrhovnik
3839
- Bilal Amarni (bamarni)
39-
- Romain Neutron (romain)
4040
- Florin Patan (florinpatan)
4141
- Konstantin Kudryashov (everzet)
4242
- Saša Stamenković (umpirsky)
4343
- Arnaud Le Blanc (arnaud-lb)
4444
- Eric Clemmons (ericclemmons)
4545
- Dariusz Górecki (canni)
4646
- Henrik Westphal (snc)
47+
- Grégoire Pineau (lyrixx)
4748
- Deni
4849
- Marc Weistroff (futurecat)
4950
- Jordan Alliot (jalliot)
5051
- Arnout Boks (aboks)
5152
- Hidenori Goto (hidenorigoto)
5253
- Fran Moreno (franmomu)
53-
- Grégoire Pineau (lyrixx)
5454
- Andrej Hudec (pulzarraider)
5555
- Lee McDermott
5656
- Brandon Turner
@@ -69,8 +69,8 @@ Symfony2 is the result of the work of many people who made the code better
6969
- lenar
7070
- Fabien Pennequin (fabienpennequin)
7171
- excelwebzone
72-
- woodspire
7372
- Douglas Greenshields (shieldo)
73+
- woodspire
7474
- Mario A. Alvarez Garcia (nomack84)
7575
- Kevin Bond (kbond)
7676
- Richard Miller (mr_r_miller)
@@ -91,27 +91,27 @@ Symfony2 is the result of the work of many people who made the code better
9191
- Larry Garfield (crell)
9292
- Arnaud Kleinpeter (nanocom)
9393
- Jonathan Ingram (jonathaningram)
94+
- Wouter De Jong (wouterj)
9495
- Sebastiaan Stok (sstok)
96+
- Helmer Aaviksoo
9597
- Javier Eguiluz (javier.eguiluz)
9698
- Matthieu Ouellette-Vachon (maoueh)
9799
- Amal Raghav (kertz)
98100
- Artur Kotyrba
99101
- Pablo Godel (pgodel)
100-
- Helmer Aaviksoo
102+
- Dmitrii Chekaliuk (lazyhammer)
101103
- Clément JOBEILI (dator)
102104
- Hiromi Hishida (77web)
103105
- Julien Brochet (mewt)
104106
- Rafael Dohms (rdohms)
105-
- Wouter De Jong (wouterj)
107+
- Dennis Benkert (denderello)
106108
- Benjamin Dulau (dbenjamin)
107109
- Andreas Hucks (meandmymonkey)
108110
- Noel Guilbert (noel)
109-
- Dmitrii Chekaliuk (lazyhammer)
110111
- Dorian Villet (gnutix)
111112
- Guilherme Blanco (guilhermeblanco)
112113
- Martin Schuhfuß (usefulthink)
113114
- Thomas Rabaix (rande)
114-
- Dennis Benkert (denderello)
115115
- Marcel Beerta (mazen)
116116
- Albert Casademont (acasademont)
117117
- Matthieu Bontemps (mbontemps)
@@ -194,9 +194,12 @@ Symfony2 is the result of the work of many people who made the code better
194194
- Peter Kruithof (pkruithof)
195195
- Kristen Gilden (kgilden)
196196
- hossein zolfi (ocean)
197+
- Philipp Kräutli (pkraeutli)
197198
- Christian Flothmann (xabbuh)
198199
- Greg Thornton (xdissent)
200+
- Atsuhiro KUBO (iteman)
199201
- Lars Strojny
202+
- Loïc Chardonnet (gnusat)
200203
- Costin Bereveanu (schniper)
201204
- Markus Lanthaler (lanthaler)
202205
- Jérôme Vieilledent (lolautruche)
@@ -262,6 +265,7 @@ Symfony2 is the result of the work of many people who made the code better
262265
- mcben
263266
- Maks Slesarenko
264267
- Vicent Soria Durá (vicentgodella)
268+
- Andrew Udvare
265269
- alexpods
266270
- Erik Trapman (eriktrapman)
267271
- De Cock Xavier (xdecock)
@@ -274,7 +278,6 @@ Symfony2 is the result of the work of many people who made the code better
274278
- Luis Cordova (cordoval)
275279
- Michaël Perrin (michael.perrin)
276280
- sasezaki
277-
- Loïc Chardonnet (gnusat)
278281
- Xavier HAUSHERR
279282
- Steven Surowiec
280283
- Marek Kalnik (marekkalnik)
@@ -339,13 +342,14 @@ Symfony2 is the result of the work of many people who made the code better
339342
- Johannes Klauss (cloppy)
340343
- fzerorubigd
341344
- develop
342-
- Atsuhiro KUBO (iteman)
345+
- Tomasz Kowalczyk (thunderer)
343346
- Samy Dindane (dinduks)
344347
- yclian
345348
- Pascal Helfenstein
346349
- Matt Daum (daum)
347350
- Baldur Rensch
348351
- Alex Xandra Albert Sim
352+
- Gabor Toth (tgabi333)
349353
- Yuen-Chi Lian
350354
- Joshua Nye
351355
- avorobiev
@@ -363,8 +367,8 @@ Symfony2 is the result of the work of many people who made the code better
363367
- Christian Soronellas Vallespí (theunic)
364368
- Benjamin Grandfond (benjamin)
365369
- Degory Valentine
370+
- hacfi (hifi)
366371
- Krzysiek Łabuś
367-
- Andrew Udvare
368372
- Xavier Lacot (xavier)
369373
- Olivier Maisonneuve
370374
- Iwan van Staveren (istaveren)
@@ -381,7 +385,6 @@ Symfony2 is the result of the work of many people who made the code better
381385
- Reen Lokum
382386
- Pierre Vanliefland (pvanliefland)
383387
- Martin Parsiegla (spea)
384-
- Philipp Kräutli (pkraeutli)
385388
- Stefano Sala (stefano.sala)
386389
- frost-nzcr4
387390
- Abhoryo
@@ -398,6 +401,7 @@ Symfony2 is the result of the work of many people who made the code better
398401
- Gustavo Falco (gfalco)
399402
- Matt Robinson (inanimatt)
400403
- Bob den Otter (bopp)
404+
- David Marín Carreño (davefx)
401405
- Jörn Lang (j.lang)
402406
- julien pauli (jpauli)
403407
- mwsaz
@@ -408,6 +412,7 @@ Symfony2 is the result of the work of many people who made the code better
408412
- Derek ROTH
409413
- Shin Ohno (ganchiku)
410414
- Drew Butler (nodrew)
415+
- Christian Morgan
411416
- Alexander Miehe (engerim)
412417
- Titouan Galopin (tgalopin)
413418
- Don Pinkster
@@ -473,6 +478,7 @@ Symfony2 is the result of the work of many people who made the code better
473478
- Dan Finnie
474479
- Martijn Evers
475480
- Benjamin Paap (benjaminpaap)
481+
- Christian
476482
- Sergii Smertin (nfx)
477483
- Eddie Jaoude
478484
- Nerijus Arlauskas
@@ -485,7 +491,6 @@ Symfony2 is the result of the work of many people who made the code better
485491
- matteo giachino
486492
- Daniel Mecke (daniel_mecke)
487493
- Alex Demchenko (pilot)
488-
- Tomasz Kowalczyk (thunderer)
489494
- Vincent AUBERT (vincent)
490495
- Benoit Garret
491496
- DerManoMann
@@ -501,6 +506,7 @@ Symfony2 is the result of the work of many people who made the code better
501506
- Neil Katin
502507
- peter
503508
- Gustavo Adrian
509+
- Nikita Konstantinov
504510
- Brooks Boyd
505511
- Roger Webb
506512
- Nicolas Fabre (nfabre)
@@ -525,29 +531,32 @@ Symfony2 is the result of the work of many people who made the code better
525531
- Sebastian Göttschkes (sgoettschkes)
526532
- erikaheidi
527533
- Pierre Tachoire
534+
- marcj
528535
- Ludek Stepan
529536
- Balázs Benyó (duplabe)
530537
- Marc Morera (mmoreram)
538+
- Daniel Wehner
531539
- Saem Ghani
532540
- Sebastian Utz
533541
- Keri Henare (kerihenare)
534542
- Cédric Lahouste (rapotor)
535543
- Anthony Ferrara
536544
- Janusz Jablonski
545+
- ShiraNai7
537546
- George Giannoulopoulos
538547
- Chris Wilkinson (thewilkybarkid)
539548
- Ilya Biryukov
540549
- Jason Desrosiers
541550
- m.chwedziak
542551
- Lance McNearney
543552
- Alberto Pirovano (geezmo)
544-
- Philipp W (hifi)
545-
- Gabor Toth (tgabi333)
546553
- Martin Pärtel
547554
- Xavier Briand (xavierbriand)
548555
- Evan Kaufman
549556
- Romain Geissler
557+
- Charles Sarrazin (csarrazi)
550558
- Marcus Stöhr (dafish)
559+
- Emmanuel Vella (emmanuel.vella)
551560
- Carsten Nielsen (phreaknerd)
552561
- Jay Severson
553562
- René Kerner
@@ -580,6 +589,7 @@ Symfony2 is the result of the work of many people who made the code better
580589
- jskvara
581590
- Mephistofeles
582591
- Hoffmann András
592+
- Olivier
583593
- pscheit
584594
- Ramon Kleiss (akathos)
585595
- Nicolas Badey (nico-b)
@@ -602,6 +612,7 @@ Symfony2 is the result of the work of many people who made the code better
602612
- Andrey Esaulov (andremaha)
603613
- hicham ELGUAROUANI (hiiimoo)
604614
- Paul Seiffert (seiffert)
615+
- Vasily (sirian)
605616
- Stefan Koopmanschap (skoop)
606617
- Ivan Kurnosov
607618
- stloyd
@@ -672,7 +683,6 @@ Symfony2 is the result of the work of many people who made the code better
672683
- cyrillej
673684
- Alex Pods
674685
- timaschew
675-
- Christian Morgan
676686
- Ian Phillips
677687
- Haritz
678688
- Grummfy
@@ -696,7 +706,6 @@ Symfony2 is the result of the work of many people who made the code better
696706
- Rafał
697707
- Masao Maeda (brtriver)
698708
- Dave Marshall (davedevelopment)
699-
- David Marín Carreño (davefx)
700709
- Denis Klementjev (dklementjev)
701710
- Kévin Dunglas (dunglas)
702711
- Vincent Composieux (eko)
@@ -737,11 +746,14 @@ Symfony2 is the result of the work of many people who made the code better
737746
- Christian Eikermann
738747
- Antonio Angelino
739748
- Vladimir Sazhin
749+
- Jáchym Toušek
740750
- Vyacheslav Slinko
741751
- Johannes
742752
- Jörg Rühl
743753
- patrick-mcdougle
754+
- Daniel Basten
744755
- Giacomo Gallico
756+
- Steve Müller
745757
- andreabreu98
746758
- Michael Schneider
747759
- Jerome Tamarelle
@@ -787,6 +799,7 @@ Symfony2 is the result of the work of many people who made the code better
787799
- Besnik Br
788800
- sualko
789801
- Nicolas Roudaire
802+
- Lee Rowlands
790803
- Alex Olmos (alexolmos)
791804
- Juan Ases García (ases)
792805
- Bernd Matzner (bmatzner)
@@ -802,10 +815,12 @@ Symfony2 is the result of the work of many people who made the code better
802815
- Yohan Giarelli (frequence-web)
803816
- Massimiliano Arione (garak)
804817
- Vladislav Krupenkin (ideea)
818+
- Jaik Dean (jaikdean)
805819
- joris de wit (jdewit)
806820
- Jérémy CROMBEZ (jeremy)
807821
- Jorge Maiden (jorgemaiden)
808822
- Justin Rainbow (jrainbow)
823+
- JuntaTom (juntatom)
809824
- Sébastien Armand (khepin)
810825
- Krzysztof Menżyk (krymen)
811826
- Martin Ledgard (le6o)
@@ -819,8 +834,10 @@ Symfony2 is the result of the work of many people who made the code better
819834
- Rich Sage (richsage)
820835
- Ruud Kamphuis (ruudk)
821836
- Sarah Khalil (saro0h)
837+
- scourgen hung (scourgen)
822838
- Sebastian Busch (sebu)
823839
- Andrea Giuliano (shark)
840+
- Julien Sanchez (sumbobyboys)
824841
- Markus Tacker (tacker)
825842
- Tyler Stroud (tystr)
826843
- Víctor Mateo (victormateo)

0 commit comments

Comments
 (0)