Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@changesets/git

Package Overview
Dependencies
Maintainers
4
Versions
33
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@changesets/git - npm Package Compare versions

Comparing version 3.0.1 to 3.0.2

8

CHANGELOG.md
# @changesets/git
## 3.0.2
### Patch Changes
- [#1487](https://github.com/changesets/changesets/pull/1487) [`7323704`](https://github.com/changesets/changesets/commit/7323704dff6e76f488370db384579b86c95c866f) Thanks [@bluwy](https://github.com/bluwy)! - Bump `micromatch` dependency to ^4.0.8 to prevent installing version with vulnerability
- [#1514](https://github.com/changesets/changesets/pull/1514) [`962ab91`](https://github.com/changesets/changesets/commit/962ab918bc2deb89012a0cefce10387997cc54ed) Thanks [@nicoalonsop](https://github.com/nicoalonsop)! - Update spawndamnit to fix [cross-spawn vulnerability](https://security.snyk.io/vuln/SNYK-JS-CROSSSPAWN-8303230)
## 3.0.1

@@ -4,0 +12,0 @@

2

dist/changesets-git.cjs.js

@@ -66,3 +66,3 @@ 'use strict';

if (cmd.code !== 0) {
throw new Error(`Failed to find where HEAD diverged from ${ref}. Does ${ref} exist?`);
throw new Error(`Failed to find where HEAD diverged from "${ref}". Does "${ref}" exist and it's synced with remote?`);
}

@@ -69,0 +69,0 @@

@@ -54,3 +54,3 @@ import spawn from 'spawndamnit';

if (cmd.code !== 0) {
throw new Error(`Failed to find where HEAD diverged from ${ref}. Does ${ref} exist?`);
throw new Error(`Failed to find where HEAD diverged from "${ref}". Does "${ref}" exist and it's synced with remote?`);
}

@@ -57,0 +57,0 @@

{
"name": "@changesets/git",
"version": "3.0.1",
"version": "3.0.2",
"description": "Some git helpers that changesets use to get information",

@@ -25,4 +25,4 @@ "main": "dist/changesets-git.cjs.js",

"is-subdir": "^1.1.1",
"micromatch": "^4.0.2",
"spawndamnit": "^2.0.0"
"micromatch": "^4.0.8",
"spawndamnit": "^3.0.1"
},

@@ -29,0 +29,0 @@ "devDependencies": {

# @changesets/git
[![View changelog](https://img.shields.io/badge/changelogs.xyz-Explore%20Changelog-brightgreen)](https://changelogs.xyz/@changesets/git)
[![npm package](https://img.shields.io/npm/v/@changesets/git)](https://npmjs.com/package/@changesets/git)
[![View changelog](https://img.shields.io/badge/Explore%20Changelog-brightgreen)](./CHANGELOG.md)

@@ -5,0 +6,0 @@ A collection of helper functions used internally in changesets to make git operations easier.

@@ -52,3 +52,3 @@ import spawn from "spawndamnit";

throw new Error(
`Failed to find where HEAD diverged from ${ref}. Does ${ref} exist?`
`Failed to find where HEAD diverged from "${ref}". Does "${ref}" exist and it's synced with remote?`
);

@@ -55,0 +55,0 @@ }

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