beachball
Advanced tools
Comparing version 2.25.0 to 2.25.1
# Change Log - beachball | ||
This log was last generated on Wed, 13 Jul 2022 21:17:48 GMT and should not be manually modified. | ||
This log was last generated on Thu, 14 Jul 2022 21:17:06 GMT and should not be manually modified. | ||
<!-- Start content --> | ||
## 2.25.1 | ||
Thu, 14 Jul 2022 21:17:06 GMT | ||
### Patches | ||
- Added error handling for git fetch (viditganpi10@gmail.com) | ||
## 2.25.0 | ||
Wed, 13 Jul 2022 21:17:48 GMT | ||
Wed, 13 Jul 2022 21:17:51 GMT | ||
@@ -11,0 +19,0 @@ ### Minor changes |
@@ -33,7 +33,13 @@ "use strict"; | ||
if (options.fetch !== false) { | ||
if (options.depth) { | ||
workspace_tools_1.gitFailFast(['fetch', remote, remoteBranch, `--depth=${options.depth}`], { cwd }); | ||
try { | ||
if (options.depth) { | ||
workspace_tools_1.gitFailFast(['fetch', remote, remoteBranch, `--depth=${options.depth}`], { cwd }); | ||
} | ||
else { | ||
workspace_tools_1.gitFailFast(['fetch', remote, remoteBranch], { cwd }); | ||
} | ||
} | ||
else { | ||
workspace_tools_1.gitFailFast(['fetch', remote, remoteBranch], { cwd }); | ||
catch (err) { | ||
console.warn(`[WARN ${tryNumber}/${BUMP_PUSH_RETRIES}]: fetch from ${branch} has failed!\n${err}`); | ||
continue; | ||
} | ||
@@ -40,0 +46,0 @@ } |
{ | ||
"name": "beachball", | ||
"version": "2.25.0", | ||
"version": "2.25.1", | ||
"description": "The Sunniest Semantic Version Bumper", | ||
@@ -5,0 +5,0 @@ "repository": { |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
422169
6556