Skip to content

Latest commit

 

History

History
51 lines (31 loc) · 1.93 KB

CHANGELOG.md

File metadata and controls

51 lines (31 loc) · 1.93 KB

Changelog

All notable changes to this project will be documented in this file. See standard-version for commit guidelines.

4.0.4 (2024-04-23)

Bug Fixes

  • security issue with lodash (6d15e65)

4.0.3 (2024-04-11)

Bug Fixes

  • security issue with lodash (6d15e65)

4.0.2 (2020-06-27)

Bug Fixes

  • Fix module export for node (9064b0f)

4.0.1 (2020-06-20)

4.0.0 (2020-06-07)

⚠ BREAKING CHANGES

  • has() is now async. Use hasSync() for sync.
  • get() is now async. Use getSync() for sync.
  • set() is now async. Use setSync() for sync.
  • delete() has been removed. Use unset() instead, or unsetSync() for sync.
  • setPath() has been removed. Use configure() instead.
  • clearPath() has been removed. Use configure() instead.
  • getAll() has been removed. Use get() instead.
  • setAll() has been removed. Use set() instead.
  • deleteAll() has been removed. Use unset() instead.
  • The default settings file name has been changed from Settings to settings.json.
  • Key path observers have been removed.

Features