-
-
Notifications
You must be signed in to change notification settings - Fork 26
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Release a version with PHP 8.2 support #80
Comments
Hi @hason-kosik, max one week. I am finishing testing on my projects. |
@f3l1x Do you possibly have example how to replace EventSubscriber (e.g. like this one) with Middleware? It used to register itself, thanks to these lines probably, now it does not... |
@f3l1x Thanks! It works now as before. |
@f3l1x Seems like schemaAssetsFilter changed its behaviour. Previously:
with Now it returns
Is it a bug, or feature? |
It's a bug. Will repair. Fixed here 00c5783. Please test it. |
Sorry, did not notice you have edited your last comment (no futher notification). I have tested it now and the problem has been solved by this commit. |
Good news. :-) |
Hi @f3l1x , I have trouble with sortable injected through this package. Trying to call:
Versions 0.9@dev dbal+orm, cache 0.4, annotations 0.8 leads to the error message:
with failure in here This is how dump of In versions 0.8 dbal+orm, cache 0.3, annotations 0.7 it works just fine. This is how dump of When updating from old (working) version to new (problematic) version, these are the packages that get updated:
|
@f3l1x Do you have idea, where I should be searching for the source of the problem? I can try to fix myself. UPDATE: so the problem seems to be linked with dropping ContainerAwareEventManager and introducing ContainerEventManager with these lines creating anonymous class instead of class of a neccessary type. UPDATE2: I have fixed the issue by replacing these lines with: public function addServiceSubscriber(string|array $events, string $service): void
{
$this->addEventListener($events, $this->container->getService($service));
} I might have introduced some new problems, but this issue seems to be solved by this. The only behaviour that changed now, is that hash |
Thanks, I will take a look. |
Thanks @f3l1x , the problem seems to be fixed now. |
@f3l1x Not sure if my problem, or bug, I've noticed that Debug panel is empty when using this branch. I have:
Will investigate further. |
Yes, it's empty. I must reimplement it, because there is no logger in DBAL anymore. I must use middlewares and custom classes. |
Version 0.9.x is bumped. I work on 0.10.x with DBAL 4.2+ requirements and multi connection support. Closing here. |
Please, when will the new version with PHP 8.2 support be released?
The text was updated successfully, but these errors were encountered: