New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

beachball

Package Overview
Dependencies
Maintainers
2
Versions
246
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

beachball - npm Package Compare versions

Comparing version 2.25.0 to 2.25.1

12

CHANGELOG.md
# 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

14

lib/publish/bumpAndPush.js

@@ -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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc