-
Notifications
You must be signed in to change notification settings - Fork 2.1k
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
Revert "Dispatch upgradeAppStoreApps event" #27729
Conversation
Hmm, might as well cleanup the remaining unneeded code. |
lib/private/Updater.php
Outdated
$this->emit('\OC\Updater', 'incompatibleAppDisabled', [$app]); | ||
continue; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@VicDeo should we still keep this ? I'm not sure if a full revert is a good idea.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@PVince81 yes, looks like this part had a logic flaw before
If we revert this it seems some of the workflow will change, so might need a full retest of the update code. |
@VicDeo can you finish this for 10.0.1 ? Seems we'll need to keep some logic. |
@VicDeo please finish this if applicable, else close |
@PVince81 @DeepDiver1975 do we need auto disable as a last line of defence? |
UnresolvableWord: |
@PVince81 oh. it should sound like |
@VicDeo auto-disable on update ? I think we removed that... currently the only auto-disable that's left is if the app throws an exception in app.php, and that's during app load, not install |
@PVince81 not exactly. Another story that reaching this point is blocked by repair step. |
ah yes... incompatible apps... yes, let's disable these automatically |
moving to "planned" |
c851797
to
7ecab71
Compare
Rebased. |
@PVince81 I'm feeling like killing more code here. |
@VicDeo sounds good |
f76154d
to
9014586
Compare
Rebased. Squashed. |
9014586
to
f46cb38
Compare
👍 apps are still properly fetched from the market |
@VicDeo please backport to stable10 |
Stable10: #29249 |
This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
Reverts #27648 and some cleanup for upgrade process.
As suggested in #27711 (comment)
@VicDeo