Skip to content

Latest commit

 

History

History
1267 lines (781 loc) · 55.6 KB

CHANGELOG.md

File metadata and controls

1267 lines (781 loc) · 55.6 KB

Dynamoose Changelog


Version 4.0.1

This release fixes a bug related to >= 10 conditions when querying or scanning.

Please comment or contact me if you have any questions about this release.

Bug Fixes

  • Fixes issue where >= 10 conditions when querying or scanning would lead to an error

Documentation

  • Adding community page to website

Version 4.0.0

This release bumps the minimum required version of Node.js to v16.x.x. It also updates the dependencies to the latest versions.

Please comment or contact me if you have any questions about this release.

🚨 Breaking Changes 🚨

  • Dynamoose now requires Node.js v16.x.x or higher

Other

  • Dependency updates

Version 3.3.0

This release is the final release of the v3.x.x line of Dynamoose. This release includes a few bug fixes.

It is highly recommended to upgrade to v4.x.x as soon as possible. The v4.x.x only has a single breaking change, so the migration process is very easy.

Please comment or contact me if you have any questions about this release.

Bug Fixes

  • Fixing issue where index is deleted when projection is set to list of attributes instead of ALL
  • Fixing issue where Model.transaction would fail when using prefix and/or suffix

Documentation

  • Fixing issue where Features tab wasn't showing on sidebar

Version 3.2.1

This release includes some minor bug fixes.

Please comment or contact me if you have any questions about this release.

Bug Fixes

  • Fixes inputs types for Mode.update(), allowing $SET, $ADD, $DELETE and $REMOVE
  • Fixes save bug with expires set to object with no ttl

Documentation

  • Grammar fixes
  • Fixing Mastodon verification link

Version 3.2.0

This release fixes a lot of bugs and adds some nice to have features to make your Dynamoose experience even better.

Please comment or contact me if you have any questions about this release.

General

  • Adds new tableName option to Model initialization settings.
  • Adds new consistent option to batchGet.
  • Improving performance for models and tables with single schema.

Bug Fixes

  • Using all indexes from all schemas in table.
  • Fixed an issue where indexes would get recreated when table throughput is set to ON_DEMAND.
  • Now using correct TypeScript array type for query and scan operations when using toJSON().

Documentation

  • Fixes Configuration documentation for accessKeyId & secretAccessKey in AWS SDK v3.
  • Typo fixes in documentation.
  • Fixed an issue where ESModules import statement documentation for non-TypeScript users was incorrect.
  • Added Dynamoose Mastodon link to website.

Other

  • Now requiring CLA to be signed for all pull request authors.
  • Only including dist folder in npm package.
  • Updating dependencies.
  • Removing support for Dynamoose v2 bug fixes.
  • Added Node.js v19.x to CI test suite.

Version 3.1.0

This release adds support for ISO-8601 date formats! This was one of the most upvoted feature requests on the GitHub issues page. Really exciting to finally delivery this feature.

Please comment or contact me if you have any questions about this release.

Major New Features

  • ISO-8601 Date Format Option.
  • Support for specifying custom type options for timestamp properties.

Documentation

  • Making Transaction documentation more clear about options you can pass in.
  • Fixing edit links on documentation pages.

Other

  • Adding CLA process to new contributors pull requests.

Version 3.0.3

This release fixes a few bugs, and adds the foundation for additional language support on our website.

Please comment or contact me if you have any questions about this release.

Bug Fixes

  • Fix TypeScript return types to allow for chainable methods for Query & Scan
  • Add support for null prototype objects on attribute type Object

Documentation


Version 2.8.8

This release includes a few bug fixes that were back-ported from v3.

Please comment or contact me if you have any questions about this release.

Bug Fixes

  • Fix TypeScript return types to allow for chainable methods for Query & Scan
  • Add support for null prototype objects on attribute type Object

Version 3.0.2

This release fixes a bug for the website where certain links and refreshing would fail sometimes.

Please comment or contact me if you have any questions about this release.

Documentation

  • Fixing website links.

Version 3.0.1

This release fixes a bug where the map attribute property wouldn't work properly when passing it in as a key.

Please comment or contact me if you have any questions about this release.

Bug Fixes

  • Fixes map property when passing it in as a key.

Version 3.0.0

Dynamoose v3 is here!!! This release is a significant upgrade to Dynamoose that includes many great features. The upgrade process for v2 to v3 is also significantly easier compared to the v1 to v2 upgrade process. We encourage everyone to upgrade to v3 as soon as possible. Although v2 will continue to receive bug fixes and security updates as needed for time being, v2 will not be maintained forever, so upgrading to v3 is highly recommended.

Please comment or contact me if you have any questions about this release.

🚨 Breaking Changes 🚨

  • Upgraded to AWS-SDK v3.
    • This leads to a MASSIVE reduction in the package size of Dynamoose.
    • Only users using the dynamoose.aws object will be impacted (if you are only using dynamoose.aws.ddb.local, there will be no breaking changes).
    • In depth changelog:
      • dynamoose.aws.sdk has been removed.
      • dynamoose.aws.ddb now references a @aws-sdk/client-dynamodb DynamoDB instance instead of the previous AWS.DynamoDB instance.
        • Please refer to the AWS-SDK v3 changelogs for more information about what this means for you.
      • dynamoose.aws.converter now uses the methods from @aws-sdk/util-dynamodb.
        • input has changed to convertToAttr.
        • output has changed to convertToNative.
        • For more information please refer to the AWS-SDK v3 changelogs.
      • You can use dynamoose.aws.ddb.DynamoDB to create a new @aws-sdk/client-dynamodb DynamoDB instance.
  • dynamoose.model.defaults has been renamed to dynamoose.Table.defaults.
  • DynamoDB table initialization/updates will no longer be done upon creating a model. Instead they will be done when you initialize a dynamoose.Table instance, or whenever you make a DynamoDB request for a given model (ex. get, create, update).
  • Renamed Document to Item.
    • The largest user facing API change is changing {"return": "document"} to {"return": "item"} and {"return": "documents"} to {"return": "items"}.
  • set Schema attribute settings are now used when retrieving items (ie. get, query, update, etc).
  • Passing {"return": "request"} as a setting into the following methods are now preformed asynchronously:
    • Model.get
    • Model.delete
    • Model.batchGet
    • Model.batchDelete
  • Default values are now only applied if the parent object exists. For example nested object properties with a default value will only be applied if the parent object exists. If this is not what you intended, consider adding a default value of an empty object ({}) or array ([]) to the parent attribute.
  • dynamoose.logger is now an async function instead of an object. For example, dynamoose.logger.status() is now (await dynamoose.logger()).status().
    • You must also now install the dynamoose-logger package in order to use dynamoose.logger(), otherwise an error will be thrown.
  • Renaming seperator to separator in Combine type settings to fix typo.
  • Renaming miliseconds to milliseconds in Date type settings to fix typo.
  • Migrate properties to new dynamoose.type object.
    • dynamoose.UNDEFINED is now dynamoose.type.UNDEFINED.
    • dynamoose.THIS is now dynamoose.type.THIS.
    • dynamoose.NULL is now dynamoose.type.NULL.
  • Stricter validation of Schema types. If you pass in an invalid schema attribute type, it will now throw an error upon initialization.
    • For example, new dynamoose.Schema({"id": "random"}) will now throw an error.
  • Model.table.create.request() has been replaced by Model.table().create({"return": "request"}).
  • Node.js >=v12 now required.
  • New IAM roles (listTagsOfResource, tagResource, untagResource) required if update is set to true.
  • index.global property has been removed within Schema Attribute Settings. It has been replaced with index.type, which accepts "global" or "local" as values. This setting remains optional (however, the default value has changed).
  • Indexes by default will be global as opposed to local.

Major New Features

  • Added support for multiple Dynamoose instances (dynamoose.Instance). This allows you easily make requests to multiple AWS DynamoDB regions.

General

  • Added dynamoose.Table class. dynamoose.model now represents an entity or type of data (ex. User, Movie, Order), and dynamoose.Table represents a single DynamoDB table. By default, whenever you first use a model, a dynamoose.Table instance will be created for you, to ensure backwards compatibility with v2. If you want to create the table manually, you can change your code like so:
// If you have the following code in v2:

const User = dynamoose.model("User", {"id": String});

// It will be converted to this in v3:

const User = dynamoose.model("User", {"id": String});
const DBTable = new dynamoose.Table("DBTable", [User]);
  • Added get & set modifier options to Schema settings to allow for Item wide modification.
  • Added validate method option to Schema settings to allow for Item wide validation.
  • Added tags setting to Table, to be able to add tags to a table.
  • Added map setting to Schema type settings to allow for easily converting DynamoDB attribute names to more human readable names (ex. pk to userId and sk to orderId). This can also be used for aliases. This also includes a defaultMap property that can be used to overwrite what property name Dynamoose should use when retrieving an item from DynamoDB.
  • Added dynamoose.type.ANY type to allow for schema attributes to be any type. You can also set this on the schema setting of a property to allow the object/array to have any children properties.
  • Added tableClass option to Table settings to allow for setting a table to DynamoDB's new infrequent access class option.
  • Added table.create() method to create a table manually.
  • Added table.name property to be able to access table name.
  • Added table.hashKey property to be able to access table's hash key.
  • Added table.rangeKey property to be able to access table's range key.
  • Added model.name property to be able to access model name.
  • Added dynamoose.type.CONSTANT helper function to create a constant type.
  • Added dynamoose.type.COMBINE helper function to create a combine type.
  • Added schema.hashKey & schema.rangeKey properties to allow you to access the hash and range keys of your schemas.
  • Added schema.indexAttributes property that returns an array of strings with each string representing the attribute name of each index.
  • Added item.withDefaults function that will return a new object with default values applied.

Bug Fixes

  • Fixed bug where using model as an attribute name in your Schema would cause random TypeMismatch errors.
  • Fixed an issue where after doing certain Item related operations, the original object passed in could be mutated. This is no longer the case and original items will not be mutated when doing Item related operations.

Documentation

  • JSDoc documentation (Beta)! In certain editors such as VSCode, this allows you to hover over Dynamoose functions and attributes to see their documentation.
  • Dynamoose's website now respects your OS color theme preference instead of always defaulting to light mode.
  • Migrated documentation from Vercel to Cloudflare Pages for PR & branch builds.
  • Adding new pages for documentation:
    • Maintained Versions
    • Version Requirements
  • Added /version page to documentation to easily view the Dynamoose npm version & Git commit SHA of the documentation you are viewing.
  • Added robots.txt file to documentation.
  • Added YouTube channel link to documentation footer.

Other

  • Source map files are no longer included in the package.
    • You can generate source map files by cloning the repository, running npm install, then running npm run build:sourcemap. The generated source map files will be located in the dist folder.
  • Made a lot of internal properties private.
    • This is not considered a breaking change since only documented properties, classes, methods, and functions are included in breaking changes. You should only be using documented properties, classes, methods, and functions in Dynamoose. Anything not documented is subject to change at anytime, and can lead to unexpected behavior. Read more at this FAQ item.
  • Moved source-map-support package into devDependencies.
  • Using Lerna to manage sub-packages for Dynamoose.

Version 2.8.7

Version 3.0.0 of Dynamoose has been released. This is the corresponding v2 release. v2 will continue to receive bug fixes and security updates as needed for time being. However, we recommend that you upgrade to v3 as soon as possible, as v2 will not be maintained forever.

Please comment or contact me if you have any questions about this release.

General

  • Dynamoose v3.0.0 has been released

Version 2.8.6

This release includes a few bug fixes.

Please comment or contact me if you have any questions about this release.

Bug Fixes

  • Fixing issue with recurrsive objects

Documentation

  • Fixing typo

Version 2.8.5

This release is the corresponding v2 release for v3 move to beta. It also includes bug fixes.

Please comment or contact me if you have any questions about this release.

Bug Fixes

  • Fixes validate and set schema attribute settings TypeScript types.

Other

  • v3 has been promoted to beta.

Version 2.8.4

This release includes a few bug fixes.

Please comment or contact me if you have any questions about this release.

Bug Fixes

  • Fixes a bug where using multiple schemas with an attribute with multiple types won't choose the right schema.
  • Fixes a bug where nested raw conditions wouldn't work.

Documentation

  • Fixing typos on contributuing page.

Version 2.8.3

This release fixes a bug if you started source-map-support yourself where Dynamoose would try to do the same and would lead to conflicts.

Please comment or contact me if you have any questions about this release.

Bug Fixes

  • Not registering source-map-support if already initialized.

Other

  • Renamed primary branch from master to main.
  • Added Node.js v16.x to CI test suite.
  • General v3 alpha README fixes.

Version 2.8.2

This release fixes a few major bugs.

Please comment or contact me if you have any questions about this release.

Bug Fixes

  • Fixed bug where Model initialization would fail if waitForActive: true
  • Fixing multiple bugs where objects passed into Dynamoose functions would be mutated

Documentation

  • Added FAQ about empty arrays or objects
  • Improved schema index documentation
  • Improving Scan.startAt & Query.startAt example in documentation
  • Fixing issue where \n appeared in schema attribute type documentation appeared instead of new line

Version 2.8.1

This release includes a few critical bug fixes.

Please comment or contact me if you have any questions about this release.

Bug Fixes

  • Fix issue where query would fail with Index can't be found for query error when querying table itself
  • Resolve issue where Model.update would fail if beginning of attribute was identical to another attribute and marked as required
  • Fix issue in TypeScript where you couldn't pass a number value in for a key parameter
  • Resolved bug where passing a string or number in for Model.update key parameter would throw error

Version 2.8.0

This release contains general stability improvements to Dynamoose.

Please comment or contact me if you have any questions about this release.

General

  • New returnValues settings property for Model.update
  • Allowing waitForActive model setting to be a boolean

Bug Fixes

  • Improvements to index selection when querying without using method
  • Including saveUnknown properties when using Model.update
  • Allowing for strings to be passed into Query.sort method when using TypeScript
  • Removing internal cache to improve memory usage
  • Improving performance when working with Buffers

Documentation

  • Model default settings documentation fixes

Version 2.7.3

This release moves internal Dynamoose object utilities to a different package.

Please comment or contact me if you have any questions about this release.

Other

  • Moving internal object utilities to different package

Version 2.7.2

This release fixes a bug related to the return value of document.save and Model.create, and more.

Please comment or contact me if you have any questions about this release.

Bug Fixes

  • document.save & Model.create now return the document saved to DynamoDB
  • Type messages now display null when passing in a invalid type null value as opposed to the previous object

Other

  • Added some more TypeScript tests

Version 2.7.1

This release has a lot of bug fixes for Dynamoose.

Please comment or contact me if you have any questions about this release.

Bug Fixes

  • Fixing issue where with required check failing for non updating properties when using $DELETE in Model.delete
  • Prioritizing indexes with range key when querying
  • Improvements to type and schema matching for nested properties
  • Fixing issue where retrieving previously created model would ignore prefix and suffix
  • Fixing TypeScript issues with nested models
  • Fixing issue where nested models would auto-populate
  • Fixing issues with nested models within nested elements

Documentation

  • Making saveUnknown more clear in documentation

Other

  • Added warning when passing in undefined into Conditional

Version 2.7.0

This release patches a 🚨 security vulnerability 🚨.

Please comment or contact me if you have any questions about this release.

General

Bug Fixes

  • Fixed a bug related to update setting being true for model with index

Version 2.6.0

This release adds support for a new constant type along with a bunch of other improvements and fixes.

Please comment or contact me if you have any questions about this release.

General

  • Added Constant type
  • Added attributes setting for Model.batchGet

Bug Fixes

  • Fixed issues with nested arrays with multiple data types
  • Fixed issue with array of indexes
  • Fixed bugs related to multiple types for attribute
  • Fixed internal method bug that had the potential to cause issues throughout codebase (only known issue related to update transactions)

Other

  • Added security policy

Version 2.5.0

This release adds support for the DynamoDB null type, along with some more TypeScript fixes, and some other cool enhancements.

Please comment or contact me if you have any questions about this release.

General

  • Added support for the DynamoDB null type
  • Added support for Document.save condition setting

Bug Fixes

  • Fixed TypeScript typing bugs related to Scan & Queries
  • Fixed TypeScript typing bugs related to dynamoose.THIS
  • Fixed TypeScript typing bugs related to Model.waitForActive.check setting
  • Fixed TypeScript typing bugs related to dynamoose.THIS
  • Fixed TypeScript typing issue with multiple type options for attribute

Documentation

  • Better explaination for name parameter representing the DynamoDB table name

Version 2.4.1

This release fixes a performance issue related to TypeScript.

Please comment or contact me if you have any questions about this release.

Other

  • Fixes a memory leak related to the TypeScript target being es6. This was fixed by changing the target to es2017.

Version 2.4.0

This release fixes a lot of bugs and adds support for consistent read support to Model.get and support for conditional deletes.

Please comment or contact me if you have any questions about this release.

General

  • Added consistent read support to Model.get
  • Added support for passing a condition into Model.delete
  • Added support for strongly typed models in TypeScript

Bug Fixes

  • Fixed bug where document.delete would fail with rangeKey
  • Transaction TypeScript improvements
  • Set schema type TypeScript improvements
  • Fixed issue related to having 0 as number for key (range or hash)
  • Fixed bug where passing in reserved keyword attributes into Model.get would fail
  • Improvements to how queries decide which index to use
  • Improvements to storing and retrieving documents with multi-dimensional arrays (nested arrays)

Documentation

  • Updated website search
  • Improvements to documentation clarity

Version 2.3.0

This release adds major new support for single table design.

Please comment or contact me if you have any questions about this release.

Major New Features

  • 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)

General

  • Adds document.toJSON() method
  • Adds Serialization support

Bug Fixes

  • Minor bug fixes for TypeScript typings

Version 2.2.1

This release fixes some minor bugs found in Dynamoose.

Please comment or contact me if you have any questions about this release.

Bug Fixes

  • Fixed an issue with creation of local secondary indexes
  • Fixed an issue where specifying attributes to retrieve wouldn't work with reserved DynamoDB keywords

Other

  • Adding icons to website for GitHub & npm links

Version 2.2.0

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.

General

  • 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

Bug Fixes

  • Fixed an issue where document.original would return a DynamoDB object and not a parsed object in certain cases

Version 2.1.3

This release fixes some minor bugs.

Please comment or contact me if you have any questions about this release.

Bug Fixes

  • Fixing issue where creating multiple indexes would fail when creating or updating table
  • Fixing issue where Model.update with single object and rangeKey would fail

Version 2.1.2

This release fixes a few minor bugs with Model.update.

Please comment or contact me if you have any questions about this release.

Bug Fixes

  • Fixed an issue where Model.update using $REMOVE wouldn't work on non defined attributes using saveUnknown
  • Fixed an issue where Model.update would throw an AWS error ExpressionAttributeValues must not be empty when using $REMOVE

Version 2.1.1

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.

General

  • 🔍 Added search functionality to website

Bug Fixes

  • TypeScript Fixes
    • Removed esModuleInterop from tsconfig.json
    • Allowing Schema Index Throughput to be Optional

Documentation

  • Add migration section from v1 to v2 to website FAQ page
  • Fixed ES Modules Import Documentation

Version 2.1.0

This release adds beta support for TypeScript typings.

Please comment or contact me if you have any questions about this release.

Major New Features

  • Beta support for TypeScript Typings

Version 2.0.0

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.

General

  • Complete rewrite of the codebase!!!
    • Better conditional support with new dynamoose.Condition class
    • Same familiar API
  • 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

🚨 Breaking Changes 🚨

  • dynamoose.setDefaults has been renamed to dynamoose.model.defaults.set
  • dynamoose.local has been renamed to dynamoose.aws.ddb.local
  • dynamoose.setDDB has been renamed to dynamoose.aws.ddb.set
  • dynamoose.revertDDB has been renamed to dynamoose.aws.ddb.revert
  • dynamoose.AWS.config.update has been renamed to dynamoose.aws.sdk.config.update
  • dynamoose.ddb has been renamed to dynamoose.aws.ddb
  • Map attribute type has been replaced with Object
  • List attribute type has been replaced with Array
  • 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 to dynamoose.UNDEFINED to set it to undefined without taking into account the default setting, or undefined to set it to undefined while taking into account the default setting.
  • Model update setting now includes more update actions. To use the v1 update behavior change the value of update setting to be ["ttl", "indexes"].
  • Schema default value does not pass the model instance into default 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 to Model.table.create.request
  • Model.table.create.request (formerly Model.getTableReq) is now an async function
  • model.originalItem has been renamed to model.original (or Document.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 seconds
  • expires.defaultExpires is no longer an option (most behavior from this option can be replicated by using the new dynamoose.UNDEFINED feature)
  • expires.returnExpiredItems has been renamed to expires.items.returnExpired
  • Model.transaction.conditionCheck has been renamed to Model.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 use address.*, or address.** 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 as String type attributes. This will now throw a TypeMismatch error. Strings should be converted before saving.
  • useNativeBooleans & useDocumentTypes have been removed from the Model settings
  • scan.count() has been removed, and scan.counts() has been renamed to scan.count().
  • The attribute types Array & Object in Dynamoose v1 don't work without a schema 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 now model.methods.document
    • schema.statics is now model.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 for schema.method or setting the object for schema.statics.

Features Removed to be Readded Later

  • TypeScript Support (v2.1.0) (coming soon, see more information here)
  • Model.populate
  • Plugin Support

Bug Fixes

  • Fixed issue where objects would get stored as a string [object Object] instead of the actual object

Documentation

  • Documentation has been rewritten from the ground up to be more clear and provide more examples

Other

  • 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)

Bug Fixes

  • fixing model.transaction.conditioncheck (cc04bee), closes #539

1.11.0 (2019-08-25)

Bug Fixes

  • plugin: solve problem with rejecting during batchput:called (be01f8c)
  • plugin: solve problem with rejecting during update:called (959ba8c)

Features

  • plugin: add batchPut events (501c689)
  • plugin: add update events (78e8538)

1.10.0 (2019-06-28)

Features

  • scan: add Scan.using() for scanning sparse secondary indexes (cfb5614)

1.9.0 (2019-06-27)

Features

  • schema: change the way attributes are set by parseDynamo function (b8d1737)

1.8.5 (2019-06-25)

Bug Fixes

  • schema: fixed circular reference with JSON.stringify in Schema (3f614f0)

1.8.4 (2019-06-23)

Bug Fixes

  • change originalItem from being static (44a5b6b)

1.8.3 (2019-06-22)

Bug Fixes

  • types: add property to interface (0c05751), closes #617

1.8.2 (2019-06-22)

Bug Fixes

  • dynamoose.ts.d: Add/fix TypeScript types (e7472a7)

1.8.1 (2019-06-22)

Bug Fixes

  • types: added streamOptions to ModelOption (a85780a)

1.8.0 (2019-06-11)

Features

  • plugin: item prop for model:put put:called (5043cf3)

1.7.3 (2019-05-15)

Bug Fixes

  • model: allows string for array attribute in contains condition (f68c13a)

1.7.2 (2019-03-18)

Bug Fixes

1.7.1 (2019-03-18)

Bug Fixes

  • naming: remove extension from name (ca346d0)

1.7.0 (2019-03-18)

Features

  • 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)

Bug Fixes

  • comment: fix comments in pr (68d757b)
  • index: fixing styling and content (75ea512)

1.6.4 (2019-02-19)

Bug Fixes

  • stop conditions being overwritten (966d7bc)
  • lint: increase limit for Model test file (907b8a6)

1.6.3 (2019-02-18)

Bug Fixes

  • model: fixing batchDelete syntax bug (dfb448f)
  • model: fixing update and condition check syntax bug (74623bf)

1.6.2 (2019-02-13)

Bug Fixes

  • saveunknown: fixing saveunknown toDynamo for maps (873a6ed), closes #323

Version 1.5.2

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.

General


Version 1.5.1

This is a minor release with documentation and project improvements.

Please comment or contact me if you have any questions about this release.

Documentation

Other


Version 1.5.0

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.

General


Version 1.4.0

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.

General


Version 1.3.1

Just a simple bug fix release!

Please comment or contact me if you have any questions about this release.

Bug Fixes

Documentation

Other


Version 1.3.0

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.

General

Bug Fixes

Other

Documentation


Version 1.2.0

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.

Major New Features

General

Bug Fixes

Other


Version 1.1.0

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.

General


Version 1.0.1

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.

Bug Fixes

Documentation


Version 1.0.0

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.

🚨 Breaking changes 🚨

Major New Features

General

Bug Fixes

Documentation

Other


Version 0.8.7

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!!

Major New Features

General

Documentation

Testing

TypeScript Improvements


0.8.0

  • 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