-
-
Notifications
You must be signed in to change notification settings - Fork 4.6k
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
Fix loading files section for plugins #10065
Conversation
See #10024 (comment) tho :) But yeah, while the situation with updates isn't ideal and may lead to broken processes, it's maybe better than the current situation.. I am not sure really. |
I read that, but I miss reasons why to understand this feeling you express in that comment :) |
Well.. there is #10024 (comment) showing an example scenario. Another scenario that could break is like:
Plus the fact that these files were never loaded during composer runs, and now they would be, and that may trigger all sorts of unforeseen effects. So I'm not 100% against, but it is not without risks, and I'm not sure it's worth it. |
don't we have the same issue with class autoloader? when a plugin use a class that is updated? |
Not really because the class is already in memory and it won't be loaded again. Sure you may have problems if the code changed massively and is not compatible anymore, but that's something we really cannot fix. Plugins should thus ideally be rather self-contained as much as possible. |
sounds like the same edge case.. one could changes code of a class, adds methods, changes interface signature... If it worth it for classes, I believe it is the same for functions/polyfills
Indeed, this is the major risk of this change. |
Maybe plugins shouldn't be allowed to have a "files" section, but their dependencies should?
I don't think it is: those files are autoloaded for regular runs without such issues. |
Ok, maybe we can try it out for 2.2, but I think it's too risky to smuggle this as a bugfix. |
eabbd11
to
c1d432a
Compare
Works for me, PR rebased. |
What worries me more with such change aren't polyfill packages for which the files are included, but the fact that literally anything can be done in these inclusion files, as there is no specification for that. While one could of course include side effects in class files as well, doing so (IIRC) violates the PSR-4 specification. But we indeed will not find out without trying how much will break. Hopefully we're lucky. |
This is true, but this is not specific to plugins. Regular auloaders already load those files. The plugin's autoloader has nothing specific to care about on this topic. |
There is quite a difference between runtime inclusion of the autoload file and building a temporary autoloader on the fly during Composer build time. One example Jordi gave before is renaming the inclusion file and declaring the same symbols during update. In previous Composer versions composer updates failed likely, when a plug-in was updated with incompatible classes. Now the update process is much more likely to fail for any dependent package changing autoload includes. Anyway. We'll see where this goes. Maybe it'll be fine |
I belive this is a bug and So 🚀 from my side. If execution of plugins can be easily detected, please post the condition here so developers who did not want |
Thanks! |
Is this causing the issues in #10277 ? |
Magento2 uses the file autoloader for module registration, but that seems to rely on having the normal namespaced autoloading available. |
This fixed my issue with Laravel, but not with Magento 2 unfortunately.
|
@barryvdh please report an issue with more details how one can reproduce this. I'm assuming it's an issue with a magento package/plugin not requiring all its dependencies though.. |
Fixes: composer#10311 Related: composer#10065
Fixes: composer#10311 Related: composer#10065
Trying to help move #10024 forward.