diff options
author | Minteck <contact@minteck.org> | 2022-10-18 08:59:09 +0200 |
---|---|---|
committer | Minteck <contact@minteck.org> | 2022-10-18 08:59:09 +0200 |
commit | 2c4ae43e688a9873e86211ea0e7aeb9ba770dd77 (patch) | |
tree | 17848d95522dab25d3cdeb9c4a6450e2a234861f /alarm/node_modules/string-trim-spaces-only/CHANGELOG.md | |
parent | 108525534c28013cfe1897c30e4565f9893f3766 (diff) | |
download | pluralconnect-2c4ae43e688a9873e86211ea0e7aeb9ba770dd77.tar.gz pluralconnect-2c4ae43e688a9873e86211ea0e7aeb9ba770dd77.tar.bz2 pluralconnect-2c4ae43e688a9873e86211ea0e7aeb9ba770dd77.zip |
Update
Diffstat (limited to 'alarm/node_modules/string-trim-spaces-only/CHANGELOG.md')
-rw-r--r-- | alarm/node_modules/string-trim-spaces-only/CHANGELOG.md | 97 |
1 files changed, 97 insertions, 0 deletions
diff --git a/alarm/node_modules/string-trim-spaces-only/CHANGELOG.md b/alarm/node_modules/string-trim-spaces-only/CHANGELOG.md new file mode 100644 index 0000000..ad7d17a --- /dev/null +++ b/alarm/node_modules/string-trim-spaces-only/CHANGELOG.md @@ -0,0 +1,97 @@ +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## 3.1.0 (2021-05-24) + +### Features + +- config file based major bump blacklisting ([e15f9bb](https://github.com/codsen/codsen/commit/e15f9bba1c4fd5f847ac28b3f38fa6ee633f5dca)) + +## 3.0.15 (2021-04-11) + +### Reverts + +- Revert "chore: setup refresh" ([23cf206](https://github.com/codsen/codsen/commit/23cf206970a087ff0fa04e61f94d919f59ab3881)) + +## 3.0.1 (2021-01-28) + +### Bug Fixes + +- add testStats to npmignore ([f3c84e9](https://github.com/codsen/codsen/commit/f3c84e95afc5514214312f913692d85b2e12eb29)) + +## 3.0.0 (2021-01-23) + +### Features + +- rewrite in TS, start using named exports ([f1af4d2](https://github.com/codsen/codsen/commit/f1af4d2eecbda15edc33f9b9080bc99f495cbd3a)) + +### BREAKING CHANGES + +- previously: `import trimSpaces from ...` - now `import { trimSpaces } from ...` + +## 2.9.0 (2020-11-28) + +Accidental version bump during migration to sourcehut. Sorry about that. + +## 2.8.0 (2019-09-11) + +### Features + +- add granular options to trim (or not) each whitespace type ([c12e5b3](https://gitlab.com/codsen/codsen/commit/c12e5b3)) + +## 2.7.0 (2019-01-20) + +- ✨ Various documentation and setup tweaks after we migrated to monorepo +- ✨ Setup refresh: updated dependencies and all config files using automated tools + +## 2.3.0 (2018-12-26) + +- ✨ Add `opts.classicTrim` + +## 2.2.0 (2018-10-26) + +- ✨ Updated all dependencies +- ✨ Restored coveralls.io reporting +- ✨ Restored unit test linting + +## 2.1.0 (2018-10-15) + +- ✨ Updated all dependencies and restored unit test coverage tracking: reporting in terminal and coveralls.io + +## 2.0.0 (2018-07-26) + +- 📦 API change: now the result is not a string but a plain object, for example: + +```js +{ + res: "", + ranges: [[0, 1]] +} +``` + +The trimmed string that was previously returned is now returned under key `res`. +Additionally, we also supply ranges of what was deleted under key `ranges`. + +Additionally, now only string input is allowed. Non-string input will cause error `throw`s. We need to make API stricter because output type is different from the input type (string vs plain object) and if an accidentally wrong type, a plain object was given, if we returned it without causing an error, it could be interpreted as a valid output type and cause errors when keys `res` or `ranges` would not be found (or worse, found and consumed from a wrong place)! + +- ✨ PLUS, added `opts.classicTrim`. It's the same as `String.trim()` except you get both string and corresponding ranges. Native `String.trim()` does not give the latter. + +## 1.2.0 (2018-06-16) + +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 + +## 1.1.0 (2018-05-25) + +- ✨ Set up [Prettier](https://prettier.io) on a custom ESLint rule set. +- ✨ 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 — there's no need to comment-out `console.log` statements or care about them not spilling into production. Now it's done automatically. +- ✨ Unit tests are pointing at ES modules build, which means that code coverage is correct now, without Babel functions being missed. It is important because now code coverage is real again and now there are no excuses not to perfect it. + +## 1.0.0 (2018-02-13) + +- ✨ First public release |