Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: netlify/cli
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v3.21.8
Choose a base ref
...
head repository: netlify/cli
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v3.21.9
Choose a head ref
  • 3 commits
  • 4 files changed
  • 4 contributors

Commits on Apr 24, 2021

  1. 1
    Copy the full SHA
    c2bfeae View commit details
  2. fix(deps): update netlify packages (#2215)

    Co-authored-by: Renovate Bot <bot@renovateapp.com>
    renovate[bot] and renovate-bot authored Apr 24, 2021
    1
    Copy the full SHA
    26af461 View commit details
  3. chore: release 3.21.9 (#2220)

    Co-authored-by: token-generator-app[bot] <82042599+token-generator-app[bot]@users.noreply.github.com>
    token-generator-app[bot] authored Apr 24, 2021
    1
    Copy the full SHA
    51715dd View commit details
Showing with 39 additions and 41 deletions.
  1. +7 −0 CHANGELOG.md
  2. +27 −36 package-lock.json
  3. +4 −4 package.json
  4. +1 −1 src/utils/get-global-config.js
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).

### [3.21.9](https://www.github.com/netlify/cli/compare/v3.21.8...v3.21.9) (2021-04-24)


### Bug Fixes

* **deps:** update netlify packages ([#2215](https://www.github.com/netlify/cli/issues/2215)) ([26af461](https://www.github.com/netlify/cli/commit/26af46181e4f42646e2c02bc9fcbdb281bc49319))

### [3.21.8](https://www.github.com/netlify/cli/compare/v3.21.7...v3.21.8) (2021-04-23)


63 changes: 27 additions & 36 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "netlify-cli",
"description": "Netlify command line tool",
"version": "3.21.8",
"version": "3.21.9",
"author": "Netlify Inc.",
"contributors": [
"Mathias Biilmann <matt@netlify.com> (https://twitter.com/biilmann)",
@@ -75,8 +75,8 @@
"prettier": "--ignore-path .gitignore --loglevel=warn \"{src,scripts,site,tests,.github}/**/*.{js,md,yml,json,html}\" \"*.{js,yml,json,html}\" \".*.{js,yml,json,html}\" \"!CHANGELOG.md\" \"!package-lock.json\""
},
"dependencies": {
"@netlify/build": "^11.2.4",
"@netlify/config": "^6.0.2",
"@netlify/build": "^11.2.5",
"@netlify/config": "^6.2.0",
"@netlify/framework-info": "^3.3.0",
"@netlify/plugin-edge-handlers": "^1.11.6",
"@netlify/plugins-list": "^2.8.0",
@@ -140,7 +140,7 @@
"lodash": "^4.17.20",
"log-symbols": "^4.0.0",
"make-dir": "^3.0.0",
"memoize-one": "^5.2.0",
"memoize-one": "^5.2.1",
"minimist": "^1.2.5",
"multiparty": "^4.2.1",
"netlify": "^6.1.20",
2 changes: 1 addition & 1 deletion src/utils/get-global-config.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const Configstore = require('configstore')
const { memoizeOne } = require('memoize-one')
const memoizeOne = require('memoize-one')
const { v4: uuidv4 } = require('uuid')

const { readFileAsync } = require('../lib/fs')