diff --git a/src/platforms/javascript/guides/angular/angular1.mdx b/src/platforms/javascript/guides/angular/angular1.mdx index ec8645aa136fb1..afeff1d128a624 100644 --- a/src/platforms/javascript/guides/angular/angular1.mdx +++ b/src/platforms/javascript/guides/angular/angular1.mdx @@ -7,16 +7,22 @@ redirect_from: If you're using `AngularJS 1.x`, you can use Sentry's AngularJS integration. + + +From version 7 onwards, the Sentry JavaScript SDK will not support AngularJS 1.x. Please use version 6.x of the SDK if you want to use Sentry in combination with AngularJs 1.x. + + + ### Install Install `@sentry/browser` and `@sentry/integrations` using `yarn` or `npm`: ```bash # Using yarn -yarn add @sentry/browser @sentry/integrations +yarn add @sentry/browser@6 @sentry/integrations@6 # Using npm -npm install --save @sentry/browser @sentry/integrations +npm install --save @sentry/browser@6 @sentry/integrations@6 ``` and afterwards using it like this: @@ -41,14 +47,14 @@ If you're using the CDN version of the SDK, Sentry provides a standalone file fo ```html