From 0d8fad7966e8046c94ff3bca59bd7904a3718626 Mon Sep 17 00:00:00 2001 From: Krystof Woldrich Date: Mon, 25 Sep 2023 10:33:26 +0200 Subject: [PATCH 1/5] Add sentry-angular-ivy to optinal deps --- package.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/package.json b/package.json index 45f2a092..f2744b9f 100644 --- a/package.json +++ b/package.json @@ -40,11 +40,15 @@ "license": "MIT", "peerDependencies": { "@capacitor/core": ">=3.0.0", + "@sentry/angular-ivy": "7.70.0-beta.1", "@sentry/angular": "7.70.0-beta.1", "@sentry/react": "7.70.0-beta.1", "@sentry/vue": "7.70.0-beta.1" }, "peerDependenciesMeta": { + "@sentry/angular-ivy": { + "optional": true + }, "@sentry/angular": { "optional": true }, From b21647865d75b7f00ae81268a22845c726f85f3b Mon Sep 17 00:00:00 2001 From: Austin Hunter Date: Thu, 14 Sep 2023 13:24:52 -0500 Subject: [PATCH 2/5] Update README.md --- README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index a5e53493..1e998d16 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,11 @@ _Bad software is everywhere, and we're tired of it. Sentry is on a mission to he ## Installation ```bash -yarn add @sentry/capacitor @sentry/angular --exact +#Angular 12 and newer: +npm install --save @sentry/capacitor @sentry/angular-ivy + +#Angular 10 and 11: +npm install --save @sentry/capacitor @sentry/angular ``` ## Usage From b272890e797058619d8befbed6fdf5abde884c3a Mon Sep 17 00:00:00 2001 From: Krystof Woldrich Date: Mon, 25 Sep 2023 10:43:09 +0200 Subject: [PATCH 3/5] Return yarn --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 1e998d16..4f29c7c2 100644 --- a/README.md +++ b/README.md @@ -13,11 +13,11 @@ _Bad software is everywhere, and we're tired of it. Sentry is on a mission to he ## Installation ```bash -#Angular 12 and newer: -npm install --save @sentry/capacitor @sentry/angular-ivy +# Angular 12 and newer: +yarn add --exact @sentry/capacitor @sentry/angular-ivy -#Angular 10 and 11: -npm install --save @sentry/capacitor @sentry/angular +# Angular 10 and 11: +yarn add --exact @sentry/capacitor @sentry/angular ``` ## Usage From de0abb9af8ec1062bdf12c0905904f65b9b14e34 Mon Sep 17 00:00:00 2001 From: Krystof Woldrich Date: Mon, 25 Sep 2023 10:44:13 +0200 Subject: [PATCH 4/5] fix exact --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 4f29c7c2..2c233711 100644 --- a/README.md +++ b/README.md @@ -14,10 +14,10 @@ _Bad software is everywhere, and we're tired of it. Sentry is on a mission to he ```bash # Angular 12 and newer: -yarn add --exact @sentry/capacitor @sentry/angular-ivy +yarn add @sentry/capacitor @sentry/angular-ivy --exact # Angular 10 and 11: -yarn add --exact @sentry/capacitor @sentry/angular +yarn add @sentry/capacitor @sentry/angular --exact ``` ## Usage From 88e43a8860f74b4e56d790e4ce9eb08e14d916d5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kry=C5=A1tof=20Wold=C5=99ich?= <31292499+krystofwoldrich@users.noreply.github.com> Date: Tue, 3 Oct 2023 15:14:15 +0200 Subject: [PATCH 5/5] Update CHANGELOG.md --- CHANGELOG.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index de9ee45f..77a1533a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## Unreleased + +### Fixes + +- Add sentry-angular-ivy to optional dependencies ([#469](https://github.com/getsentry/sentry-capacitor/pull/469)) + ## 0.13.0-beta.1 ### Fixes