Skip to content

Latest commit

 

History

History
178 lines (89 loc) · 6.77 KB

CHANGELOG.md

File metadata and controls

178 lines (89 loc) · 6.77 KB

Change Log

All notable changes to this project will be documented in this file. See Conventional Commits for commit guidelines.

5.0.8 (2021-11-10)

Note: Version bump only for package @thi.ng/paths

5.0.7 (2021-11-03)

Note: Version bump only for package @thi.ng/paths

5.0.0 (2021-10-12)

Build System

  • major update of ALL pkgs (export maps, ESM only) (0d1d6ea)

BREAKING CHANGES

  • discontinue CommonJS & UMD versions
  • only ESM modules will be published from now on
  • CJS obsolete due to ESM support in recent versions of node:
    • i.e. launch NodeJS via:
    • node --experimental-specifier-resolution=node --experimental-repl-await
    • in the node REPL use await import(...) instead of require()
  • UMD obsolete due to widespread browser support for ESM

Also:

  • normalize/restructure/reorg all package.json files
  • cleanup all build scripts, remove obsolete
  • switch from mocha to @thi.ng/testament for all tests

4.2.0 (2021-02-20)

Features

  • paths: use updated/more safe isProtoPath() (456fac1)

4.1.0 (2020-07-08)

Features

  • paths: add isProtoPath/disallowProtoPath() helpers (2e6a80f)

4.0.7 (2020-05-16)

Bug Fixes

  • paths: arg type for 2-arity getIn() (56d5cd0)

4.0.0 (2020-03-28)

Code Refactoring

  • paths: update path value inference (ab4440e)

Features

  • paths: add/update unsafe type infer, update doc strings (5cc5b46)
  • paths: major API update (b51efc6)
  • paths: update typed path sigs (0b6c155)

BREAKING CHANGES

  • paths: update generics for UpdateFn
    • UpdateFn now takes input & output type generics

3.0.0 (2019-11-30)

Bug Fixes

  • paths: update fn signatures (remove obsolete) (47dd001)

Code Refactoring

  • paths: use Path from @thi.ng/api, remove local def (a142655)

Features

  • paths: #87, add typed versions of all fns, split into sep files (319f4f8)

BREAKING CHANGES

  • paths: re-use Path from @thi.ng/api, remove local def

2.1.0 (2019-07-07)

Features

  • paths: enable TS strict compiler flags (refactor) (55e93ee)

2.0.7 (2019-03-28)

Bug Fixes

  • paths: fix getIn for empty leaves, add tests (49952fd)

2.0.0 (2019-01-21)

Build System

  • update package build scripts & outputs, imports in ~50 packages (b54b703)

BREAKING CHANGES

  • enabled multi-outputs (ES6 modules, CJS, UMD)
  • build scripts now first build ES6 modules in package root, then call scripts/bundle-module to build minified CJS & UMD bundles in /lib
  • all imports MUST be updated to only refer to package level (not individual files anymore). tree shaking in user land will get rid of all unused imported symbols.

1.6.0 (2018-09-01)

Features

  • paths: add exists() path checker & tests (f018353)

1.5.0 (2018-07-11)

Features

  • paths: add updater(), refactor updateIn(), update readme (ad4caad)

1.4.0 (2018-07-04)

Features

  • paths: update setter() to support arrays, optimize (~2.5x faster) (3d9d620)

1.3.0 (2018-04-17)

Features

  • paths: add setInMany() and mutInMany(), add @thi.ng/api dependency (8f3a3d1)

1.2.0 (2018-04-16)

Features

  • paths: add mutator() & mutIn() (4c1bd85)

1.1.1 (2018-03-18)

Bug Fixes

  • paths: fix setter fast paths (eaeccf4)

1.1.0 (2018-03-18)

Bug Fixes

  • paths: fix setIn fast paths for path length 3/4 (92f0e27)

Features

1.0.0 (2018-03-17)

Documentation

  • paths: add/extract @thi.ng/paths from @thi.ng/atom (f9f6eb1)