Use the new xdebug_connect_to_client()
function if available to allow debugging with Xdebug in worker mode.
Continuation of https://github.com/dunglas/frankenphp/pull/397.
cc @goossda.
Q | A |
---|---|
Branch? | main |
Tickets | Closes #2588, closes #2585 |
License | MIT |
Doc PR | apin/a |
This allows the preserve of permissions and modification dates.
<!-- The commit message must follow the Conventional Commits specification. The following types are allowed:
fix
: bug fixfeat
: new featuredocs
: change in the documentationspec
: spec changetest
: test-related changeperf
:...Temporary fix while waiting for https://github.com/php-runtime/runtime/issues/157
Q | A |
---|---|
Branch? | main |
Tickets | n/a |
License | MIT |
Doc PR | n/a |
<!-- The commit message must follow the Conventional Commits specification. The following types are allowed:
fix
: bug fixfeat
: new featuredocs
: change in the documentationspec
: spec changetest
: test-related changeperf
:...<!-- The commit message must follow the Conventional Commits specification. The following types are allowed:
fix
: bug fixfeat
: new featuredocs
: change in the documentationspec
: spec changetest
: test-related changeperf
:...Closes #410.
Artifact V2 isn't compatible with how we use it:
> Due to how Artifacts are created in this new version, it is no longer possible to upload to the same named Artifact multiple times. You must either split the uploads into multiple Artifacts with different names, or only upload once.
https:/...
Also, disable the debug mode of static-php-cli
.
This patch improves Docker tags.
It allows using specific FrankenPHP versions with specific PHP versions, such as dunglas/frankenphp:1.0.0-php8.3.1-bookworm
Fix the slight issues found during @weaverryan live.
Related to #380.
When sending many concurrent requests to reload Caddy, a deadlock sometimes occurs. This test highlights it:
<snip>
{"level":"info","ts":1702636483.968044,"logger":"admin","msg":"stopped previous server","address":"localhost:2999"}
{"level":"info","ts":1702636483.974002,"logger":"admin"...
Add a benchmark using K6.
To run it:
cd testdata
./frankenphp start --config benchmark.Caddyfile --adapter caddyfile
k6 run load-test.js
To investigate https://github.com/dunglas/frankenphp/issues/366. For https://github.com/dunglas/frankenphp/issues/382.
Fixes an issue introduced in https://github.com/Pithikos/C-Thread-Pool/pull/127. Closes https://github.com/Pithikos/C-Thread-Pool/pull/127.
Ugly fix for crashes reported in https://github.com/laravel/octane/pull/764.
test-reload.sh
is a reproducer. The crash produces the following stack trace (collected using lldb on Mac):
* thread #192, stop reason = EXC_BREAKPOINT (code=1, subcode=0x18d6df21c)
frame #0: 0x00000001...
Not destroying the mutex and the cond before initializing it again has undefined behavior. This causes crashes under some conditions, especially on Mac: https://github.com/dunglas/frankenphp/pull/394
This patch fixes the problem.
Closes https://github.com/Pithikos/C-Thread-Pool/issues/120.
<!-- The commit message must follow the Conventional Commits specification. The following types are allowed:
fix
: bug fixfeat
: new featuredocs
: change in the documentationspec
: spec changetest
: test-related changeperf
:...Closes #409.
<!-- The commit message must follow the Conventional Commits specification. The following types are allowed:
fix
: bug fixfeat
: new featuredocs
: change in the documentationspec
: spec changetest
: test-related changeperf
:...<!-- The commit message must follow the Conventional Commits specification. The following types are allowed:
fix
: bug fixfeat
: new featuredocs
: change in the documentationspec
: spec changetest
: test-related changeperf
:...<!-- The commit message must follow the Conventional Commits specification. The following types are allowed:
fix
: bug fixfeat
: new featuredocs
: change in the documentationspec
: spec changetest
: test-related changeperf
:...Many virtual machines, including Go VM, depend on signals using SA_ONSTACK
. This flag allows a thread to define a new alternate signal stack. Many argue that `SA_ONS...
PHP 8.2 has been released yesterday! Let's use it.
This should allow testing all Pull Requests.
The current link returns a 404.
Q | A |
---|---|
Branch? | main |
Tickets | n/a |
License | MIT |
Doc PR | n/a |
Upgrade to PHP 8.2 and bump deps. Also closes #2339 and #2340.
This prevents a compilation warning and a potential crash.
Add support for PHP timeouts (require a patch to PHP).
TODO:
Q | A |
---|---|
Branch? | main |
Tickets | n/a |
License | MIT |
Doc PR | n/a |
Port of https://github.com/dunglas/symfony-docker/pull/298.
Uses https://github.com/mlocati/docker-php-extension-installer.
Q | A |
---|---|
Branch? | main |
Tickets | n/a |
License | MIT |
Doc PR | n/a |
Q | A |
---|---|
Branch? | main |
Tickets | n/a |
License | MIT |
Doc PR | n/a |
Q | A |
---|---|
Branch? | main |
Tickets | n/a |
License | MIT |
Doc PR | n/a |
Push is now disabled on Chrome and this directive is known to cause issues in some cases (it has already been removed from API Platform).
Q | A |
---|---|
Branch? | main |
Tickets | #... <!-- please link related issues if existing --> |
License | MIT |
Doc PR | n/a |
Q | A |
---|---|
Branch? | main |
Tickets | n/a |
License | MIT |
Doc PR | n/a |
Q | A |
---|---|
Branch? | main |
Tickets | n/a |
License | MIT |
Doc PR | api-platform/docs#... <!-- required for new features --> |
n/a
Thanks to @ginifizz
Q | A |
---|---|
Branch? | main |
Tickets | n/a |
License | MIT |
Doc PR | n/a |
Q | A |
---|---|
Branch? | main |
Tickets | n/a |
License | MIT |
Doc PR | n/a |
<!--
If your pull request fixes a BUG, use the last stable branch that contains the bug.
If your pull request documents a NEW FEATURE, use the main
branch.
Versions and branches are described there: https://api-platform.com/docs/extra/releases/
-->
Closes https://bugs.php.net/bug.php?id=79464. Follows the plan described in this mail: https://externals.io/message/118859.
Currently, timeouts don't work at all on ZTS builds because signals are emitted by setitimer()
, which is per-process. This patch fixes the problem on Linux by using `t...
Use the upstream library instead of my fork now that the needed patches have been merged: https://github.com/Pithikos/C-Thread-Pool/pull/113
Closes #1.
Because of https://github.com/golang/go/issues/15527, go_read_post
could panic:
panic: http: invalid Read on closed Body
goroutine 52 [running, locked to thread]: ...
Q | A |
---|---|
Branch? | main |
Tickets | n/a |
License | MIT |
Doc PR | todo |
Adds a helper method to log a user in the tests:
use ApiPlatform\Symfony\Bundle\Test\ApiTestCase;
class MyTest extends ApiTestCase
{
public...
To catch problems such as https://github.com/dunglas/vaccin.click/pull/94 earlier.
<!--
If your pull request fixes a BUG, use the oldest maintained branch that contains the bug (see https://symfony.com/releases for the list of maintained branches).
If your pull request documents a NEW FEATURE, use the same Symfony branch where
the feature was introduced (and 5.x
for f...
Q | A |
---|---|
Branch? | master <!-- see the comment below --> |
Bug fix? | no |
New feature? | yes |
BC breaks? | no |
Deprecations? | no <!-- don't forget to update the UPGRADE-*.md file --> |
Related tickets | n/a |
License ... |
Also contains various improvements.
Fix https://github.com/dunglas/mercure/issues/596.
It's very concerning that our test suite didn't catch that. We need to thoroughly test that all existing behaviors still work.
TODO:
Q | A |
---|---|
Branch? | 2.6 |
Tickets | n/a |
License | MIT |
Doc PR | n/a |
Q | A |
---|---|
Branch? | main |
Bug fix? | no <!-- please update CHANGELOG.md file --> |
New feature? | no <!-- please update CHANGELOG.md file --> |
Deprecations? | no |
Tickets | n/a |
License | MIT |
Doc PR | api-platform/docs... |
Q | A |
---|---|
Branch? | 2.6 |
Tickets | #4543 |
License | MIT |
Doc PR | n/a |
doctrine:mapping:convert
and doctrine:ensure-production-settings
have been removed from Doctrine 3. Registering the proxy classes prevent the container to build properly.
Q | A |
---|---|
Branch? | 2.6 |
Tickets | n/a |
License | MIT |
Doc PR | n/a |
Q | A |
---|---|
Branch? | main |
Tickets | n/a |
License | MIT |
Doc PR | n/a |
Q | A |
---|---|
Branch? | 2.6 |
Tickets | n/a |
License | MIT |
Doc PR | n/a |
Q | A |
---|---|
Branch? | main |
Tickets | n/a |
License | MIT |
Doc PR | n/a |
Q | A |
---|---|
Branch? | main |
Tickets | n/a |
License | MIT |
Doc PR | n/a |
<!-- Please update this template with something that matches your PR -->
Q | A |
---|---|
Bug fix? | no |
New feature? | yes |
BC breaks? | no |
Deprecations? | no |
Tests pass? | yes |
Fixed tickets | n/a |
License | MIT |
Doc PR | n/a |
<!-- Please update this template with something that matches your PR -->
Q | A |
---|---|
Bug fix? | no |
New feature? | yes |
BC breaks? | no |
Deprecations? | no |
Tests pass? | yes |
Fixed tickets | n/a |
License | MIT |
Doc PR | tod... |
<!-- Please update this template with something that matches your PR -->
Q | A |
---|---|
Bug fix? | no |
New feature? | yes |
BC breaks? | no |
Deprecations? | no |
Tests pass? | yes |
Fixed tickets | n/a |
License | MIT |
Doc PR | n/a... |
<!-- Please update this template with something that matches your PR -->
Q | A |
---|---|
Bug fix? | no |
New feature? | no |
BC breaks? | no |
Deprecations? | no |
Tests pass? | yes |
Fixed tickets | #2290 |
License | MIT |
Doc PR | ap... |
<!-- Please update this template with something that matches your PR -->
Q | A |
---|---|
Bug fix? | yes |
New feature? | no |
BC breaks? | no |
Deprecations? | no |
Tests pass? | yes |
Fixed tickets | https://github.com/api-platform/core/pull/2347#is... |
<!-- Please update this template with something that matches your PR -->
Q | A |
---|---|
Bug fix? | no |
New feature? | yes |
BC breaks? | no |
Deprecations? | no |
Tests pass? | yes |
Fixed tickets | n/a |
License | MIT |
Doc PR | tod... |
<!-- Please update this template with something that matches your PR -->
Q | A |
---|---|
Bug fix? | yes |
New feature? | no |
BC breaks? | no |
Deprecations? | no |
Tests pass? | yes |
Fixed tickets | n/a |
License | MIT |
Doc PR | n/a... |
<!-- Please update this template with something that matches your PR -->
Q | A |
---|---|
Bug fix? | no |
New feature? | yes |
BC breaks? | no |
Deprecations? | no |
Tests pass? | yes |
Fixed tickets | n/a |
License | MIT |
Doc PR |
...
<!-- Please update this template with something that matches your PR -->
Q | A |
---|---|
Bug fix? | yes |
New feature? | no |
BC breaks? | no |
Deprecations? | no |
Tests pass? | yes |
Fixed tickets | n/a |
License | MIT |
Doc PR | n/a... |
Q | A |
---|---|
Branch? | master |
Bug fix? | no |
New feature? | yes <!-- don't forget to update src/**/CHANGELOG.md files --> |
BC breaks? | no <!-- see https://symfony.com/bc --> |
Deprecations? | no <!-- don't forget to update UPGRADE-*.md ... |
<!-- Please update this template with something that matches your PR -->
Q | A |
---|---|
Bug fix? | no |
New feature? | no |
BC breaks? | yes but master only |
Deprecations? | no |
Tests pass? | yes |
Fixed tickets | n/a |
License | MIT |
Doc... |
Every command include the namespace except this one.
<!-- Please update this template with something that matches your PR -->
Q | A |
---|---|
Bug fix? | yes |
New feature? | no |
BC breaks? | no |
Deprecations? | no |
Tests pass? | yes |
Fixed tickets | n/a |
License | MIT |
Doc PR | n/a |
... |
Q | A |
---|---|
License | MIT |
This PR makes it easy to use [API Platform Admin](https://api-platform.com/docs...
<!-- Please update this template with something that matches your PR -->
Q | A |
---|---|
Bug fix? | no |
New feature? | no |
BC breaks? | no |
Deprecations? | no |
Tests pass? | yes |
Fixed tickets | n/a |
License | MIT |
Doc PR | n/a |
<!-- Please update this template with something that matches your PR -->
Q | A |
---|---|
Bug fix? | no |
New feature? | yes |
BC breaks? | no |
Deprecations? | no |
Tests pass? | yes |
Fixed tickets | n/a |
License | MIT |
Doc PR | tod... |
Q | A |
---|---|
Branch? | master |
Bug fix? | no |
New feature? | yes <!-- don't forget to update src/**/CHANGELOG.md files --> |
BC breaks? | no |
Deprecations? | no <!-- don't forget to update UPGRADE-*.md files --> |
Tests pass? | yes |
Fixe... |
Q | A |
---|---|
Bug fix? | no |
New feature? | no |
BC breaks? | no |
Deprecations? | no |
Tests pass? | yes |
Fixed tickets | n/a |
License | MIT |
Doc PR | n/a |
Q | A |
---|---|
Bug fix? | no |
New feature? | no |
BC breaks? | no |
Deprecations? | no |
Tests pass? | yes |
Fixed tickets | n/a |
License | MIT |
Doc PR | n/a |
Q | A |
---|---|
Branch? | 2.7 |
Bug fix? | yes |
New feature? | no <!-- don't forget to update src/**/CHANGELOG.md files --> |
BC breaks? | no |
Deprecations? | no <!-- don't forget to update UPGRADE-*.md files --> |
Tests pass? | yes |
Fixed t... |
Q | A |
---|---|
Bug fix? | no |
New feature? | yes |
BC breaks? | yes |
Deprecations? | no |
Tests pass? | yes |
Fixed tickets | n/a |
License | MIT |
Doc PR | todo |
Implement the [Relay Input Object Mutations Specification](https://f...
Q | A |
---|---|
Bug fix? | no |
New feature? | no |
BC breaks? | no |
Deprecations? | no |
Tests pass? | yes |
Fixed tickets | n/a |
License | MIT |
Doc PR | n/a |
Do not merge yet. Follows: nelmio/NelmioApiDocBundle#1134
Q | A |
---|---|
Branch? | 2.7 |
Bug fix? | no |
New feature? | no <!-- don't forget to update src/**/CHANGELOG.md files --> |
BC breaks? | no |
Deprecations? | no <!-- don't forget to update UPGRADE-*.md files --> |
Tests pass? | yes |
Fixed ti... |
Q | A |
---|---|
Bug fix? | yes |
New feature? | no |
BC breaks? | no |
Deprecations? | no |
Tests pass? | yes |
Fixed tickets | n/a |
License | MIT |
Doc PR | n/a |
To allow to use the ^3.0@dev
notation.
Q | A |
---|---|
Bug fix? | no |
New feature? | no |
BC breaks? | no |
Deprecations? | no |
Tests pass? | yes |
Fixed tickets | n/a |
License | MIT |
Doc PR | n/a |
To allow to use the ^2.8@dev
notation.
Tests will be red because they already are, but the API Platform test suite pass with those changes. I suggest to merge this patch as is.
Q | A |
---|---|
Bug fix? | no |
New feature? | no |
BC breaks? | no |
Deprecations? | no |
Tests pass? | yes |
Fixed tickets | n/a |
Q | A |
---|---|
Branch? | 3.4 |
Bug fix? | no |
New feature? | no <!-- don't forget to update src/**/CHANGELOG.md files --> |
BC breaks? | no |
Deprecations? | no <!-- don't forget to update UPGRADE-*.md files --> |
Tests pass? | yes |
Fixed ti... |
Q | A |
---|---|
Bug fix? | no |
New feature? | yes |
BC breaks? | no |
Deprecations? | no |
Tests pass? | yes |
Fixed tickets | n/a |
License | MIT |
Doc PR | n/a |
TODO:
Q | A |
---|---|
Bug fix? | no |
New feature? | no |
BC breaks? | no |
Deprecations? | no |
Tests pass? | yes |
Fixed tickets | n/a |
License | MIT |
Doc PR | n/a |
Q | A |
---|---|
Bug fix? | no |
New feature? | no |
BC breaks? | no |
Deprecations? | no |
Tests pass? | yes |
Fixed tickets | n/a |
License | MIT |
Doc PR | n/a |
Q | A |
---|---|
Bug fix? | no |
New feature? | no |
BC breaks? | no |
Deprecations? | no |
Tests pass? | yes |
Fixed tickets | n/a |
License | MIT |
Doc PR | n/a |
Always skip relations marked as [extra lazy](http://docs.doctrine-proje...
Q | A |
---|---|
Branch? | 3.3 |
Bug fix? | yes |
New feature? | no |
BC breaks? | no |
Deprecations? | no |
Tests pass? | yes |
Fixed tickets | n/a |
License | MIT |
Doc PR | n/a |
In some cases, the attributes
key ...
Q | A |
---|---|
Bug fix? | no |
New feature? | yes |
BC breaks? | no |
Deprecations? | no |
Tests pass? | yes |
Fixed tickets | n/a |
License | MIT |
Doc PR | todo |
And now the GraphQL subsystem is hooked in the authorization mechanis...
Q | A |
---|---|
Branch? | 2.7 |
Bug fix? | yes |
New feature? | no <!-- don't forget to update src/**/CHANGELOG.md files --> |
BC breaks? | no |
Deprecations? | no <!-- don't forget to update UPGRADE-*.md files --> |
Tests pass? | yes |
Fixed t... |
Q | A |
---|---|
License | MIT |
Adds a recipe as well as an official alias for NelmioCorsBundle.
Prepare 1.5.4 release.
Q | A |
---|---|
Bug fix? | no |
New feature? | no |
BC breaks? | no |
Deprecations? | no |
Tests pass? | yes |
Fixed tickets | n/a |
License | MIT |
Doc PR | n/a |
This is a port of the API Platform's HTTP cache listener.
It allows to easily set HTTP cache headers through a dedicated middleware:
Route::get('/my-rou...
Q | A |
---|---|
Bug fix? | no |
New feature? | yes |
BC breaks? | no |
Deprecations? | no |
Tests pass? | yes |
Fixed tickets | n/a |
License | MIT |
Doc PR | todo |
Implementation of the GraphQL's [Relay Global Object Identification S...
Q | A |
---|---|
Bug fix? | no |
New feature? | no |
BC breaks? | no |
Deprecations? | no |
Tests pass? | yes |
Fixed tickets | n/a |
License | MIT |
Doc PR | n/a |
Q | A |
---|---|
Bug fix? | no |
New feature? | yes |
BC breaks? | no |
Deprecations? | no |
Tests pass? | yes |
Fixed tickets | n/a |
License | MIT |
Doc PR | n/a |
Closes #340.
This behavior is very annoying:
- getCollection("ApiPlatform\Core\Tests\Fixtures\TestBundle\Entity"...)
on Double\CollectionDataProviderInterface\P16 was not expected, expected calls were:
- getCollection(exact("ApiPlatform\Core\Tests\Fixtures\TestBundle\Entity"...))...
Q | A |
---|---|
Bug fix? | yes/no |
New feature? | no |
BC breaks? | no |
Deprecations? | no |
Tests pass? | yes |
Fixed tickets | n/a |
License | MIT |
Doc PR | an/a |
Q | A |
---|---|
Bug fix? | no |
New feature? | yes |
BC breaks? | no |
Deprecations? | no |
Tests pass? | yes |
Fixed tickets | n/a |
License | MIT |
Doc PR | n/a |
Follows #1546. This PR allows API Platform to add useful SQL JOIN
cl...
Integrates laravel/framework#22389.
Maybe cache-headers
would be a better name?
Q | A |
---|---|
Bug fix? | yes |
New feature? | no |
BC breaks? | no |
Deprecations? | no |
Tests pass? | yes |
Fixed tickets | n/a |
License | MIT |
Doc PR | n/a |
Q | A |
---|---|
Bug fix? | no |
New feature? | no |
BC breaks? | no |
Deprecations? | no |
Tests pass? | yes |
Fixed tickets | n:a |
License | MIT |
Doc PR | n/a |
Follows #1561.
Q | A |
---|---|
Branch? | master |
Bug fix? | no |
New feature? | yes |
BC breaks? | no |
Deprecations? | no |
Tests pass? | yes |
Fixed tickets | n/a |
License | MIT |
Doc PR | n/a |
It's basically the same idea than request's ...
Fix #1976 by bumping dependencies.
This patch improves the performance of the Internet::transliterate
method by not using the transliterator if the current string is already in ASCII.
It improves the speed of Alice's benchmark of 37%.
Q | A |
---|---|
Bug fix? | no |
New feature? | no |
BC breaks? | no |
Deprecations? | no |
Tests pass? | yes |
Fixed tickets | n/a |
License | MIT |
Doc PR | n/a |
Q | A |
---|---|
Bug fix? | no |
New feature? | no |
BC breaks? | no |
Deprecations? | no |
Tests pass? | yes |
Fixed tickets | n/a |
License | MIT |
Doc PR | n/a |
Q | A |
---|---|
Bug fix? | no |
New feature? | no |
BC breaks? | no |
Deprecations? | no |
Tests pass? | yes |
Fixed tickets | n/a |
License | MIT |
Doc PR | n/a |
Requires symfony/symfony#20167 to be merged. Closes #61.
api-platform/core#882
Q | A |
---|---|
Bug fix? | yes |
New feature? | no |
BC breaks? | no |
Deprecations? | no |
Tests pass? | yes |
Fixed tickets | #879 |
License | MIT |
Doc PR | todo |
Q | A |
---|---|
Bug fix? | yes |
New feature? | no |
BC breaks? | no |
Deprecations? | no |
Tests pass? | yes |
Fixed tickets | n/a |
License | MIT |
Doc PR | n/a |
See symfony/symfony#20904
Q | A |
---|---|
Branch? | 3.2 |
Bug fix? | yes |
New feature? | no |
BC breaks? | no |
Deprecations? | no |
Tests pass? | yes |
Fixed tickets | n/a |
License | MIT |
Doc PR | n/a |
TwigBundle now has a hard dependency to the con...
Q | A |
---|---|
Branch? | master |
Bug fix? | yes |
New feature? | no |
BC breaks? | no |
Deprecations? | no |
Tests pass? | yes |
Fixed tickets | n/a |
License | MIT |
Doc PR | n/a |
This reverts commit 4e6086f7db7b4f793e1acabb...
Q | A |
---|---|
Bug fix? | yes |
New feature? | no |
BC breaks? | no |
Deprecations? | no |
Tests pass? | yes |
Fixed tickets | n/a |
License | MIT |
Doc PR | n/a |
Fix this error when decorating the Swagger normalizer:
PHP Fat...
Q | A |
---|---|
Bug fix? | yes/no |
New feature? | no |
BC breaks? | no |
Deprecations? | no |
Tests pass? | yes |
Fixed tickets | #890 |
License | MIT |
Doc PR | n/a |
@digilist, can you please test this patch to see if it's fix the p...
Q | A |
---|---|
Branch? | master |
Bug fix? | no |
New feature? | yes |
BC breaks? | no |
Deprecations? | no |
Tests pass? | yes |
Fixed tickets | n/a |
License | MIT |
Doc PR | todo |
Adds support for getter autowiring. #20973 ...
…ing component
Q | A |
---|---|
Branch? | 2.8 |
Bug fix? | yes |
New feature? | no |
BC breaks? | no |
Deprecations? | no |
Tests pass? | yes |
Fixed tickets | n/a |
License | MIT |
Doc PR | n/a |
The template controller was m...
Q | A |
---|---|
Branch? | master |
Bug fix? | no |
New feature? | no |
BC breaks? | no |
Deprecations? | yes |
Tests pass? | yes |
Fixed tickets | n/a |
License | MIT |
Doc PR | n/a |
This PR deprecates the Templating component ...
Q | A |
---|---|
Branch? | master |
Bug fix? | no |
New feature? | no |
BC breaks? | no |
Deprecations? | yes |
Tests pass? | yes |
Fixed tickets | n/a |
License | MIT |
Doc PR | n/a |
Follows #21035.
Q | A |
---|---|
Bug fix? | no |
New feature? | no |
BC breaks? | no |
Deprecations? | no |
Tests pass? | yes |
Fixed tickets | n/a |
License | MIT |
Doc PR | n/a |
Q | A |
---|---|
Bug fix? | no |
New feature? | yes |
BC breaks? | no |
Deprecations? | no |
Tests pass? | yes |
Fixed tickets | https://github.com/symfony/symfony/issues/14924#issuecomment-111977173, https://github.com/dunglas/DunglasApiBundle/issues/... |
Allow to use plugins such as Grunt and Gulp WireDep.
A picture is worth a thousand words:
To enable it:
$twig = new Twig_Environment(null, array('base_template_class' => 'Twig_Template_Display...
If not done, next commands will fail.
Q | A |
---|---|
Bug fix? | no |
New feature? | no |
BC breaks? | no |
Deprecations? | no |
Tests pass? | yes |
Fixed tickets | n/a |
License | MIT |
Doc PR | n/a |
Allow to extract metadata about properties coming from Doctrine using the new PropertyInfo component of Symfony 2.8.
Q | A |
---|---|
Bug fix? | no |
New feature? | no |
BC breaks? | no |
Deprecations? | no |
Tests pass? | yes |
Fixed tickets | n/a |
License | MIT |
Doc PR | n/a |
Q | A |
---|---|
Bug fix? | no |
New feature? | no |
BC breaks? | no |
Deprecations? | no |
Tests pass? | yes |
Fixed tickets | n/a |
License | MIT |
Doc PR | n/a |
Q | A |
---|---|
Bug fix? | no |
New feature? | no |
BC breaks? | no |
Deprecations? | no |
Tests pass? | yes |
Fixed tickets | n/a |
License | MIT |
Doc PR | n/a |
Q | A |
---|---|
Bug fix? | no |
New feature? | yes |
BC breaks? | no |
Deprecations? | no |
Tests pass? | yes |
Fixed tickets | n/a |
License | MIT |
Doc PR | n/a |
Add native APCu support (replace #112).
@guilhermeblanco, I don't think that it is possible to add apcu_entry
support without adding a new interface to Doctrine Cache.
Q | A |
---|---|
Bug fix? | no |
New feature? | yes |
BC breaks? | no |
Deprecations? | no |
Tests pass? | yes |
Fixed tickets | #16893 |
License | MIT |
Doc PR | todo |
Replace #16893 with several advantages:
Q | A |
---|---|
Bug fix? | no |
New feature? | yes |
BC breaks? | no |
Deprecations? | no |
Tests pass? | yes |
Fixed tickets | #1234 |
License | MIT |
Doc PR | todo |
First step to merge #16143
cc @mihai-stancu
Q | A |
---|---|
Doc fix? | no |
New docs? | yes symfony/symfony#15613 |
Applies to | 2.8, 3.0 |
Fixed tickets | n/a |
Q | A |
---|---|
Doc fix? | yes |
New docs? | no |
Applies to | 2.3 |
Fixed tickets | n/a |
Related to symfony/symfony#15977 and symfony/symfony#15979.
Q | A |
---|---|
Bug fix? | no |
New feature? | yes |
BC breaks? | no |
Deprecations? | no |
Tests pass? | yes |
Fixed tickets | n/a |
License | MIT |
Doc PR | n/a |
This PR configures support for the new APCu class from Doctrine Cache ...
Q | A |
---|---|
Bug fix? | no |
New feature? | no |
BC breaks? | no |
Deprecations? | no |
Tests pass? | yes |
Fixed tickets | https://github.com/symfony/symfony/pull/17113#discussion_r48291776 |
License | MIT |
Doc PR | n/a |
Introduc...