Skip to content

Latest commit

 

History

History
50 lines (39 loc) · 1.95 KB

File metadata and controls

50 lines (39 loc) · 1.95 KB

Changelog

All notable changes to this project will be documented in this file (starting from version 3.0.0)

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

[Unreleased]

[3.0.5] - 2022-02-10

Changed

  • Updates to package-lock.json so that I'm not referencing vulnerable dependencies
  • Slight tweak to the README, nothing really functional though.

[3.0.4] - 2022-02-01

Changed

  • Just updated some dependencies around the testing/compilation toolchain, nothing user-facing, but now you might not have transient dependencies complain about vulnerabilities.

[3.0.3] - 2021-06-23

Changed

  • Pretty much the entire way that tests are run, so that I could clean out some vulnerable dependencies

Removed

  • bower.json, since I haven't been publishing to bower for a while, and I don't know if bower's even a thing anymore

[3.0.2] - 2019-09-19

Added

  • Tests that exercise typescript usage (via mocha-typescript, see test/typescript-definition-file.spec.ts)

Changed

  • Upgraded a dep or two by minor version based on security scans

[3.0.1] - 2019-09-18

Changed

  • Fixed some things in README and updated some deps

[3.0.0] - 2019-05-16

Added

  • Multiple output formats, since Webpack and other modern loaders don't like my old version of typescript's UMD output (complaining about require used in a non-staticly-analyzable way). There are now two output files:

    • dist/commonjs/comparators.js, which is commonjs output usable by webpack/rollup/etc
    • dist/umd/comparators.js, which is a UMD format usable by pretty much everything, including the browser
  • Tests to exercise in-browser usage (via mocha-chrome)

  • A package-lock.json file

Changed

  • Output paths; please reference either dist/commonjs/comparators.js or dist/umd/comparators.js now instead of just dist/comparator.js