Skip to content

Commit f969675

Browse files
committed
Documentation for versioning; update changelog
1 parent d7cb6cf commit f969675

File tree

2 files changed

+23
-0
lines changed

2 files changed

+23
-0
lines changed

changelog.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 1.3.0
2+
* Adds support for model versioning, with associated schema fragment to name
3+
the version field. To disable versioning pass options.versioning: false to
4+
the Schema constructor.
5+
16
## 1.2.0
27
* Support $between and $begins query operators
38
* Improved error messages for unsupported queries

readme.md

+18
Original file line numberDiff line numberDiff line change
@@ -269,6 +269,7 @@ Supported options:
269269
Documents](#indexing-documents) for details.
270270
* `options.generateId`: A function used to generate a new id for documents of
271271
this type. Defaults to ``` () => `${schema.name}.${new ObjectId()}` ```
272+
* `options.versioning`: Pass `false` to disable [versioning](#document-versioning) for instances of this schema.
272273

273274
After creating a schema, [`.methods`](#schemamethods),
274275
[`.statics`](#schemastatics), [`.virtuals`](#schemavirtuals), and
@@ -364,6 +365,11 @@ Special fields are defined by using fragments of schema by value.
364365
* `DynamoDM().TypeField`: used to indicate the type field, which stores the
365366
name of the model that a saved document was created with. The default type
366367
field name is `type`.
368+
* `DynamoDM().VersionField`: The version field, which stores a number that is
369+
incremented by 1 each time a model is saved, and is used to prevent data
370+
from being silently overwritten by multiple clients accessing the same document.
371+
The default version field name is `v`. See [document
372+
versioning](#document-versioning) for details.
367373
* `DynamoDM().CreatedAtField`: used to indicate a timestamp field that is
368374
updated when a model is first created by dynamodm. This field is not used
369375
unless you include this schema fragment in a model's schema.
@@ -632,6 +638,18 @@ await aComment.save();
632638
const stingified = JSON.stringify(await aComment.toObject());
633639
```
634640

641+
### Document Versioning
642+
The [version field](#built-in-schema-fragments) of a model is incremented each
643+
time it is saved, starting at 0 for un-saved models. the `.save()` and
644+
`.remove()` methods check that the version in the database is the same as the
645+
current one using a [Condition
646+
Expression](https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Expressions.ConditionExpressions.html)
647+
before updating or deleting the data (they fail with an error if the version
648+
does not match).
649+
650+
Versioning can be disabled for a model by setting the [Schema's
651+
`options.versioning` property](#schema-options) to `false`.
652+
635653
## Getting Documents by ID
636654
### static async Model.getById(id)
637655
Get a document by its ID. By default models use `.id` as the ID field. It's

0 commit comments

Comments
 (0)