Skip to content

Releases: mrodrig/deeks

NPM Release v3.1.1

13 Jul 02:09
f0494ec
Compare
Choose a tag to compare
Merge pull request #34 from mrodrig/july24-audit-fix

July24 audit fix

NPM Release v3.1.0

25 Feb 03:59
acc74f2
Compare
Choose a tag to compare
Merge pull request #33 from mrodrig/feat/add-arrayIndexesAsKeys

Add arrayIndexesAsKeys option

NPM Release v3.0.2

25 Feb 03:52
f00347b
Compare
Choose a tag to compare
Merge pull request #32 from mrodrig/oct23-npm-audit-fixes

Oct23 npm audit fixes

NPM Release v3.0.0

22 Mar 14:36
5f69d15
Compare
Choose a tag to compare
Merge pull request #29 from mrodrig/tsify

Migrate to TypeScript

NPM Release v2.6.1

12 Feb 06:06
Compare
Choose a tag to compare
chore(rel): 2.6.1

NPM Release v2.6.0

22 Nov 04:00
ee3749c
Compare
Choose a tag to compare
Fix Type Error when null is passed to deepKeys (#26)

* fix: resolve "TypeError: Cannot convert undefined or null to object"

Initially reported in https://github.com/mrodrig/json-2-csv/issues/222
This issue appears when a `null` value is passed for key enumeration because technically `null` is an object, but doesn't have keys. This commit fixes the issue by adding a null check to prevent the type error.

* chore(deps): npm audit fix

* chore(rel): 2.6.0

NPM Release v2.5.2

26 Jan 02:42
Compare
Choose a tag to compare

NPM Audit Fixes

NPM Release v2.5.0

01 Jun 03:11
faf1bd1
Compare
Choose a tag to compare
Add ignore empty arrays option (#20)

* Add `ignoreEmptyArrays` option.

* chore(release): 2.5.0

NPM Release v2.4.1

01 Jun 03:10
defc56a
Compare
Choose a tag to compare
Update replacement to encompass all nested dots in the key (#19)

* fix: update replacement to encompass all nested dots in the key

* chore(release): 2.4.1

NPM Release v2.4.0

26 May 04:01
9d25aeb
Compare
Choose a tag to compare
release 2.4.0 (#18)

* chore(release): 2.4.0

* Add escapeNestedDots option for preserving key structure. (#17)

This module did not previously offer a way to encode any nested '.'
characters in a key such that it could be easily identified for use by
the end user or other modules. As a result, any keys which had nested
'.' characters appeared as though they were simply another nested object
layer, but this could cause issues if trying to reconstruct the object.
This commit adds the escapeNestedDots option which allows the user to
optionally specify that this information should be encoded for later use
by the consuming software.

Related to https://github.com/mrodrig/json-2-csv/issues/184