Changelog
All notable changes to this project will be documented in this file.
See Conventional Commits for commit guidelines.
6.0.0
💥 BREAKING CHANGES
- Minimum supported Node version is v14.18; we’re dropping v12 support
5.1.0
✨ Features
- export types (11b5fb9)
5.0.0
✨ 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
✨ Features
- config file based major bump blacklisting (e15f9bb)
4.0.15
⏪ Reverts
- Revert “chore: setup refresh” (23cf206)
4.0.1
🔧 Fixed
- add
testStats
to npmignore (f3c84e9)
4.0.0
✨ Features
- rewrite in TS (19c75f4)
💥 BREAKING CHANGES
- there are no API changes, but we’re bumping major just in case
3.0.0
Accidental version bump during migration to SourceHut. Sorry about that.
2.0.0
✨ Features
- drop options, complete rewrite (22acff5)
💥 BREAKING CHANGES
- no more options input argument — it always throws now if inputs are wrong
2.0.0
Complete rewrite. Dropping options, now program always throws if requested indexes are beyond the source length. Beside that, API-wise, nothing new.
1.10.0
✨ Features
- remove a dependency, rebase a little (56ec65d)
1.9.44
Performance Improvements
- remove opts validation and orginal number packages, around 500x speed improv (e2211c1)
1.9.0
- Various documentation and setup tweaks after we migrated to monorepo
- Setup refresh: updated dependencies and all config files using automated tools
1.6.0
- Update all dependencies
- Restore coveralls.io reporting
- Restore unit test linting
1.5.0
- Rebase code to remove any
if (DEBUG)
statements — nowconsole.log
comments can be left in place — they will be removed during non-dev Rollup builds - Refresh the setup — temporarily remove
nyc
and update all dependencies
1.4.0
- Set up Rollup to remove comments from the code
1.3.0
GitHub sold us out. In the meantime, we:
- Migrate to BitBucket (to host repo + perform CI) and Codacy (for code quality audit)
- Drop BitHound (RIP) and Travis
1.2.0
- Set up Prettier
- Remove
package.lock
and.editorconfig
- Wire up 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. - Point the unit tests at the ES modules build, which means that code coverage is correct now, without Babel functions being missed
1.1.0
- Now, this library can convert the next index, right outside of the last character.
Imagine, you have a string, astral character \uD834\uDF06
. Now describe its contents in terms of String.slice()
range. That would be [0, 2]
. Now, this index #2 is outside of the string character indexes range! We have only \uD834
at #0 and \uDF06
at #1. There’s no #2!
Previously, this #2 would have caused an error. Now it does not. We can actually calculate and convert the next character, right outside of the string too. After all, the calculation needs just the lengths of all the characters BEFORE it, and we have that!
Practically, this is very important feature, it means we now can convert the ranges that include string’s last character.
1.0.0
- First public release