Skip to content

Commit

Permalink
chore(deps-dev): bump simple-git from 2.48.0 to 3.0.3 (#5090)
Browse files Browse the repository at this point in the history
* chore(deps-dev): bump simple-git from 2.48.0 to 3.0.3

Bumps [simple-git](https://github.com/steveukx/git-js) from 2.48.0 to 3.0.3.
- [Release notes](https://github.com/steveukx/git-js/releases)
- [Changelog](https://github.com/steveukx/git-js/blob/main/CHANGELOG.md)
- [Commits](steveukx/git-js@v2.48.0...simple-git-v3.0.3)

---
updated-dependencies:
- dependency-name: simple-git
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

* Swap out use of deprecated import for newer equivalent

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Dan Bjorge <danielbj@microsoft.com>
  • Loading branch information
dependabot[bot] and dbjorge committed Jan 21, 2022
1 parent c1e97e5 commit b25828b
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -159,7 +159,7 @@
"sass-loader": "^12.4.0",
"script-loader": "0.7.2",
"serve-static": "^1.13.2",
"simple-git": "^2.48.0",
"simple-git": "^3.0.3",
"source-map-loader": "^3.0.1",
"terser-webpack-plugin": "^5.3.0",
"ts-loader": "^9.2.6",
Expand Down
4 changes: 2 additions & 2 deletions tools/get-change-log-for-release.js
Expand Up @@ -3,7 +3,7 @@
const fs = require('fs');
const path = require('path');
const commander = require('commander');
const gitP = require('simple-git/promise');
const simpleGit = require('simple-git');

const main = async () => {
const params = parseCommandLineArguments();
Expand All @@ -20,7 +20,7 @@ const main = async () => {
};

const getGitLogs = async (from, to) => {
const git = gitP();
const git = simpleGit();

const gitLogs = await git.log({ from, to });

Expand Down
18 changes: 9 additions & 9 deletions yarn.lock
Expand Up @@ -4647,10 +4647,10 @@ debug@2.6.9, debug@^2.6.8, debug@^2.6.9:
dependencies:
ms "2.0.0"

debug@4, debug@^4.0.1, debug@^4.1.0, debug@^4.1.1, debug@^4.3.1, debug@^4.3.2:
version "4.3.2"
resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.2.tgz#f0a49c18ac8779e31d4a0c6029dfb76873c7428b"
integrity sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==
debug@4, debug@^4.0.1, debug@^4.1.0, debug@^4.1.1, debug@^4.3.1, debug@^4.3.2, debug@^4.3.3:
version "4.3.3"
resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.3.tgz#04266e0b70a98d4462e6e288e38259213332b664"
integrity sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q==
dependencies:
ms "2.1.2"

Expand Down Expand Up @@ -11168,14 +11168,14 @@ simple-get@^3.0.3:
once "^1.3.1"
simple-concat "^1.0.0"

simple-git@^2.48.0:
version "2.48.0"
resolved "https://registry.yarnpkg.com/simple-git/-/simple-git-2.48.0.tgz#87c262dba8f84d7b96bb3a713e9e34701c1f6e3b"
integrity sha512-z4qtrRuaAFJS4PUd0g+xy7aN4y+RvEt/QTJpR184lhJguBA1S/LsVlvE/CM95RsYMOFJG3NGGDjqFCzKU19S/A==
simple-git@^3.0.3:
version "3.0.3"
resolved "https://registry.yarnpkg.com/simple-git/-/simple-git-3.0.3.tgz#de3b67c8a130bbe388516cc1612c4a12bbcbb556"
integrity sha512-UWfIXKFtsCYpVcVOiyKYicTDa5hYYfvk+QT96ra5KPRyrXt0LTt36OpvptkF2+/HkbTeIu2C6Mc7DyrVePSW8A==
dependencies:
"@kwsites/file-exists" "^1.1.1"
"@kwsites/promise-deferred" "^1.1.1"
debug "^4.3.2"
debug "^4.3.3"

sisteransi@^1.0.3:
version "1.0.4"
Expand Down

0 comments on commit b25828b

Please sign in to comment.