Skip to content

Commit 3b9251a

Browse files
committed
chore: update version to 3.5.0 and add changelog entry for ignoreOwnership option
1 parent 0481f0a commit 3b9251a

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -602,4 +602,8 @@ All notable changes to this project will be documented in this file. Breaking ch
602602

603603
## [3.4.7]
604604
### Fixed
605-
- [Issue #530]((https://github.com/tywalch/electrodb/issues/530)); Fixed issue where ElectroDB would attempt to set a table index field's value on `upsert` if an index key used an attribute's name as it's field name. This would cause the `upsert` to fail because DyanmoDB prevents set operations on table index fields.
605+
- [Issue #530]((https://github.com/tywalch/electrodb/issues/530)); Fixed issue where ElectroDB would attempt to set a table index field's value on `upsert` if an index key used an attribute's name as it's field name. This would cause the `upsert` to fail because DyanmoDB prevents set operations on table index fields.
606+
607+
## [3.5.0]
608+
### Adds
609+
- Adds option to pass ignoreOwnership during entity creation. We are migrating our codebase to use electrodb. Devs sometimes forget to include this flag and it fails silently because types are not narrowed down from the flags passed inside the .go({...}). It will be convenient if there was an option to pass in ignoreOwnership when creating entities so that errors are minimized. Contribution provided by [@xamogh](https://github.com/xamogh) via [PR #457](https://github.com/tywalch/electrodb/pull/457). Thank you for your contribution!

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "electrodb",
3-
"version": "3.4.7",
3+
"version": "3.5.0",
44
"description": "A library to more easily create and interact with multiple entities and heretical relationships in dynamodb",
55
"main": "index.js",
66
"scripts": {

0 commit comments

Comments
 (0)