Normalize Diacritics Versions Save

Normalize diacritics in strings

v5.0.0

1 month ago

What's Changed

New Contributors

Full Changelog: https://github.com/motss/normalize-diacritics/compare/v4.0.3...v5.0.0

v4.0.0

1 year ago

Announcement

This marks the first release of supporting moduleResolution: NodeNext in TypeScript and the similar in Node.js which bring native ES Modules outside of the web, notably changes includes:

  1. Strict specifier for all imports, e.g. .js;
  2. Extensive export map for latest Node.js and TypeScript

:warning: If you find this version does not work for you, you can instead downgrade to v3 until you are ready to adopt moduleResolution: NodeNext in TypeScript and the similar in Node.js.

What's Changed

Full Changelog: https://github.com/motss/normalize-diacritics/compare/v3.0.10...v4.0.0

v3.0.12

1 year ago

Announcement

This marks the last release of v3 as the next major version will only support the latest module resolution in Node.js and TypeScript aka NodeNext which is closer to the native ES Modules on the web.

  1. import and exports map
  2. Strict specifier in import paths unless specified in import map for specifier-less resolution

What's Changed

Full Changelog: https://github.com/motss/normalize-diacritics/compare/v3.0.8...v3.0.12

v3.0.8

2 years ago

Changes

  1. Convert bash scripts to shell scripts
  2. Lint all shell scripts with shellcheck

v3.0.0

2 years ago

Breaking change

  1. b4041b781ae43169762782fe851b74c1ec65553a - Output ES modules only

Changes

  1. Update dependencies including TypeScript 4.4

v2.13.2

3 years ago

Changes

  • Leverage exports in package.json to support both CommonJS and ES Modules for node@14 and above

v2.12.0

3 years ago

Changes

  • Update devDependencies to resolve vulnerability issues

v2.6.1

4 years ago

Changes

  • 🐛 Now each character in an input string receives its own copy of RegExp instance for normalization, due to a bug reported in #112 which was caused by reusing the same RegExp instance will cause its internal lastIndex state to be incremented and not reset thus failing subsequent matching character in the same string to produce false when calling .test() method.

v2.4.0

4 years ago

Notable changes

  • 👷 Optimize CI build
  • 💥 Drop IIFE in favor of UMD bundle
  • ✅ Improve test structure
  • 🔧 Update Rollup config file to build UMD bundle
  • ➕ Use @reallyland/tsconfig and @reallyland/tslint-config
  • ✨ Use shx for cross-platform commands support, e.g. rm -rf
  • 📝 Update doc to include Contributing section and new demo button