Skip to content

Conversation

@donutegg
Copy link
Owner

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@sindresorhus/slugify 1.1.2 -> 2.2.1 age adoption passing confidence
cli-truncate 2.1.0 -> 3.1.0 age adoption passing confidence
escape-string-regexp 4.0.0 -> 5.0.0 age adoption passing confidence
execa 5.1.1 -> 7.2.0 age adoption passing confidence
find-up 5.0.0 -> 6.3.0 age adoption passing confidence
get-port 5.1.1 -> 7.0.0 age adoption passing confidence
get-stdin 8.0.0 -> 9.0.0 age adoption passing confidence
globby 11.1.0 -> 13.2.2 age adoption passing confidence
has-yarn 2.1.0 -> 3.0.0 age adoption passing confidence
indent-string 4.0.0 -> 5.0.0 age adoption passing confidence
log-update 4.0.0 -> 5.0.1 age adoption passing confidence
new-github-issue-url 0.2.1 -> 1.0.0 age adoption passing confidence
ora 5.4.1 -> 7.0.1 age adoption passing confidence
p-map 4.0.0 -> 6.0.0 age adoption passing confidence
p-reduce 2.1.0 -> 3.0.0 age adoption passing confidence
p-retry 4.6.2 -> 5.1.2 age adoption passing confidence
pkg-up 3.1.0 -> 4.0.0 age adoption passing confidence
read-pkg-up 7.0.1 -> 10.0.0 age adoption passing confidence
replace-string 3.1.0 -> 4.0.0 age adoption passing confidence
sort-keys 4.2.0 -> 5.0.0 age adoption passing confidence
string-width 4.2.3 -> 6.1.0 age adoption passing confidence
strip-ansi 6.0.1 -> 7.1.0 age adoption passing confidence
strip-indent 3.0.0 -> 4.0.0 age adoption passing confidence
tempy 1.0.1 -> 3.1.0 age adoption passing confidence
terminal-link 2.1.1 -> 3.0.0 age adoption passing confidence

Release Notes

sindresorhus/slugify (@​sindresorhus/slugify)

v2.2.1

Compare Source

  • Improve compatibility with partial strings

v2.2.0

Compare Source

v2.1.1

Compare Source

v2.1.0

Compare Source

v2.0.0

Compare Source

Breaking
  • Require Node.js 12 12498c9
  • This package is now pure ESM. Please read this.
  • slugify.counter moved to a named export slugifyWithCounter
sindresorhus/cli-truncate (cli-truncate)

v3.1.0

Compare Source

v3.0.0

Compare Source

Breaking
sindresorhus/escape-string-regexp (escape-string-regexp)

v5.0.0

Compare Source

Breaking
sindresorhus/execa (execa)

v7.2.0

Compare Source

v7.1.1

Compare Source

Features

Bug fixes

v7.1.0

Compare Source

Features

import {$} from 'execa';

const branch = await $`git branch --show-current`;
await $`dep deploy --branch=${branch}`;
// Similar to `echo unicorns > stdout.txt` in Bash
await execa('echo', ['unicorns']).pipeStdout('stdout.txt');

// Similar to `echo unicorns 2> stdout.txt` in Bash
await execa('echo', ['unicorns']).pipeStderr('stderr.txt');

// Similar to `echo unicorns &> stdout.txt` in Bash
await execa('echo', ['unicorns'], {all: true}).pipeAll('all.txt');
// Similar to `cat < stdin.txt` in Bash
const {stdout} = await execa('cat', {inputFile: 'stdin.txt'});
console.log(stdout);
//=> 'unicorns'
  • Add verbose option to print each command on stderr before executing it. This can also be enabled by setting the NODE_DEBUG=execa environment variable in the current process.
> node file.js
unicorns
rainbows

> NODE_DEBUG=execa node file.js
[16:50:03.305] echo unicorns
unicorns
[16:50:03.308] echo rainbows
rainbows

v7.0.0

Compare Source

Breaking
Fixes

v6.1.0

Compare Source

v6.0.0

Compare Source

Breaking
  • Require Node.js 12.20 (#​478) 7707880
  • This package is now pure ESM. Please read this.
  • Moved from a default export to named exports.
    • require('execa')import {execa} from 'execa'
    • require('execa').syncimport {execaSync} from 'execa'
    • require('execa').commandimport {execaCommand} from 'execa'
    • require('execa').commandSyncimport {execaCommandSync} from 'execa'
    • require('execa').nodeimport {execaNode} from 'execa'
sindresorhus/find-up (find-up)

v6.3.0

Compare Source

v6.2.0

Compare Source

v6.1.0

Compare Source

v6.0.0

Compare Source

Breaking
  • Require Node.js 12.20 e93cfd2
  • This package is now pure ESM. Please read this.
  • Changed from a default export to named exports.
    • const findUp = require('find-up') => import {findUp} from 'find-up'
    • const findUpSync = require('find-up').sync => import {findUpSync} from 'find-up'
    • const findUpStop = require('find-up').stop => import {findUpStop} from 'find-up'
    • const pathExists = require('find-up').exists => import {pathExists} from 'find-up'
    • const pathExistsSync = require('find-up').sync.exists => import {pathExistsSync} from 'find-up'
sindresorhus/get-port (get-port)

v7.0.0

Compare Source

Breaking
Improvements
  • Use timeout instead of interval for releasing ports (#​68) bd8a403

v6.1.2

Compare Source

  • Fix portNumbers argument validation and number generation (#​64) 1fb0e70

v6.1.1

Compare Source

v6.1.0

Compare Source

v6.0.0

Compare Source

Breaking
  • Require Node.js 12.20 c08a4ae
  • This package is now pure ESM. Please read this.
  • require('get-port').makeRange => import {portsNumbers] from 'get-port'
Improvements
sindresorhus/get-stdin (get-stdin)

v9.0.0

Compare Source

Breaking
sindresorhus/globby (globby)

v13.2.2

Compare Source

v13.2.1

Compare Source

v13.2.0

Compare Source

  • Pass deep option to ignore filter to avoid unnecessary recursion (#​251) a0e4028

v13.1.4

Compare Source

  • Fix error when reading inaccessible directories with gitignore: true and suppressErrors: true (#​246) e95da57
  • Remove URL TypeScript type workaround (#​230) 55a3c64

v13.1.3

Compare Source

v13.1.2

Compare Source

v13.1.1

Compare Source

v13.1.0

Compare Source

v13.0.0

Compare Source

Breaking
  • Rename generateGlobTasks to generateGlobTasksSync (#​221) 51c8f68
  • Remove ignore option for isGitIgnored and isGitIgnoredSync (#​225) 2e43cc4
    • This option never worked correctly.
Improvements
Fixes

v12.2.0

Compare Source

v12.1.0

Compare Source

v12.0.2

Compare Source

  • Ensure async method is completely async e167725

v12.0.1

Compare Source

v12.0.0

Compare Source

Breaking
  • Require Node.js 12.20 (#​181) 5c32b4a
  • This package is now pure ESM. Please read this.
  • This package now uses named exports instead of a default export
    • globby{globby}
    • globby.sync{globbySync}
    • globby.stream{globbyStream}
    • globby.generateGlobTasks{generateGlobTasks}
    • globby.hasMagic{isDynamicPattern}
    • globby.gitignore{isGitIgnored}
    • globby.gitignore.sync{isGitIgnoredSync}
-const globby = require('globby');
+import {globby} from 'globby';
sindresorhus/has-yarn (has-yarn)

v3.0.0

Compare Source

Breaking
sindresorhus/indent-string (indent-string)

v5.0.0

Compare Source

Breaking
sindresorhus/log-update (log-update)

v5.0.1

Compare Source

v5.0.0

Compare Source

Breaking
  • Require Node.js 12.20 d6d51e7
  • This package is now pure ESM. Please read this.
  • logUpdate.stderr moved into a named export logUpdateStderr
  • logUpdate.create moved into a named export createLogUpdate
sindresorhus/new-github-issue-url (new-github-issue-url)

v1.0.0

Compare Source

Breaking
sindresorhus/ora (ora)

v7.0.1

Compare Source

v7.0.0

Compare Source

Breaking

v6.3.1

Compare Source

  • Fix Node.js 12 compatibility 4b1c2be

v6.3.0

Compare Source

v6.2.0

Compare Source

  • Add spinners export to be able to access all available spinners (#​222) f2ac111

v6.1.2

Compare Source

v6.1.1

Compare Source

v6.1.0

Compare Source

  • Expose the spinner interval as a getter 447812b
  • Internal refactoring. If you use any undocumented properties, this may break for you.

v6.0.1

Compare Source

v6.0.0

Compare Source

Breaking
  • Require Node.js 12.20 ede1a54
  • This package is now pure ESM. Please read this.
  • ora.promise is now a named import called oraPromise (#​181) 9c01990
    • import {oraPromise} from 'ora';
  • oraPromise now returns the given promise instead of this (#​181) 9c01990
    • This lets you await it directly, which is more useful than chaining.
Improvements
sindresorhus/p-map (p-map)

v6.0.0

Compare Source

Breaking

v5.5.0

Compare Source

  • Add pMapSkip as an acceptable return value in Mapper type (#​60) b58fc26

v5.4.0

Compare Source

v5.3.0

Compare Source

v5.2.0

Compare Source

v5.1.0

Compare Source

Improvements
Fixes
  • Do not run mapping after stop-on-error happened (#​40) 4b5f9e7

v5.0.0

Compare Source

Breaking
  • Require Node.js 12 dcdbc7a
  • This package is now pure ESM. Please read this.
  • AggregateError is no longer iterable. It moved to an .errors property.
sindresorhus/p-reduce (p-reduce)

v3.0.0

Compare Source

Breaking
sindresorhus/p-retry (p-retry)

v5.1.2

Compare Source

v5.1.1

Compare Source

  • Lock the @types/retry dependency 13f6350

v5.1.0

Compare Source

v5.0.0

Compare Source

Breaking
sindresorhus/pkg-up (pkg-up)

v4.0.0

Compare Source

Breaking
sindresorhus/read-pkg-up (read-pkg-up)

v10.0.0

Compare Source

Breaking
Improvements

v9.1.0

Compare Source

v9.0.0

Compare Source

Breaking
  • Rename the readPackageUpAsync export to readPackageUp 8f870da
  • Require Node.js 12.20

v8.0.0

Compare Source

Breaking
  • Require Node.js 12 e6fbe7f
  • This package now exports two named exports instead of a default export e6fbe7f
  • This package is now pure ESM. Please read this.
sindresorhus/replace-string (replace-string)

v4.0.0

Compare Source

Breaking
sindresorhus/sort-keys (sort-keys)

v5.0.0

Compare Source

Breaking
sindresorhus/string-width (string-width)

v6.1.0

Compare Source

v6.0.0

Compare Source

Breaking

This release is not compatible with Firefox. If you need Firefox support, stay on v5.

Improvements

v5.1.2

Compare Source

v5.1.1

Compare Source

  • Fix incorrect default for ambiguousIsNarrow option 483baa1

v5.1.0

Compare Source

v5.0.1

Compare Source

v5.0.0

Compare Source

Breaking
chalk/strip-ansi (strip-ansi)

v7.1.0

Compare Source

v7.0.1

Compare Source

v7.0.0

Compare Source


Configuration

📅 Schedule: Branch creation - "before 7am on Wednesday" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants