-
-
Notifications
You must be signed in to change notification settings - Fork 285
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
Add support for MikroORM v6 #2630
Labels
Comments
derevnjuk
added a commit
to derevnjuk/tsed
that referenced
this issue
Apr 23, 2024
derevnjuk
added a commit
to derevnjuk/tsed
that referenced
this issue
Apr 23, 2024
derevnjuk
added a commit
to derevnjuk/tsed
that referenced
this issue
Apr 23, 2024
derevnjuk
added a commit
that referenced
this issue
Apr 23, 2024
🎉 This issue has been resolved in version 7.67.8 🎉 The release is available on:
Your semantic-release bot 📦🚀 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Is your feature request related to a problem? Please describe.
Using tsed with recent versions of mikro orm (6+) leads to issues like below. This is because MikroORM has renamed that function to create and it can now be awaited.
TypeError: core_1.RequestContext.createAsync is not a function
in this file: packages/orm/mikro-orm/src/services/MikroOrmContext.ts
From Docs:
const ret = await RequestContext.createAsync(em, async () => { ... })
now becomes
const ret = await RequestContext.create(em, async () => { ... })
Describe the solution you'd like
Updating dependencies to work with recent versions of mikro orm
Describe alternatives you've considered
No response
Additional context
No response
Acceptance criteria
No response
The text was updated successfully, but these errors were encountered: