Socket
Socket
Sign inDemoInstall

simple-git

Package Overview
Dependencies
Maintainers
2
Versions
259
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

simple-git - npm Package Compare versions

Comparing version 3.0.4 to 3.1.0

7

CHANGELOG.md
# Changelog
## [3.1.0](https://www.github.com/steveukx/git-js/compare/repo-v3.0.4...repo-v3.1.0) (2022-01-23)
### Features
* optionally include ignored files in `StatusResult` ([70e6767](https://www.github.com/steveukx/git-js/commit/70e676759012d26ab644644e10f7957fba51ae2f)), closes [#718](https://www.github.com/steveukx/git-js/issues/718)
### [3.0.4](https://www.github.com/steveukx/git-js/compare/repo-v3.0.3...repo-v3.0.4) (2022-01-23)

@@ -4,0 +11,0 @@

2

package.json

@@ -5,3 +5,3 @@ {

"private": false,
"version": "3.0.4",
"version": "3.1.0",
"author": "Steve King <steve@mydev.co>",

@@ -8,0 +8,0 @@ "contributors": [

@@ -407,3 +407,3 @@ # Simple Git

```javascript
//
// results in 'git pull origin master --no-rebase'
git.pull('origin', 'master', ['--no-rebase'])

@@ -410,0 +410,0 @@ ```

@@ -7,2 +7,3 @@ import { StatusResult } from '../../../typings';

deleted: never[];
ignored: undefined;
modified: never[];

@@ -9,0 +10,0 @@ renamed: never[];

@@ -311,2 +311,11 @@ import { DefaultLogFields } from '../src/lib/tasks/log';

deleted: string[];
/**
* Ignored files are not listed by default, add `--ignored` to the task options in order to see
* this array of ignored files/paths.
*
* Note: ignored files will not be added to the `files` array, and will not be included in the
* `isClean()` calculation.
*/
ignored?: string[];
modified: string[];

@@ -313,0 +322,0 @@ renamed: StatusResultRenamed[];

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 too big to display

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

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

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc