-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Announcement: We're on the v7 Road! #4882
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
Comments
This PR fixes the AWS Lambda layer in @sentry/serverless. The problem was caused by changes introduced in #4882. Some unintended consequences of these changes were: - By centralising most .npmignore files, npm-packlist did not find all the necessary (but also unnecessary) files when creating the list of files that should end up in the lambda layer Zip file. Due to the missing .npmignore files, it resorted to .gitignore which ignores generated JS files. This PR re-adds local .npmignore files in the dependencies of @sentry/serverless to fix this. - @sentry/tracing is a special case where we need to execute prepack.ts also after building. The call to prepack was missing the --bundles flag, resulting in a weird directory structure. This PR adds the flag and adjusts the sideEffects entry we need for our integration tests. As a hotfix, this PR ensures further that the directory structure in the Lambda layer conforms to the NODE_OPTIONS environment variable set by Sentry
Hello everyone, we just released the first v7 beta version of the SDK - Looking forward to receiving your feedback! |
@Lms24 Does v7 improve multiple client support (when it comes to integrations + support for module federation)? |
Hi @mlmmn This overall means that multi-hub/client support was not improved greatly with v7 but rest assured that we're aware of the issues and we're working on improving this. On a side note, a very small bugfix (#5046) that fixed some occasions of transactions not being sent to the correct DSN in a multi-hub scenario recently made it into our |
Worth to mention: #3865 (comment) |
v7 has been released! Please reach out if you have any feedback! https://github.com/getsentry/sentry-javascript/releases/tag/7.0.0 |
Congrats for the amazing 7 💯 |
Hi everyone!
We wanted to notify you all that we're currently working actively towards the release of our next major version of the JavaScript SDKs - v7 🚀
This means that we're temporarily pausing work on
master
and we're focussing on incorporating all (breaking) changes that will be introduced with v7. Feel free to take a look at our v7 roadmap (#4240).Also, check out our v7 progress here: master...7.x
Migration guide: https://github.com/getsentry/sentry-javascript/blob/7.x/MIGRATION.md
Over the course of the next weeks we'll be releasing a few v7 beta versions for everyone to try out. As always, please feel free to submit feedback. In the meantime, we'll do our best to answer your issues and questions as usual but we ask for your understanding that it might take longer than usual before we get back to you. We'll work on non-critical issues and changes once v7 is released.
Thank you for your support and we're looking forward to receiving your feedback and input from the v7 releases!
The text was updated successfully, but these errors were encountered: