Changelog
All notable changes to this project will be documented in this file.
See Conventional Commits for commit guidelines.
6.0.0
1 Dec 2022
💥 BREAKING CHANGES
- Minimum supported Node version is v14.18; we’re dropping v12 support
5.1.0
12 Aug 2022
✨ Features
- export types (11b5fb9)
5.0.16
23 Apr 2022
🔧 Fixed
- tweak types (b854d68)
5.0.0
9 Sept 2021
✨ Features
- migrate to ES Modules (8c9d95d)
💥 BREAKING CHANGES
- programs now are in ES Modules and won’t work with Common JS
require()
4.1.0
24 May 2021
✨ Features
- config file based major bump blacklisting (e15f9bb)
4.0.15
11 Apr 2021
⏪ Reverts
- Revert “chore: setup refresh” (23cf206)
4.0.1
28 Jan 2021
🔧 Fixed
- add
testStats
to npmignore (f3c84e9)
4.0.0
23 Jan 2021
✨ Features
- rewrite in TS, start using named exports (a6516a3)
💥 BREAKING CHANGES
- previously you’d consume like:
import er from …
— now:import { er } from …
3.9.0
28 Nov 2020
Accidental version bump during migration to SourceHut. Sorry about that.
3.8.0
27 Sept 2020
✨ Features
- add examples and sort the coverage (c826fae)
3.9.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
3.3.0
17 Oct 2018
- Updated all dependencies
- Restored unit test coverage tracking: reporting in terminal and coveralls.io
- Restored unit test linting
3.2.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
3.1.0
17 May 2018
- Set up Prettier on custom ESLint rules
- Removed
package.lock
and.editorconfig
- Wired Rollup to remove comments from non-dev builds. This means we can now leave the
console.log
s in the source code — Rollup will remove from production code. - Unit tests are pointing at ES modules build, which means that code coverage is correct now, without Babel functions being missed
3.0.0
9 Dec 2017
✨ Features
- Rebased in ES Modules
- Set up the Rollup (nice rhyme). Now serving three builds: CommonJS, UMD and ES Module. all wired-up to separate package.json keys. This way, Rollup and WebPack can tap ES Modules instead of CommonJS. This also solves problems with transpiling. CommonJS is transpiled, ES Modules are not. No more problems with
create-react-app
not being able to uglify the source in ES6.
API didn’t change, it actually became even more flexible. main
, module
and browser
keys in package.json
lead to different build flavours.
2.12.0
15 Sept 2017
🔧 Fixed
- Removed JS Standard and moved onto ESLint with tweaked AirBnB preset with semicolons off. Blimey, so many issues were reported by ESLint that JS Standard missed!
2.11.0
9 Sept 2017
✨ Features
- Prevented defaults object’s mutation. Don’t know if it affects the final result anyhow, (looking from unit tests, it does not).
2.10.0
8 Jul 2017
Fresh morning and fresh head yields new improvements.
✨ Features
- Improved the main search algorithm to better account for edge cases where there are missing inputs.
2.9.0
7 Jul 2017
✨ Features
- Case insensitive searches/replacement/deletion. Set
opts.i
plain object’s keys totrue
. - Swapped all
foreach
loops with oldfor
‘s, that should make this library tiny bit faster. - Added
continue
‘s andbreak
‘s, so loops should terminate earlier, at the first moment when algorithm detects first false match. This should, in theory, relieve us from redundant calculations when the outcome is already decided. In other words, this library should run faster. - Bunch of new tests to maintain 100% code coverage.
2.8.0
5 Jul 2017
✨ Features
- Changelog. Ha!
- Tapped
check-types-mini
to enforce the input types better.
2.7.0
17 Feb 2017
✈️ Changes
- Various minor updates including BitHound config.
2.6.0
17 Feb 2017
✈️ Changes
- Code refresh: updated some info and all deps.
2.5.0
23 Dec 2016
✨ Features
- JS Standard precommit hook and unit test coverage.
2.4.0
16 Nov 2016
✈️ Changes
- Now tapping Lodash functions one-by-one.
2.0.0
20 Sept 2016
✈️ Changes
- Complete rewrite.
1.0.0
25 Aug 2016
- 🌟 First public release