Reio Remma

Results 14 issues of Reio Remma

I just started exploring Svelte transitions I noticed sudden CSP failures in Firefox and Chrome. I've tracked it down to Svelte appending an empty element to when transitions are used....

pending clarification
stale-bot

A couple of quality of life functions to keep track of pool status, though I would very much like https://github.com/spatie/async/pull/178 to be merged as well. :)

Using amp/parallel v2. Is there a more sensible way to wait/await for the worker pool to become empty? Maybe a helper function hidden somewhere? Currently using: ``` while(($pool->getWorkerCount() - $pool->getIdleWorkerCount())...

I converted my timings collector (based on LogHttpArchive) to the new events system and requestEnd() doesn't get called when the last request has finished. ``` $client = (new Amp\Http\Client\HttpClientBuilder) ->usingPool(Amp\Http\Client\Connection\ConnectionLimitingPool::byAuthority(4))...

Right now the calendar attaches itself to the end of body in input mode. It would be nice to be able to attach it relative to a given element as...

![image](https://github.com/uvarov-frontend/vanilla-calendar-pro/assets/22724651/cb241762-d7ba-4a1f-8141-059907a86dfa) This can be fixed by adding: ``` .vanilla-calendar button:focus-visible { outline-offset: -1px; } ```

### Bug Report | Q | A |------------ | ------ | BC Break | no | Version | 3.2.1 #### Summary Using the Column option `generated: 'NEVER'` yields an error:...

Fix for issue #11794. Currently the values of enumType in DiscriminatorColumn are ignored which results in an error when generating a migration: ``` Doctrine\DBAL\Platforms\MySQL80Platform requires the values of a ENUM...

Missing Tests
New Feature

Using enum in DiscriminatorColumn: ``` enum CommentType: string { case One = 'one'; case Two = 'two'; case Three = 'three'; } ``` ``` #[ORM\DiscriminatorColumn(name: 'Type', type: Types::ENUM, enumType: CommentType::class)]...

New Feature

I'm looking at upgrading to v2.0 and just turned on bleeding edge. This has resulted in these errors being reported for Doctrine repositories. ``` PHPDoc tag @var with type App\Repository\UserRepository...