@sentry/cli 2.17.1 → 2.17.3

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/checksums.txt CHANGED
@@ -1,9 +1,9 @@
1
- sentry-cli-Darwin-arm64=a9a190cea6e1d0aee6295cdae4626ffd299534ef4974e3fca6b72dbc04ea450a
2
- sentry-cli-Darwin-universal=ac25c90ba04411bf8d75035a4de4195a2a5ef9ea6d1067128fc76c1dcd2d973c
3
- sentry-cli-Darwin-x86_64=f94fc13fa653a4a80ae9c1d3695967a53a745c4d6867fb73437c06454621ecc3
4
- sentry-cli-Linux-aarch64=484f0c59c85663c49a0b190fc4dd439ee8b0fc5a9a353e0681ace392d6875744
5
- sentry-cli-Linux-armv7=8894b48934ded383376701a0daa0ac04037846203373f6ec50ff191468add6b4
6
- sentry-cli-Linux-i686=e0064c765f446a8f17c49c93ba8615a70ddb3fa077633a3c1b29c42286697065
7
- sentry-cli-Linux-x86_64=7f6a7f1abbd3f3012ec24373b323ec8e9c400057a45edddc47941be8bc5729ac
8
- sentry-cli-Windows-i686.exe=2bb148267b1f42604f9226d9b2958fe32a2665e22809cbe745f2194a1269ccea
9
- sentry-cli-Windows-x86_64.exe=8aa178120470f85a8ab5f39edfa0c23292dfaec62e770425100669c62de40072
1
+ sentry-cli-Darwin-arm64=1e770ea781e1b0c200c0edd1026d1d5eb93154bc1b3caab48e86bbb8b2d5e139
2
+ sentry-cli-Darwin-universal=1dd232fb2bb3f748b57a812969755d82caef95274b0a7992adb683d867115052
3
+ sentry-cli-Darwin-x86_64=2f0429d0f8488db25fb736d98e0f9ac50f4649cfe988b41957e3a7f31cd5449a
4
+ sentry-cli-Linux-aarch64=54f140230958c142a686f342931a710f8370cf4e5e29e3ac9eaa62a1acd0db21
5
+ sentry-cli-Linux-armv7=7da43a5f9525d48ec9b73fe883ba73199ee9c03446e21228761c6e6103be99b6
6
+ sentry-cli-Linux-i686=0b14c34b0b0dd72b3f42cdcd9cba51775ebd93233b90002f25fe17057ca2018d
7
+ sentry-cli-Linux-x86_64=f4433381f4dae424ffad88a40f863f7ed66c450f37038e0673e30adf8e1f7040
8
+ sentry-cli-Windows-i686.exe=347c7d9908b414fd56729b8bc792355a585d4b711faf3ba76ebfe8ef4fa6830f
9
+ sentry-cli-Windows-x86_64.exe=3971a181dac9b265fd0db168e244c1e2fb08cbeeb659bd60c1ef32da9e9b9204
package/js/helper.js CHANGED
@@ -61,7 +61,7 @@ function mockBinaryPath(mockPath) {
61
61
  function serializeOptions(schema, options) {
62
62
  return Object.keys(schema).reduce((newOptions, option) => {
63
63
  const paramValue = options[option];
64
- if (paramValue === undefined) {
64
+ if (paramValue === undefined || paramValue === null) {
65
65
  return newOptions;
66
66
  }
67
67
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sentry/cli",
3
- "version": "2.17.1",
3
+ "version": "2.17.3",
4
4
  "description": "A command line utility to work with Sentry. https://docs.sentry.io/hosted/learn/cli/",
5
5
  "repository": "git://github.com/getsentry/sentry-cli.git",
6
6
  "homepage": "https://docs.sentry.io/hosted/learn/cli/",