@sentry/cli 1.69.0 → 1.71.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,6 +1,31 @@
1
1
  # Changelog
2
2
 
3
- "You know what they say. Fool me once, strike one, but fool me twice... strike three." — Michael Scott
3
+ "You know what they say. Fool me once, strike one, but fool me twice... strike three." — Michael Scott
4
+
5
+ ## 1.71.0
6
+
7
+ * feat: Add optional positional argument to `send-event` that allows to specify a path to JSON serialized events (#1058)
8
+ * fix: Handle `SENTRY_CLI_NO_EXIT_TRAP` unbound variable (#1059)
9
+
10
+ ## 1.70.1
11
+
12
+ * feat: Add `SENTRY_CLI_NO_EXIT_TRAP` flag to control EXIT trap in `bash-hook` command (#1050)
13
+ * fix: Remove warning about relative urls for chunk uploads (#1054)
14
+ * fix: Typo in `vscRemote` TS type (#1052)
15
+ * fix: Use internal timer for ProgressBar duration (#1055)
16
+ * ref: Update dockerfile alpine image (#1057)
17
+
18
+ ## 1.70.0
19
+
20
+ * feat: Add `no-upload` flag for `upload-dif` command (#1044)
21
+ * feat: Add support for glob patterns in `upload-sourcemaps` command (#1048)
22
+ * feat: Allow to load dotenv from non-standard path through `SENTRY_DOTENV_PATH` (#1046)
23
+ * fix: Follow symlinks when traversing during sourcemaps upload (#1043)
24
+ * ref: Use `SOURCE_VERSION` first prior to `HEROKU_SLUG_COMMIT` in Heroku (#1045)
25
+
26
+ ## 1.69.1
27
+
28
+ * misc: Re-release of `1.69.0` due to malformed artifacts
4
29
 
5
30
  ## 1.69.0
6
31
 
package/js/index.d.ts CHANGED
@@ -37,7 +37,7 @@ declare module '@sentry/cli' {
37
37
  * Version control system remote name.
38
38
  * This value will update `SENTRY_VCS_REMOTE` env variable.
39
39
  */
40
- vscRemote?: string;
40
+ vcsRemote?: string;
41
41
  /**
42
42
  * Unique identifier for the distribution, used to further segment your release.
43
43
  * Usually your build number.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sentry/cli",
3
- "version": "1.69.0",
3
+ "version": "1.71.0",
4
4
  "description": "A command line utility to work with Sentry. https://docs.sentry.io/hosted/learn/cli/",
5
5
  "homepage": "https://docs.sentry.io/hosted/learn/cli/",
6
6
  "license": "BSD-3-Clause",