-
Notifications
You must be signed in to change notification settings - Fork 2.4k
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 ExternalAuthenticationMigrations namespace #17370
base: main
Are you sure you want to change the base?
Conversation
@hishamco you can't rename the migration file or it's name space as this will treat the migration as a new migration and it will run as a new migration (even if the logic ran before). |
Right, that's why I need this for |
It does not add any value. There is no point of this change which will cause every tenant to run this migration which could potentially case issue with no value added beside a name change. |
This way if there's a historical issue either in migrations or service we can't fix any anymore, that's why major releases open the possibility of breaking things |
I agree with @MikeAlhayek, this is not worth the possible problems. |
That means if we made a mistake accidentally in a previous release, there's no way to fix it. There are many things need to be aligned from the beginning but we hold until a major release, so we don't break anyone |
@hishamco can we close this? |
I noticed @sebastienros commenting on #17414 and #17189 which are quite similar. I know changing the namespace is critical in this case but I'm still thinking have a proper namespace for APIs is something valuable especially in any frameworks @sebastienros if you have a better option please let me know, otherwise feel free to close |
This is different from the other PRs, because it is only about an internally used namespace which is not perfect. This namespace is not used anywhere. And additionally it is moving a data migration, which causes updates to the database without a real need. |
No description provided.