phoenix icon indicating copy to clipboard operation
phoenix copied to clipboard

Peace of mind from prototype to production

Results 76 phoenix issues
Sort by recently updated
recently updated
newest added

In Google Chrome, when network connection is interrupted, the websocket connections break but they do not properly close. The following happens: - The `error` and `close` events are not triggered...

Phoenix creates a new WebSocket connection if the current one closes for some reason. However, for a new connection to be created, it is required that the following conditions hold:...

### Environment * Elixir version: 1.13.4 * Erlang version: 25.0.4 * Phoenix version (mix deps): latest stable * Operating system: Windows 11 x64 ### Expected behavior mix archive.install hex phx_new...

As I have been bitten by this again in one of my projects, and I saw a related issue in the Symfony repository (https://github.com/symfony/symfony/issues/50739 and a comment from @stof), I...

Improvement
Status: Needs Decision

linked to https://github.com/symfony/symfony/pull/53214 This pull request introduces a solution based on the RoadRunner bundle's Doctrine ORM/ODM middleware https://github.com/Baldinof/roadrunner-bundle/blob/3.x/src/Integration/Doctrine/DoctrineORMMiddleware.php. It checks the status of Doctrine connection, then if the connection is...

Status: On Hold

With the latest [recipe changes ](https://github.com/symfony/recipes/pull/1290) we are always explicitly enabling savepoints. However on DBAL 4 this leads to > 44x: Doctrine\DBAL\Connection::setNestTransactionsWithSavepoints is deprecated and will be removed in 5.0...

What we can do? Since Events deprecated it's too hard to implement another solution https://github.com/doctrine/DoctrineBundle/blob/2.11.x/Resources/config/messenger.xml#L61

Improvement
Ready to work on

In the lastest ORM beta version, a new setting is used to configure the default value for the `#[ORM\GeneratedValue]` attribute if has no values https://github.com/doctrine/orm/releases/tag/3.0.0-beta1 This appears in a deprecation...

Feature
Ready to work on

Since https://github.com/doctrine/orm/pull/10313 we now have a way to extend the automatic mapping of DBAL types. Similar to `\Doctrine\ORM\Configuration::setNamingStrategy` there is now `\Doctrine\ORM\Configuration::setTypedFieldMapper`, which is not yet configurable by this bundle...

Feature
Ready to work on

Go to [configuration reference page ](https://www.doctrine-project.org/projects/doctrine-bundle/en/2.10/configuration.html) and search for `dbname_suffix` - you will see there is no comments about it anywhere. The meaning is unclear (at least for me). Is...

Documentation
Question