Skip to content

Latest commit

 

History

History
108 lines (66 loc) · 3.6 KB

CHANGELOG.md

File metadata and controls

108 lines (66 loc) · 3.6 KB

Change Log

All notable changes to the project will be documented in this file.


2.0.0 (19-02-2024)

Added

  • Introducing configuration handling:

    • Added config module for centralized configuration management
    • Moved creating initial DB files from index.js to separate file (setupDatabase.js)
    • Created operations (loadFile.js and saveFile.js) to handle file operations
  • Enhanced documentation and typings:

    • Improved JSDoc comments for better code documentation
    • Updated TypeScript declaration file (index.d.ts) to reflect accurate types and structure of the NyaDB class and its methods
  • Updated README with migration guide:

    • Added instructions for upgrading from version 1.x to 2.0
    • Included information about method renaming and deprecation notices

Removed

  • Removed createDatabase, deleteDatabase, setDatabase, getDatabase, and getDatabaseList functions as they were no longer needed and were deprecated in version 1.5.0
  • Removed dependency on json-format

1.6.0 (11-07-2023)


1.5.1 (11-06-2023)


1.5.0 (25-01-2023)

  • Updated database function names:
    • .createDatabase() -> .create()
    • .deleteDatabase() -> .delete()
    • .setDatabase() -> .set()
    • .getDatabase() -> .get()
    • .getDatabaseList() -> .getList()
  • Updated README
  • Added deprecation warnings

1.4.2 (29-12-2022)


1.4.1 (29-12-2022)

  • Added CHANGELOG (this file)

1.4.0 (28-12-2022)

  • Updated README
  • Removed internal cache

1.3.0 (27-12-2022)


1.2.0 (11-11-2022)

  • Merged pull request
    • Added looped synchronized scheduler
      • Internal cache became depreciated

1.1.0 (04-08-2022)

  • Added typings

1.0.6 (31-07-2022)

  • Increased internal cache refresh from 150ms to 500ms

1.0.5 (29-07-2022)

  • First public release