Changelog

All notable changes to this project will be documented in this file.
See Conventional Commits opens in a new tab for commit guidelines.

7.0.0

1 Dec 2022

💥 BREAKING CHANGES

  • Minimum supported Node version is v14.18; we’re dropping v12 support

6.2.0

12 Aug 2022

Features

6.1.0

10 Apr 2022

Features

6.0.0

9 Sept 2021

Features

💥 BREAKING CHANGES

  • programs now are in ES Modules and won’t work with Common JS require()

5.1.0

24 May 2021

Features

  • config file based major bump blacklisting (e15f9bb)

5.0.15

11 Apr 2021

Reverts

  • Revert “chore: setup refresh” (23cf206)

5.0.1

28 Jan 2021

🔧 Fixed

  • add testStats to npmignore (f3c84e9)

5.0.0

23 Jan 2021

Features

  • rewrite in TS, use named exports (359c5ff)

💥 BREAKING CHANGES

  • Previously, a default export was used: import pullAllWithGlob from …. Now use the named export: import { pull } from …

4.13.0

28 Nov 2020

Accidental version bump during migration to SourceHut. Sorry about that.

4.12.0

20 Jan 2019
  • Various documentation and setup tweaks after we migrated to monorepo
  • Setup refresh: updated dependencies and all config files using automated tools

4.7.0

12 Oct 2018
  • Updated all dependencies and restored the coverage tracking both in unit tests and via coveralls.io

4.6.0

23 Aug 2018
  • Now we allow the second input argument to be a string or an array of zero or more strings

4.5.0

11 Jun 2018

GitHub sold us out. In the meantime, we:

  • Migrated to BitBucket (to host repo + perform CI) and Codacy (for code quality audit)
  • Dropped BitHound (RIP) and Travis
  • Removed package-lock

4.4.0

14 May 2018
  • Now pointing unit tests at ES Modules build, not CommonJS-one. This means, unit test coverage will be correct (higher) because there won’t be any missing rows that Babel added which are impossible to cover.
  • Tweaks to ava config in package.json, properly enabling the dev Rollup builds.

4.3.0

29 Apr 2018
  • Set up Prettier
  • Removed package.lock and .editorconfig
  • Wired Rollup to remove comments from non-dev builds. This means we can now leave the console.logs in the source code — Rollup will remove them during the builds.

4.2.0

11 Feb 2018
  • opts.caseSensitive, directly controlling today’s new released matcher’s same feature. Case sensitive is on by default now, but you can turn it off if you’re dealing with file system stuff for example. It’s best to be case-insensitive in those cases.

Also, I set up check-types-mini (npm, GitLab) to patrol the opts’ types. Just in case consumers misbehave.

4.1.0

21 Jan 2018
  • Shortened the error source function paths in error messages. There’s no point to report the name of the main function when there’s only one function. The package name will suffice.

4.0.0

23 Oct 2017
  • The main source now is in ES2015 modules with import/export.
  • Implemented Rollup to generate 3 flavours of this package: CommonJS, UMD and ESM module with import/export.

3.1.0

31 Aug 2017
  • Now generating transpiled version within /es5/ folder, which you can require like that, var pull = require(‘array-pull-all-with-glob/es5′)

3.0.0

25 Aug 2017
  • Switched to matcher to do all the globbing.

  • 💥 Removed dependency on lodash.clonedeep

  • 💥 Removed dependency on lodash.replace

  • 🔧 Made the API slightly more strict, not allowing non-string elements within arrays.

2.0.0

2 Mar 2017
  • 🔧 Simple thing, but, technically, a major API change. Input arguments are not mutated any more.
  • 🔧 New unit tests to guarantee that.
  • 🔧 Tightened the API with insurance against missing args or wrong types in the input. Now if the main input is missing, it will throw. If first argument (remove from where) is present, but second (what to remove) is missing, first arguement is returned. It’s called being nice with others (libraries).
  • Added changelog.md