#Breaking Changes 0.2.1 -> 0.3.x composio core
6 messages · Page 1 of 1 (latest)
Hey @frosty jackal, you can keep an eye on our changelog: https://docs.composio.dev/docs/changelog.
Also, could you share more details on the issue you are facing so we can help you out? Thanks!
ECS containers are crashing and it appears it was due to a newly introduced bunlding issue
My investigation so far:
The issue was in @composio/core/dist/chunk-SfbczIpV.mjs:
var __require = /* @PURE */ createRequire(import.meta.url);
This is in the ESM chunk file from @composio/core. When esbuild bundles this ESM file into CJS,
it converts import.meta to an empty object {}, causing import.meta.url to be undefined.
Thanks for flagging this! I've escalated it to the eng team and I'll keep you updated.
I think It will work if I bundle as external, trying that now. Appreciate the quick repsonse here though