8000 Merge branch '2.6' into 2.7 · symfony/symfony@daf4a03 · GitHub
[go: up one dir, main page]

Skip to content

Commit daf4a03

Browse files
committed
Merge branch '2.6' into 2.7
* 2.6: (21 commits) bumped Symfony version to 2.6.8 updated VERSION for 2.6.7 updated CHANGELOG for 2.6.7 bumped Symfony version to 2.3.29 updated VERSION for 2.3.28 update CONTRIBUTORS for 2.3.28 updated CHANGELOG for 2.3.28 [Debug] Fixed ClassNotFoundFatalErrorHandlerTest [SecurityBundle] use access decision constants in config [SecurityBundle] use session auth constants in config PhpDoc fix in AbstractRememberMeServices [Filesystem] Simplified an if statement [SecurityBundle] Use Enum Nodes Instead Of Scalar [Debug 2.3] Fix test for PHP7 [HttpKernel] Check if "symfony/proxy-manager-bridge" package is installed [Translation] simplify getMessages. [Framework][Translation] added test for debug command. Run tests on hhvm instead of hhvm-nightly Use HTTPS in README and some other fixes add more entropy to generated classnames ... Conflicts: .travis.yml src/Symfony/Component/HttpKernel/Kernel.php
2 parents e60f715 + c7bb672 commit daf4a03

File tree

21 files changed

+457
-101
lines changed

21 files changed

+457
-101
lines changed

.travis.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ matrix:
1111
- php: 5.6
1212
env: deps=high
1313
- php: nightly
14-
- php: hhvm-nightly
14+
- php: hhvm
1515
allow_failures:
1616
- php: nightly
17-
- php: hhvm-nightly
17+
- php: hhvm
1818
fast_finish: true
1919

2020
services: mongodb
@@ -27,12 +27,12 @@ env:
2727
before_install:
2828
- travis_retry sudo apt-get install parallel
2929
- composer self-update
30-
- if [[ "$TRAVIS_PHP_VERSION" != *"nightly" ]]; then phpenv config-rm xdebug.ini; fi;
31-
- if [[ "$TRAVIS_PHP_VERSION" != *"nightly" ]]; then echo "extension = mongo.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini; fi;
32-
- if [[ "$TRAVIS_PHP_VERSION" != *"nightly" ]] && [ $(php -r "echo PHP_MINOR_VERSION;") -le 4 ]; then echo "extension = apc.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini; fi;
33-
- if [[ "$TRAVIS_PHP_VERSION" != *"nightly" ]]; then (pecl install -f memcached-2.1.0 && echo "extension = memcache.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini) || echo "Let's continue without memcache extension"; fi;
34-
- if [[ "$TRAVIS_PHP_VERSION" != *"nightly" ]]; then (cd src/Symfony/Component/Debug/Resources/ext && phpize && ./configure && make && echo "extension = $(pwd)/modules/symfony_debug.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini); fi;
35-
- if [[ "$TRAVIS_PHP_VERSION" != *"nightly" ]]; then php -i; fi;
30+
- if [[ "$TRAVIS_PHP_VERSION" != "nightly" ]]; then phpenv config-rm xdebug.ini; fi;
31+
- if [[ "$TRAVIS_PHP_VERSION" != "nightly" ]]; then echo "extension = mongo.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini; fi;
32+
- if [[ "$TRAVIS_PHP_VERSION" != "nightly" ]] && [ $(php -r "echo PHP_MINOR_VERSION;") -le 4 ]; then echo "extension = apc.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini; fi;
33+
- if [[ "$TRAVIS_PHP_VERSION" != "nightly" ]]; then (pecl install -f memcached-2.1.0 && echo "extension = memcache.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini) || echo "Let's continue without memcache extension"; fi;
34+
- if [[ "$TRAVIS_PHP_VERSION" != "nightly" ]]; then (cd src/Symfony/Component/Debug/Resources/ext && phpize && ./configure && make && echo "extension = $(pwd)/modules/symfony_debug.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini); fi;
35+
- if [[ "$TRAVIS_PHP_VERSION" != "nightly" ]]; then php -i; fi;
3636
- sudo locale-gen fr_FR.UTF-8 && sudo update-locale
3737
# Set the COMPOSER_ROOT_VERSION to the right version according to the branch being built
3838
- if [ "$TRAVIS_BRANCH" = "master" ]; then export COMPOSER_ROOT_VERSION=dev-master; else export COMPOSER_ROOT_VERSION="$TRAVIS_BRANCH".x-dev; fi;

CHANGELOG-2.3.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,25 @@ 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.28 (2015-05-10)
11+
12+
* bug #14266 [HttpKernel] Check if "symfony/proxy-manager-bridge" package is installed (hason)
13+
* bug #14501 [ProxyBridge] Fix proxy classnames generation (xphere)
14+
* bug #14498 [FrameworkBundle] Added missing log in server:run command (lyrixx)
15+
* bug #14484 [SecurityBundle][WebProfiler] check authenticated user by tokenClass instead of username. (aitboudad)
16+
* bug #14497 [HttpFoundation] Allow curly braces in trusted host patterns (sgrodzicki)
17+
* bug #14436 Show a better error when the port is in use (dosten)
18+
* bug #14463 [Validator] Fixed Choice when an empty array is used in the "choices" option (webmozart)
19+
* bug #14402 [FrameworkBundle][Translation] Check for 'xlf' instead of 'xliff' (xelaris)
20+
* bug #14272 [FrameworkBundle] Workaround php -S ignoring auto_prepend_file (nicolas-grekas)
21+
* bug #14345 [FrameworkBundle] Fix Routing\DelegatingLoader resiliency to fatal errors (nicolas-grekas)
22+
* bug #14325 [Routing][DependencyInjection] Support .yaml extension in YAML loaders (thunderer)
23+
* bug #14344 [Translation][fixed test] refresh cache when resources are no longer fresh. (aitboudad)
24+
* bug #14268 [Translator] Cache does not take fallback locales into consideration (sf2.3) (mpdude)
25+
* bug #14192 [HttpKernel] Embed the original exception as previous to bounced exceptions (nicolas-grekas)
26+
* bug #14102 [Enhancement] netbeans - force interactive shell when limited detection (cordoval)
27+
* bug #14191 [StringUtil] Fixed singularification of 'movies' (GerbenWijnja)
28+
1029
* 2.3.27 (2015-04-01)
1130

1231
* security #14167 CVE-2015-2308 (nicolas-grekas)

CHANGELOG-2.6.md

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,49 @@ in 2.6 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.6.0...v2.6.1
99

10+
* 2.6.7 (2015-05-11)
11+
12+
* bug #14266 [HttpKernel] Check if "symfony/proxy-manager-bridge" package is installed (hason)
13+
* bug #14478 [DebugBundle] Fix dump() output in API / No-Toolbar context (nicolas-grekas)
14+
* bug #14501 [ProxyBridge] Fix proxy classnames generation (xphere)
15+
* bug #14527 Fix getOrigin (WouterJ)
16+
* bug #14498 [FrameworkBundle] Added missing log in server:run command (lyrixx)
17+
* bug #14503 [Finder] Only use GLOB_BRACE when available (dosten)
18+
* bug #14484 [SecurityBundle][WebProfiler] check authenticated user by tokenClass instead of username. (aitboudad)
19+
* bug #14497 [HttpFoundation] Allow curly braces in trusted host patterns (sgrodzicki)
20+
* bug #14480 [TwigBundle] Fix deprecated use of FlattenException (alOneh)
21+
* bug #14469 [Debug] BaseException compatibility for PHP7 (nicolas-grekas)
22+
* bug #14466 [WebProfiler] fix html syntax for input types (Tobion)
23+
* bug #14436 Show a better error when the port is in use (dosten)
24+
* bug #14463 [Validator] Fixed Choice when an empty array is used in the "choices" option (webmozart)
25+
* bug #14446 [DependencyInjection] resolve circular reference (xabbuh)
26+
* bug #14448 [Validator] Fixed Choice when an empty array is used in the "choices" option (webmozart)
27+
* bug #14451 [Debug] Fix ClassNotFoundFatalErrorHandler candidates lookups (nicolas-grekas)
28+
* bug #14355 [EventDispatcher] make listeners removable from an executed listener (xabbuh)
29+
* bug #14402 [FrameworkBundle][Translation] Check for 'xlf' instead of 'xliff' (xelaris)
30+
* bug #14272 [FrameworkBundle] Workaround php -S ignoring auto_prepend_file (nicolas-grekas)
31+
* bug #14362 [Debug] Scream as LogLevel::DEBUG (but for fatal errors / uncaught exceptions) (nicolas-grekas)
32+
* bug #14345 [FrameworkBundle] Fix Routing\DelegatingLoader resiliency to fatal errors (nicolas-grekas)
33+
* bug #14381 [FrameworkBundle] Initialize translator with the default locale. (aitboudad)
34+
* bug #14325 [Routing][DependencyInjection] Support .yaml extension in YAML loaders (thunderer)
35+
* bug #14344 [Translation][fixed test] refresh cache when resources are no longer fresh. (aitboudad)
36+
* bug #14346 [WebProfilerBundle] Fix resiliency to exceptions thrown by the url generator (nicolas-grekas)
37+
* bug #14338 [FrameworkBundle] improve usage of Table helper (xabbuh)
38+
* bug #14129 [FrameworkBundle] Fixed server:start --router relative path issue #14124 (abulford)
39+
* bug #14271 [VarDumper] Fix call site detection (nicolas-grekas)
40+
* bug #14277 [Translator] Cache does not take fallback locales into consideration (mpdude)
41+
* bug #14268 [Translator] Cache does not take fallback locales into consideration (sf2.3) (mpdude)
42+
* bug #14256 [Form] Fixed DateType/TimeType (webmozart)
43+
* bug #14226 [Profiler][Logger] fixed cycle odd/even. (aitboudad)
44+
* bug #14204 [VarDumper] Towards PHP7 support (nicolas-grekas)
45+
* bug #14205 Fix currently broken tests (mpdude)
46+
* bug #14192 [HttpKernel] Embed the original exception as previous to bounced exceptions (nicolas-grekas)
47+
* bug #14102 [Enhancement] netbeans - force interactive shell when limited detection (cordoval)
48+
* bug #14191 [StringUtil] Fixed singularification of 'movies' (GerbenWijnja)
49+
* bug #14182 [FrameworkBundle] fixes displaying of deprecation notices. (hhamon)
50+
* feature #14186 [Debug] Renamed "context" key to "scope_vars" to avoid any ambiguity (lyrixx)
51+
* bug #14170 Fix the AJAX profiling (stof)
52+
1053
* 2.6.6 (2015-04-01)
1154

1255
* security #14167 CVE-2015-2308 (nicolas-grekas)

CONTRIBUTORS.md

Lines changed: 29 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@ Symfony is the result of the work of many people who made the code better
99
- Victor Berchet (victor)
1010
- Tobias Schultze (tobion)
1111
- Jordi Boggiano (seldaek)
12+
- Nicolas Grekas (nicolas-grekas)
1213
- Johannes S (johannes)
1314
- Kris Wallsmith (kriswallsmith)
14-
- Nicolas Grekas (nicolas-grekas)
1515
- Christophe Coevoet (stof)
1616
- Jakub Zalas (jakubzalas)
1717
- Pascal Borreli (pborreli)
1818
- Hugo Hamon (hhamon)
19-
- Karma Dordrak (drak)
2019
- Joseph Bielawski (stloyd)
20+
- Karma Dordrak (drak)
2121
- Ryan Weaver (weaverryan)
2222
- Lukas Kahwe Smith (lsmith)
2323
- Romain Neutron (romain)
@@ -29,20 +29,20 @@ Symfony is the result of the work of many people who made the code better
2929
- Martin Hasoň (hason)
3030
- Eriksen Costa (eriksencosta)
3131
- Grégoire Pineau (lyrixx)
32-
- Jonathan Wage (jwage)
32+
- Abdellatif Ait boudad (aitboudad)
3333
- Wouter De Jong (wouterj)
34+
- Jonathan Wage (jwage)
3435
- Alexandre Salomé (alexandresalome)
3536
- William Durand (couac)
3637
- ornicar
3738
- stealth35 ‏ (stealth35)
3839
- Alexander Mols (asm89)
3940
- Bulat Shakirzyanov (avalanche123)
40-
- Abdellatif Ait boudad (aitboudad)
4141
- Francis Besset (francisbesset)
42 F438 +
- Kévin Dunglas (dunglas)
4243
- Saša Stamenković (umpirsky)
4344
- Henrik Bjørnskov (henrikbjorn)
4445
- Miha Vrhovnik
45-
- Kévin Dunglas (dunglas)
4646
- Sarah Khalil (saro0h)
4747
- Konstantin Kudryashov (everzet)
4848
- Bilal Amarni (bamarni)
@@ -57,18 +57,18 @@ Symfony is the result of the work of many people who made the code better
5757
- Michel Weimerskirch (mweimerskirch)
5858
- Lee McDermott
5959
- Brandon Turner
60+
- Luis Cordova (cordoval)
6061
- Douglas Greenshields (shieldo)
6162
- Daniel Holmes (dholmes)
6263
- Bart van den Burg (burgov)
6364
- Jordan Alliot (jalliot)
6465
- Kevin Bond (kbond)
6566
- John Wards (johnwards)
6667
- Fran Moreno (franmomu)
67-
- Luis Cordova (cordoval)
6868
- Antoine Hérault (herzult)
6969
- Toni Uebernickel (havvg)
70-
- Arnaud Le Blanc (arnaud-lb)
7170
- Gábor Egyed (1ed)
71+
- Arnaud Le Blanc (arnaud-lb)
7272
- Tim Nagel (merk)
7373
- Brice BERNARD (brikou)
7474
- marc.weistroff
@@ -82,10 +82,13 @@ Symfony is the result of the work of many people who made the code better
8282
- excelwebzone
8383
- Jacob Dreesen (jdreesen)
8484
- Fabien Pennequin (fabienpennequin)
85+
- Matthias Pigulla (mpdude)
8586
- Peter Kokot (maastermedia)
8687
- Peter Rehm (rpet)
88+
- Diego Saint Esteben (dii3g0)
8789
- Michal Piotrowski (eventhorizon)
8890
- Stefano Sala (stefano.sala)
91+
- Javier Eguiluz (javier.eguiluz)
8992
- Gordon Franke (gimler)
9093
- Robert Schönthal (digitalkaoz)
9194
- Juti Noppornpitak (shiroyuki)
@@ -99,11 +102,10 @@ Symfony is the result of the work of many people who made the code better
99102
- Eric GELOEN (gelo)
100103
- Jérémie Augustin (jaugustin)
101104
- Rafael Dohms (rdohms)
105+
- Dariusz Ruminski
102106
- Tigran Azatyan (tigranazatyan)
103-
- Javier Eguiluz (javier.eguiluz)
104107
- Arnaud Kleinpeter (nanocom)
105108
- Richard Shank (iampersistent)
106-
- Dariusz Ruminski
107109
- Clemens Tolboom
108110
- Helmer Aaviksoo
109111
- Sebastiaan Stok (sstok)
@@ -124,7 +126,7 @@ Symfony is the result of the work of many people who made the code better
124126
- Mario A. Alvarez Garcia (nomack84)
125127
- Dennis Benkert (denderello)
126128
- Benjamin Dulau (dbenjamin)
127-
- Matthias Pigulla (mpdude)
129+
- Alexander Schwenn (xelaris)
128130
- Andreas Hucks (meandmymonkey)
129131
- Noel Guilbert (noel)
130132
- Joel Wurtz (brouznouf)
@@ -143,9 +145,10 @@ Symfony is the result of the work of many people who made the code better
143145
- François Zaninotto (fzaninotto)
144146
- Dustin Whittle (dustinwhittle)
145147
- jeff
148+
- Joshua Thijssen
146149
- Justin Hileman (bobthecow)
147150
- Sven Paulus (subsven)
148-
- Alexander Schwenn (xelaris)
151+
- Vladimir Reznichenko (kalessil)
149152
- Lars Strojny (lstrojny)
150153
- Rui Marinho (ruimarinho)
151154
- Mikael Pajunen
@@ -154,6 +157,7 @@ Symfony is the result of the work of many people who made the code better
154157
- Sergey Linnik (linnik 10000 sa)
155158
- Marcel Beerta (mazen)
156159
- Javier Spagnoletti (phansys)
160+
- julien pauli (jpauli)
157161
- Francois Zaninotto
158162
- Alexander Kotynia (olden)
159163
- Daniel Tschinder
@@ -164,7 +168,6 @@ Symfony is the result of the work of many people who made the code better
164168
- Xavier Montaña Carreras (xmontana)
165169
- Michele Orselli (orso)
166170
- Chris Wilkinson (thewilkybarkid)
167-
- Joshua Thijssen
168171
- Xavier Perez
169172
- Arjen Brouwer (arjenjb)
170173
- Katsuhiro OGAWA
@@ -184,17 +187,16 @@ Symfony is the result of the work of many people who made the code better
184187
- Nikita Konstantinov
185188
- Wodor Wodorski
186189
- Matthieu Auger (matthieuauger)
187-
- julien pauli (jpauli)
188190
- Beau Simensen (simensen)
189191
- Robert Kiss (kepten)
192+
- Maxime Steinhausser (ogizanagi)
190193
- John Kary (johnkary)
191194
- Ruben Gonzalez (rubenrua)
192195
- Kim Hemsø Rasmussen (kimhemsoe)
193196
- Florian Lonqueu-Brochard (florianlb)
194197
- Tom Van Looy (tvlooy)
195198
- Wouter Van Hecke
196199
- Peter Kruithof (pkruithof)
197-
- Vladimir Reznichenko (kalessil)
198200
- Michael Holm (hollo)
199201
- Warnar Boekkooi (boekkooi)
200202
- Marc Weistroff (futurecat)
@@ -311,14 +313,15 @@ Symfony is the result of the work of many people who made the code better
311313
- Marcin Sikoń (marphi)
312314
- franek (franek)
313315
- Adam Harvey
314-
- Diego Saint Esteben (dii3g0)
315316
- Alex Bakhturin
316317
- François-Xavier de Guillebon (de-gui_f)
317318
- boombatower
318319
- Fabrice Bernhard (fabriceb)
319320
- Jérôme Macias (jeromemacias)
321+
- Vincent AUBERT (vincent)
320322
- Fabian Lange (codingfabian)
321323
- Yoshio HANAWA
324+
- Tomasz Kowalczyk (thunderer)
322325
- Sebastian Bergmann
323326
- Pablo Díez (pablodip)
324327
- Kevin McBride
@@ -329,6 +332,7 @@ Symfony is the result of the work of many people who made the code better
329332
- Iker Ibarguren (ikerib)
330333
- Ricardo Oliveira (ricardolotr)
331334
- ondrowan
335+
- Barry vd. Heuvel (barryvdh)
332336
- Jerzy Zawadzki (jzawadzki)
333337
- Evan S Kaufman (evanskaufman)
334338
- mcben
@@ -374,7 +378,6 @@ Symfony is the result of the work of many people who made the code better
374378
- Zach Badgett (zachbadgett)
375379
- Aurélien Fredouelle
376380
- Pavel Campr (pcampr)
377-
- Maxime Steinhausser (ogizanagi)
378381
- Disquedur
379382
- Geoffrey Tran (geoff)
380383
- Jan Behrens
@@ -446,8 +449,6 @@ Symfony is the result of the work of many people who made the code better
446449
- Tiago Brito (blackmx)
447450
- Richard van den Brand (ricbra)
448451
- develop
449-
- Vincent AUBERT (vincent)
450-
- Tomasz Kowalczyk (thunderer)
451452
- Mark Sonnabaum
452453
- Alexander Obuhovich (aik099)
453454
- Mathieu Lemoine
@@ -459,7 +460,6 @@ Symfony is the result of the work of many people who made the code better
459460
- yclian
460461
- Pascal Helfenstein
461462
- Baldur Rensch (brensch)
462-
- Barry vd. Heuvel (barryvdh)
463463
- Alex Xandra Albert Sim
464464
- Yuen-Chi Lian
465465
- Besnik Br
@@ -602,6 +602,7 @@ Symfony is the result of the work of many people who made the code better
602602
- Zachary Tong (polyfractal)
603603
- Hryhorii Hrebiniuk
604604
- dantleech
605+
- Xavier Leune
605606
- Tero Alén (tero)
606607
- DerManoMann
607608
- Guillaume Royer
@@ -684,10 +685,12 @@ Symfony is the result of the work of many people who made the code better
684685
- Yannick
685686
- Eduardo García Sanz (coma)
686687
- Sebastian Grodzicki (sgrodzicki)
688+
- James Gilliland
687689
- Michael Lee (zerustech)
688690
- Roy Van Ginneken
689691
- David de Boer (ddeboer)
690692
- Gilles Doge (gido)
693+
- abulford
691694
- Brooks Boyd
692695
- Roger Webb
693696
- Dmitriy Simushev
@@ -722,6 +725,7 @@ Symfony is the result of the work of many people who made the code better
722725
- Jeroen van den Enden (stoefke)
723726
- origaminal
724727
- Quique Porta (quiqueporta)
728+
- Gregor Harlan
725729
- Tomasz Szymczyk (karion)
726730
- ConneXNL
727731
- Aharon Perkel
@@ -752,6 +756,7 @@ Symfony is the result of the work of many people who made the code better
752756
- Karol Sójko (karolsojko)
753757
- sl_toto (sl_toto)
754758
- Sébastien HOUZÉ
759+
- Jingyu Wang
755760
- steveYeah
756761
- Samy Dindane (dinduks)
757762
- Keri Henare (kerihenare)
@@ -881,6 +886,7 @@ Symfony is the result of the work of many people who made the code better
881886
- catch
882887
- Alexandre Segura
883888
- Josef Cech
889+
- Possum
884890
- Arnau González (arnaugm)
885891
- Nate (frickenate)
886892
- Matthew Foster (mfoster)
@@ -948,6 +954,7 @@ Symfony is the result of the work of many people who made the code better
948954
- Daan van Renterghem
949955
- Bram Van der Sype (brammm)
950956
- Julien Moulin (lizjulien)
957+
- Romain Gautier (mykiwi)
951958
- Nikita Nefedov (nikita2206)
952959
- Mauro Foti (skler)
953960
- Yannick Warnier (ywarnier)
@@ -1015,6 +1022,7 @@ Symfony is the result of the work of many people who made the code better
10151022
- Matthieu Prat
10161023
- Grummfy
10171024
- Filipe Guerra
1025+
- Gerben Wijnja
10181026
- Rowan Manning
10191027
- David Windell
10201028
- Gabriel Birke
@@ -1243,6 +1251,7 @@ Symfony is the result of the work of many people who made the code better
12431251
- Guillermo Gisinger (t3chn0r)
12441252
- Markus Tacker (tacker)
12451253
- Tyler Stroud (tystr)
1254+
- Moritz Kraft (userfriendly)
12461255
- Víctor Mateo (victormateo)
12471256
- Vincent (vincent1870)
12481257
- Eugene Babushkin (warl)
@@ -1266,6 +1275,7 @@ Symfony is the result of the work of many people who made the code better
12661275
- Mohamed Karnichi (amiral)
12671276
- Daniel Kolvik (dkvk)
12681277
- Jeroen De Dauw (jeroendedauw)
1278+
- Maxime COLIN (maximecolin)
12691279
- Muharrem Demirci (mdemirci)
12701280
- Evgeny Z (meze)
12711281
- Michiel Boeckaert (milio)

0 commit comments

Comments
 (0)
0