Skip to content

meta: Update changelog for 3.0.0 #657

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

Merged
merged 3 commits into from
Jan 15, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 10 additions & 7 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,21 +8,24 @@

### Breaking Changes

- Code injected into bundles now uses:
- Injected code will now use `let`, which was added in ES6 (ES2015).
This means that ES6 is the minimum JavaScript version that the Sentry bundler plugins support.

- `const` which was added in ES6 (ES2015) (#646)
- `globalThis` which was added ES2020 but can be polyfilled (#610)

- Deprecated configuration options have been removed:
- Deprecated options have been removed:
- `deleteFilesAfterUpload` - Use `filesToDeleteAfterUpload` instead
- `bundleSizeOptimizations.excludePerformanceMonitoring` - Use `bundleSizeOptimizations.excludeTracing` instead
- `_experiments.moduleMetadata` - Use `moduleMetadata` instead
- `cleanArtifacts` - Did not do anything

### Other Changes
### List of Changes

- fix(webpack): Ensure process exits when done (#653)
- fix!: Wrap injected code in block-statement to contain scope (#646)
- chore!: Remove deprecated options (#654)
- feat(logger): Use console methods respective to log level (#652)
- fix(webpack): Ensure process exits when done (#653)
- fix: Use correct replacement matcher for `bundleSizeOptimizations.excludeTracing` (#644)

Work in this release contributed by @jdelStrother. Thank you for your contribution!

## 2.23.0

Expand Down
Loading