diff --git a/.gitignore b/.gitignore index cd23e592..1bd20429 100644 --- a/.gitignore +++ b/.gitignore @@ -7,4 +7,6 @@ yarn-error.log *.tgz .nxcache -packages/**/yarn.lock \ No newline at end of file +packages/**/yarn.lock + +.DS_Store \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 67ef2eb9..a5fa3c52 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,10 @@ - "You know what they say ‘Fool me once, strike one, but fool me twice… strike three.’" — Michael Scott -Work in this release was contributed by @thecodewarrior. Thank you for your contribution! +## 3.6.0 + +- feat(core): Don't add `debugIdUploadPlugin` when sourcemaps option is disabled ([#753](https://github.com/getsentry/sentry-javascript-bundler-plugins/pull/753)) +- fix(core): Avoid showing success message if upload was disabled or nothing was uploaded ([#757](https://github.com/getsentry/sentry-javascript-bundler-plugins/pull/757)) ## 3.5.0 diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 6f6d82e8..b3935d9d 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -81,10 +81,10 @@ _These steps are only relevant to Sentry employees when preparing and publishing ### Updating the Changelog 1. Create a new branch. -2. Run `git log --format="- %s"` and copy everything since the last release. +2. Run `yarn changelog` and copy all commits in the list. 3. Create a new section in the changelog, deciding based on the changes whether it should be a minor bump or a patch release. -4. Paste in the logs you copied earlier. +4. Paste in the commits you copied earlier. 5. Delete any which aren't user-facing changes. 6. Alphabetize the rest. 7. If any of the PRs are from external contributors, include underneath the commits `Work in this release contributed by . Thank you for your contributions!`. If there's only one external PR, don't forget to remove the final `s`. If there are three or more, use an Oxford comma. (It's in the Sentry styleguide!) -8. Commit, push, and open a PR with the title `meta: Update changelog for `. +8. Commit, push, and open a PR against `main` with the title `meta: Update changelog for `.