Skip to content

Latest commit

 

History

History
53 lines (36 loc) · 1.89 KB

CHANGELOG.md

File metadata and controls

53 lines (36 loc) · 1.89 KB

Changelog

A lot of design changes in this MR:

⚠ BREAKING CHANGE

  • Collection has been removed. It was duplicating the old Document.
  • Document' has been renamed to 'Model'. A Document representing the raw type stored in base, the Model, the mapped object.
  • Object.assignhas been replaced by a mapping to theDocument` to allow for property decoration.
  • Query is now idempotent. If the Query has been resolved, it will still return the same QueryResponse held in memory. This was necessary to solve problems with the MapOne and MapMany relationships that return Query objects to the get. Without idempotency, it would be necessary to add an interface between Query and the relations, to keep the result of the first resolution somewhere else in memory.

Features

  • Add Mapping, on properties and on relationships
  • Add update/replace/delete methods
  • Add Index methods

Features

  • Many Fixes on type resolution

v0.0.4 (2022-09-08)

Fixes

v0.0.3 (2022-08-29)

v0.0.2 (2022-08-29)

⚠ BREAKING CHANGE

  • option url is not longer working

v0.0.1 (2022-08-04)

Features