getsentry / sentry-webpack-plugin

Repo moved to https://github.com/getsentry/sentry-javascript-bundler-plugins. Please open any issues/PRs there.
MIT License
662 stars 116 forks source link

fix: Update @sentry/cli to 1.75.0 to fix ansi-regex security warning #427

Closed mydea closed 1 year ago

mydea commented 1 year ago

1.75.0 should fix the ansi-regex security warning.

martin-ingka commented 1 year ago

Hi @mydea et.al. Will there be a release containing these latest commits in the near future? Looks like there are som useful updates since 1.20.0. /Cheers

mydea commented 1 year ago

Hey,

we do not have a pinned dependency on @sentry/cli, so if you do a fresh install you'll always get the latest 1.x version of @sentry/cli.

If you want to update this transitive dependency, you can do so with your package manager of choice. E.g. the most robust way to do this with yarn is to remove the @sentry/cli entry from yarn.lock and run yarn install again - you'll then have the latest 1.x version of @sentry/cli!

martin-ingka commented 1 year ago

Ok, thanks @mydea !