@sentry/cli 2.17.2 → 2.17.4

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=b45c3d1fdb403fdfdbce0c0a009a529a803290ea058941ae7a09d8856aeffd06
2
- sentry-cli-Darwin-universal=5a6048f3eac5ef49f9b788d003a976ecc54d5546606f87d125db930c52323411
3
- sentry-cli-Darwin-x86_64=40469a50a74cebfd04c449336809e998c4df941d8aa683971ce1d1f581276502
4
- sentry-cli-Linux-aarch64=9cc2d84b09b3e0e0d062b8893f1d5dec1eee512f465cc2d0dbcf51ca6620d1a0
5
- sentry-cli-Linux-armv7=4ae82bd29ef00eb258ee6136a46fae745d7f73396e7b7213eb8bcbdf3d3f7bb6
6
- sentry-cli-Linux-i686=f9ec33357136423f5aac598c8c42fc0f6795a29a332dfc34099c6ba8b1307a0b
7
- sentry-cli-Linux-x86_64=18bfbae6c184d976d30f54375815fabe6cfb4e6b7786298bc56f4f1c76a96c2c
8
- sentry-cli-Windows-i686.exe=91da10de2fbdde03aae6f11af3544108d946366afbaaebec982d26fa27ae315a
9
- sentry-cli-Windows-x86_64.exe=1042ec8ec50bca8bc68a3b8b6e58cda6cadf63c23f4245af62971a8e3af2eccd
1
+ sentry-cli-Darwin-arm64=e9c352402970fd0bd9b3bec27c0d19e6b74220f35c48651cc0a9396c39a13e33
2
+ sentry-cli-Darwin-universal=2918835561d4d319630234e4dff906177e87aa1fd745c7f90b1288c275c4e1f1
3
+ sentry-cli-Darwin-x86_64=d4dbe03f23997469940647157b3990de6fc5c14ccc926b26a0c3a8daad4709dc
4
+ sentry-cli-Linux-aarch64=dd0cd28b3daa422c0c1bb748d276d74ec65d84a2241e77ab04ebf96f6b200faf
5
+ sentry-cli-Linux-armv7=5cf86e86f344f3bf00acb0010eadf7055ee08d71aadbdd87ac5531a3a0b8c43d
6
+ sentry-cli-Linux-i686=cd641ec59233e8f04e5e06122e69d9431b02fafcef6d751e6a134410152605a4
7
+ sentry-cli-Linux-x86_64=45834bbedcf3f7ec901159f8f9c885d3b0b93cab959ac7f288c56ed37e741d72
8
+ sentry-cli-Windows-i686.exe=55d9578d429f89309b4edc3588ed7d40ff9b90b6a4e96c32e5754775c970b385
9
+ sentry-cli-Windows-x86_64.exe=d87cceb5edfef2e4744c0fe49ba6de0b86da0767406d6803a4525bf5539d98d7
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.2",
3
+ "version": "2.17.4",
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/",