This release adds major new support for single table design.
Please comment or contact me if you have any questions about this release.
- Single Table Design Enhancements
- Nested Schemas
- Multiple Attribute Types
- Combine Type
- Multiple Schemas per Model
- Readds populate support (similar to v1 but breaking changes between v1 and v2 populate functionality)
- Adds document.toJSON() method
- Adds Serialization support
- Minor bug fixes for TypeScript typings
This release fixes some minor bugs found in Dynamoose.
Please comment or contact me if you have any questions about this release.
- Fixed an issue with creation of local secondary indexes
- Fixed an issue where specifying attributes to retrieve wouldn't work with reserved DynamoDB keywords
- Adding icons to website for GitHub & npm links
This release adds a few key features to improve your Dynamoose workflow.
Please comment or contact me if you have any questions about this release.
- Added support for
query.sort
- Added support for only passing model name into
dynamoose.model
and having it retrieve the registered model that was already registered previously - Added support for passing original value into
set
attribute setting function - Added attributes setting to
Model.get
to only retrieve certain attributes
- Fixed an issue where
document.original
would return a DynamoDB object and not a parsed object in certain cases
This release fixes some minor bugs.
Please comment or contact me if you have any questions about this release.
- Fixing issue where creating multiple indexes would fail when creating or updating table
- Fixing issue where
Model.update
with single object andrangeKey
would fail
This release fixes a few minor bugs with Model.update
.
Please comment or contact me if you have any questions about this release.
- Fixed an issue where
Model.update
using$REMOVE
wouldn't work on non defined attributes usingsaveUnknown
- Fixed an issue where
Model.update
would throw an AWS errorExpressionAttributeValues must not be empty
when using$REMOVE
This release fixes some bugs related to TypeScript and improves the website with more accurate information.
Please comment or contact me if you have any questions about this release.
- 🔍 Added search functionality to website
- TypeScript Fixes
- Removed esModuleInterop from tsconfig.json
- Allowing Schema Index Throughput to be Optional
- Add migration section from v1 to v2 to website FAQ page
- Fixed ES Modules Import Documentation
This release adds beta support for TypeScript typings.
Please comment or contact me if you have any questions about this release.
- Beta support for TypeScript Typings
Version 2.0 is here!! This is a full rewrite of Dynamoose from the ground up. This means that the changelog listed below is not necessarily complete, but attempts to cover a lot of the high level items of this release. There are a lot of minor bug fixes and improvements that went into this rewrite that will not be covered, as well as potientally some breaking changes that are not included in the changelog below.
Although version 2.0 is a full rewrite, the underlying API hasn't changed very much. Things like Model.scan
or Model.get
have not changed seamingly at all. The foundational syntax is indentical to version 1.0. This means the majority of breaking changes won't effect most users or will require only minor tweaks.
Please comment or contact me if you have any questions or problems with this release.
- Complete rewrite of the codebase!!!
- Better conditional support with new
dynamoose.Condition
class - Same familiar API
- Better conditional support with new
- Entirely new website
- Dark mode 🌑
- Edit links on each page to contribute changes and improve documentation
- Improved sidebar with easier orgainzation
- Links to navigate to next/previous pages on website
- License has been changed to The Unlicense from MIT
dynamoose.setDefaults
has been renamed todynamoose.model.defaults.set
dynamoose.local
has been renamed todynamoose.aws.ddb.local
dynamoose.setDDB
has been renamed todynamoose.aws.ddb.set
dynamoose.revertDDB
has been renamed todynamoose.aws.ddb.revert
dynamoose.AWS.config.update
has been renamed todynamoose.aws.sdk.config.update
dynamoose.ddb
has been renamed todynamoose.aws.ddb
Map
attribute type has been replaced withObject
List
attribute type has been replaced withArray
- DynamoDB set types are now returned as JavaScript Set's instead of Array's
- DynamoDB set types are now defined as
{"type": Set, "schema": [String]}
as opposed to the former[String]
or{"type": [String]}
. This is more explict and makes it more clear that the type is a set. - Trying to save a Document with a property set to
null
will now throw an error. If you would like to remove the property set it todynamoose.UNDEFINED
to set it to undefined without taking into account thedefault
setting, orundefined
to set it to undefined while taking into account thedefault
setting. - Model
update
setting now includes more update actions. To use the v1 update behavior change the value ofupdate
setting to be["ttl", "indexes"]
. - Schema
default
value does not pass the model instance intodefault
functions any more. Model.update
$LISTAPPEND
has been removed, and$ADD
now includes the behavior of$LISTAPPEND
$DELETE
has been renamed to$REMOVE
$REMOVE
(previously$DELETE
) now maps to the correct underlying DynamoDB method instead of the previous behavior of mapping to$REMOVE
$PUT
has been replaced with$SET
Model.getTableReq
has been renamed toModel.table.create.request
Model.table.create.request
(formerlyModel.getTableReq
) is now an async functionmodel.originalItem
has been renamed tomodel.original
(orDocument.original
)Document.original
formerly (model.originalItem
) no longer returns the last item saved, but the item first retrieved from DynamoDB- The following Schema settings have been moved to Model settings:
expires
throughput
expires.ttl
now accepts a number representing milliseconds as opposed to secondsexpires.defaultExpires
is no longer an option (most behavior from this option can be replicated by using the newdynamoose.UNDEFINED
feature)expires.returnExpiredItems
has been renamed toexpires.items.returnExpired
Model.transaction.conditionCheck
has been renamed toModel.transaction.condition
Model.transaction.condition
now accepts a conditional instance instead of an object to specify the conditional you wish to run- In the past the
saveUnknown
option for attribute names would handle all nested properties. Now you must use*
to indicate one level of wildcard or**
to indicate infinate levels of wildcard. So if you have an object property (address
) and want to parse one level of values (no sub objects) you can useaddress.*
, oraddress.**
to all for infinate levels of values (including sub objects) - In the past non-string type properties would be implicitly coerced into strings with a call to their
toString()
methods when saved asString
type attributes. This will now throw aTypeMismatch
error. Strings should be converted before saving. useNativeBooleans
&useDocumentTypes
have been removed from the Model settingsscan.count()
has been removed, andscan.counts()
has been renamed toscan.count()
.- The attribute types
Array
&Object
in Dynamoose v1 don't work without aschema
option in v2 Scan.null
&Query.null
have been removed. In most cases this can be replaced with.not().exists()
.- Expires TTL value is set to be a default value. In Dynamoose v1 there were cases where expires TTL wouldn't be set, in Dynamoose v2, the behavior of if the Expires TTL is set behaves the same as any default value
- Custom methods have changed behavior:
schema.method
is nowmodel.methods.document
schema.statics
is nowmodel.methods
- Both
model.methods
&model.methods
have two functions that you call to add & remove methods.set
&delete
methods exist on both objects that you can use to add your methods. This is compared to the old system of calling the function forschema.method
or setting the object forschema.statics
.
- TypeScript Support (v2.1.0) (coming soon, see more information here)
Model.populate
- Plugin Support
- Fixed issue where objects would get stored as a string
[object Object]
instead of the actual object
- Documentation has been rewritten from the ground up to be more clear and provide more examples
- Dynamoose logo now included in
internal
folder - More automated tests which leads to more stablity for Dynamoose (100% code coverage)
- More resources/documentation have been added regarding project structure
- Code of Conduct (CODE_OF_CONDUCT.md)
- Contributing Guidelines (CONTRIBUTING.md)
- Improvements to README
- More badges about project state
- More information relevant to repository (branch strategy, etc)
1.11.1 (2019-09-05)
1.11.0 (2019-08-25)
- plugin: solve problem with rejecting during batchput:called (be01f8c)
- plugin: solve problem with rejecting during update:called (959ba8c)
1.10.0 (2019-06-28)
- scan: add Scan.using() for scanning sparse secondary indexes (cfb5614)
1.9.0 (2019-06-27)
- schema: change the way attributes are set by parseDynamo function (b8d1737)
1.8.5 (2019-06-25)
- schema: fixed circular reference with
JSON.stringify
in Schema (3f614f0)
1.8.4 (2019-06-23)
- change originalItem from being static (44a5b6b)
1.8.3 (2019-06-22)
1.8.2 (2019-06-22)
- dynamoose.ts.d: Add/fix TypeScript types (e7472a7)
1.8.1 (2019-06-22)
- types: added streamOptions to ModelOption (a85780a)
1.8.0 (2019-06-11)
- plugin: item prop for model:put put:called (5043cf3)
1.7.3 (2019-05-15)
- model: allows string for array attribute in contains condition (f68c13a)
1.7.2 (2019-03-18)
1.7.1 (2019-03-18)
- naming: remove extension from name (ca346d0)
1.7.0 (2019-03-18)
- ts: adding ts testing, compiling and exports (0d2ef68)
- ts: fix ci script to also lint typescript (992c7ff)
- ts: fixing spelling (e087570)
1.6.5 (2019-03-03)
1.6.4 (2019-02-19)
1.6.3 (2019-02-18)
- model: fixing batchDelete syntax bug (dfb448f)
- model: fixing update and condition check syntax bug (74623bf)
1.6.2 (2019-02-13)
This is a minor bug fix for Plugins, and also adds some other improvements for plugins and other parts of the app.
Please comment or contact me if you have any questions about this release.
This is a minor release with documentation and project improvements.
Please comment or contact me if you have any questions about this release.
- Add constructor for model schema types in TypeScript #547
- Defined dynamoose transaction in dynamoose.d.ts #540
- Documentation Improvements #561
- ESLint #557
- Project Improvements #558
- Updating issue template with warning about not filling out fields #538
- Updating Dependencies #562
- Refactor transactions tests to use DynamoDB Local tests #563
This release adds support for list_append
when adding elements to a list using the Model.update
method.
Please comment or contact me if you have any questions about this release.
This version adds some more options to the model and schema options objects.
Please comment or contact me if you have any questions about this release.
- errorUnknown #531
- defaultReturnValues #533
Just a simple bug fix release!
Please comment or contact me if you have any questions about this release.
- Make saveUnknown work recursively #522
- Always use Array.isArray to check if array #521
- Fix error logging for data/schema mismatch #518
- Changing to not update timestamps when scaning or querying with filter #510
- dynamoose.d.ts allow validate property on schema to return promise as well as raw boolean #520
- update typescript typings to allow
ON_DEMAND
throughput in SchemaOptions #530
Dynamoose Version 1.3.0 finishes implementation of some important features (DynamoDB transaction support, and pay per request billing mode), improves the overall stability of the project (reduces NPM package size, bug fixes, throwing more errors), along many more improvements.
Please comment or contact me if you have any questions about this release.
- RAW DynamoDB Transaction Item Support #486
- Model.transaction.conditionCheck #485
- Async Schema Methods #492
- Reducing Size of NPM Package #484
- Raise error if list or map not provided #443
- Fix support for PAY_PER_REQUEST BillingMode when Model includes Global Secondary Indexes #504
- Fixing problem where if primary key starts with underscore Model.create doesn’t work #502
- Adding documentation for query.using method #489
- Adding documentation for populating an array of items #493
- Fixes a typo in Model.update documentation #506
AWS reInvent 2018 has wrapped up, and this release includes support for all of the DynamoDB goodies announced. This version also includes beta support for plugins! Plugin support has the potential to have breaking changes in the future with no warning, so please be aware of that when using the system. Please give feedback on plugins by creating issues on the Dynamoose repository.
Please comment or contact me if you have any questions about this release.
- DynamoDB Transaction Support #472
- DynamoDB On-Demand Support #471
- Plugins - BETA #325
- Adding Node.js version 11 to Travis CI test suite #468
- Adding more NPM Keywords #469
- Updating NPM Dependencies #466 #473
Dynamoose version 1.1.0 has a few improvements for debugging Dynamoose as well as a few new features.
Please comment or contact me if you have any questions about this release.
- Update batchPut to work with timestamps #449
- Adding expires defaultExpires function #452
- Make debugging index creation dramatically easier #440
- Adding debug messages for setDDB and revertDDB #451
Dynamoose version 1.0.1 comes with some minor bug fixes to solve problems with Dynamoose version 1.0.0. We are actively monitoring the GitHub Issues and will continue to work to provide bug fixes as fast as possible. Please create a GitHub Issue or contact me if you are having problems and we will work to address it as fast as possible.
Dynamoose version 1.0.0 is here. This is a massive release, and will also be the first official breaking update to Dynamoose. You can view the details about the release below.
This version officially removes support for Node.js versions below 8.0. Versions below 8.0 might work, but we do not make guarantees. Even if Node.js versions below 8.0 work with Dynamoose 1.0+ we might add features that break support for older Node.js versions without a SEMVER major version release.
The one major thing about the release notes below that is a bit confusing is the fact that ES6/Future Changes
are in the Breaking changes
section. That section is directly related to Requiring Node.js version 8.0 and higher
. Therefor although the breaking change is technically the fact that Node.js versions less than 8.0 won't be supported, they are directly related, therefor they are both in the Breaking changes
section. In future 1.x we might add more ES6/Future Changes, but those will not be considered breaking changes due to the fact that it will only break if you are running on a Node.js version less than version 8.0.
Please comment or contact me if you have any questions about this release.
- Requiring Node.js version 8.0 and higher #366
- Toggle useDocumentTypes and useNativeBooleans defaults to true #376
- Query.all and Scan.all Delay Seconds to Milliseconds #287
- Fix data corruption when storing binary data #386
- Adding updateTimestamps option to Model.save #317
- Feature/add enum attribute #274
model.originalItem()
#338
- Adding support for saveUnknown being an array #333
- DynamoDB Document Client/DAX Support #330
- Adding better error handling for parsing invalid data from DynamoDB #331
- Adding support for SSESpecification #306
- Adding support for DynamoDB table streams #332
Model.getTableReq()
#308 #151- Static methods are automatically bound with the context of their Model #361
- Recreate dynamo db instance on .local() #354
- added support for specifying the ReturnValues option in update #350
- Expose Model classes to Schema methods #400 #397
- Refactoring custom error code #414
- Saying which table is effected by Error #356
- Adding expires returnExpiredItems property #426
- DDB Functions #429
- Updates Expires attribute on Model Updates Option #420
- ES6/Future Changes
- Fix saveUnknown throwing errors when value where falsy #336
- Fix scanByRawFilter containing - Select: 'COUNT' #341
- Fix loading document type attributes from DynamoDB when when saveUnknown=true #339
- Fix the ModelError type #374
- Fixes falsy key value for batch get #379
- Fix serverSideEncryption option #383
- Using Buffer.from instead of new Buffer #413
- Fixing issue with query with multiple indexes #344 #343
- Save unknown update #431 #403
- Fixing typo related to stream options #432 #430
- Improving Model.delete documentation #309
- Updated TypeScript types #358 #357
- Updating typescript documentation for create vs put overwrite default #377 #359
- GitHub issue and PR templates #394 #405
- Updating metadata #369
- Change QueryKey and ScanKey type to any #419
- General project work #409
Version 0.8.7 is here! Below is a list of the changes released in Version 0.8.7. Huge THANK YOU to everyone who submitted pull requests and issues in this release. As always keep the issues and pull requests coming, only makes this package better!!
- Adding support for
Query.all()
#223 - Suffix Option #321
- Catch corrupted JSON error #243 #242
- Pass model instance directly to schema::attributeFromDynamo #257
- Fix range key on queries #225
- Provide model when converting keys .toDynamo #217
- Normalise Scan response shape when using "RawAWSFilter" #320
- Remove JSON.stringify for model in Debug message #277
- Set NewModel.name to include table name #300
- Allow unknown types to be populated as native dynamo types #240
- Competition of
.populate
method #250
- Adding Model.queryOne to docs #298
- Schema Get Function Clarification #291
- Fixed Typo in README #282
- Better Static method example (
getAll
) #284 - Added Dynamoose Gitter chat badge to README #247
- Improving README badges on retina displays #229
- Moving ChangeLog and Roadmap to separate files #305
- Moving Examples to Website #304
- Adding AWS X-Ray Support documentation #307 #144
- Throughput is only respected on table creation #316 #311
- More Query tests #290
- Even more Query tests #310
- Fixing issue where some scan tests weren't being run correctly #289
- Switch to NYC (istanbul) for unit test coverage #219
- Enable unit test code coverage reporting #215
- Scan test to ensure all with delay and limit works correctly #314
- Nested Properties Schema Support #258
- Option fields optional, and added overloaded create function #245
- Improve the typing support for
.model()
#234 #233 - Allow update partial data #319
- Adds
ddb
interface #280
- useNativeBooleans #55
- saveUnknown #125
- Support for multiple indexes defined on the hashkey attribute of the table
- scan.all() #93 #140
- scan.parallel d7f7f77
- TTL support 92994f1
- added schema parsing overrides #145
- populate #137
- Added consistent() to scan. #15 #142
- Default function enhancements #127
- Create required attributes on update #96
- Add typescript typings #123
- Added .count() for Query and Scan #101
- Nested scans #141 #158