-
Notifications
You must be signed in to change notification settings - Fork 85
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
chore: Update typeorm to v3 #2838
chore: Update typeorm to v3 #2838
Conversation
There will likely be quite a bit of debate on this issue. I believe it is unlikely that TypeORM will revert to the old behavior unless some critical role of that old behavior is highlighted in the discussion. BTW, I personally also prefer using approaches like So I suggest we migrate to the new behavior, but do try to handle places that may be impacted, like We could consider some actions to reduce the psychological burden of migrating from old to new behavior, such as temporarily (or permanently) removing We could also consider patching TypeORM to report (just code locations) to something like Sentry when it receives |
5a4a3d2
to
4a9eab9
Compare
89d7c5e
to
faf6c69
Compare
It's ready for review now. Please have a review. @Keith-CY @homura @devchenyan @WhiteMinds |
cd78f32
to
c61f968
Compare
Conflicted |
7176923
to
d9a1d9b
Compare
@silySuper now focuses on other issues, I'd suggest merging this one first and verify it in a regression test. |
/package |
@yanguoyu Regression testing found problems, not fully replaced. |
I guess |
Another package I download yesterday can claim successfully.I do not change any file relate to sqlite manually. 2024-03-29.14.50.48.movThis is my sqlite : |
I'm not sure whether your local SQLite file is migrated by Neuron, Could you upload the main.log? |
Besides, you can back up the SQLite files and then delete these files to test run by creating a new local file. |
Ok,this operation will sync from 0%,I am waiting it to sync 100% |
d9a1d9b
to
ba419a7
Compare
This PR https://github.com/typeorm/typeorm/pull/9751/files#diff-4cfd478e52f9edd89cf748e00253bfb16a436f300c5c93404739a51433edca1aR39-R47 change the |
After open the neuron and turn off the computer at the same time for a long time,the log shows |
Any update on this PR |
/package |
Verified, could be merged first and tested again by @silySuper in regression tests. |
When I want to use the find operator with the column that has the
transform
property. It can not work well. It has been fixed by typeorm/typeorm#9777. So I want to updatetypeorm
to v3. But it brings in another issue typeorm/typeorm#9316.Assume there exists a table
table_a
.Currently, it's hard to check how many query has been affected, we can have a full test after the new UI release. Or
waiting for the
https://github.com/typeorm/typeorm/issues/9316
conclusion then update typeorm. What do you think? @Keith-CY @WhiteMinds @homura