Skip to content

Bump ts-deepmerge from 2.0.2 to 8.0.0#324

Closed
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/npm_and_yarn/ts-deepmerge-8.0.0
Closed

Bump ts-deepmerge from 2.0.2 to 8.0.0#324
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/npm_and_yarn/ts-deepmerge-8.0.0

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jun 23, 2026

Copy link
Copy Markdown
Contributor

Bumps ts-deepmerge from 2.0.2 to 8.0.0.

Release notes

Sourced from ts-deepmerge's releases.

Safeguard against additional reserved prototype methods

This version safeguards against additional reserved prototype methods from being overwritten by merge operations.

Thank you to @​igorg1312 for the contribution!

Ensure nested objects are always dereferenced

This version ensures nested objects are always dereferenced, even when a merge operation will not affect internal values.

Thanks to @​nick-michael for the contribution!

Update dependencies

No release notes provided.

Update dependencies

No release notes provided.

Use named export instead of default

Changes

This version moves from using a default export for the merge function, to exporting it as a named function. This is to avoid some issues that some native ESM TypeScript projects were facing where it couldn't resolve the types correctly.

Update dependencies

This version just updates the dev dependencies of the project.

Add allowUndefinedOverrides option + update dependencies

Changes

This version includes a new option - allowUndefinedOverrides. If you provide it with false it will prevent explicitly-provided properties with a value of undefined from overwriting existing values:

import merge from "ts-deepmerge";
const objA = { value: 1 };
const objB = { value: 2 };
const objC = { value: undefined };
merge.withOptions({ allowUndefinedOverrides: false }, objA, objB, objC);

The result of the above example would be:

{ value: 2 }

Thanks to @​norahmaria for raising an issue (voodoocreation/ts-deepmerge#28) asking for this feature🙏

Add uniqueArrayItems option + update dependencies

Changes

This version includes a new option - uniqueArrayItems. If you provide it with false it will allow duplicate array items:

import merge from "ts-deepmerge";
</tr></table> 

... (truncated)

Commits
  • 305a058 fix: extend unsafe key blocklist to prevent Object.prototype method o… (#40)
  • 8014216 increment version + prettier fixes
  • d4f2a91 Dereference nested objects (#36)
  • 3bd593f update eslint config dep
  • 4b46031 fix ESLint config
  • 7e2063b Fix outdated link in the README (#32)
  • e83b092 update dependencies
  • e11f471 export named function instead of default
  • 5571561 update dependencies
  • 0d4f2f1 add declared type usage to readme
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    You can disable automated security fix PRs for this repo from the Security Alerts page.

Bumps [ts-deepmerge](https://github.com/voodoocreation/ts-deepmerge) from 2.0.2 to 8.0.0.
- [Release notes](https://github.com/voodoocreation/ts-deepmerge/releases)
- [Commits](voodoocreation/ts-deepmerge@2.0.2...8.0.0)

---
updated-dependencies:
- dependency-name: ts-deepmerge
  dependency-version: 8.0.0
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Jun 23, 2026
@dependabot @github

dependabot Bot commented on behalf of github Jun 23, 2026

Copy link
Copy Markdown
Contributor Author

Looks like ts-deepmerge is up-to-date now, so this is no longer needed.

@dependabot dependabot Bot closed this Jun 23, 2026
@dependabot dependabot Bot deleted the dependabot/npm_and_yarn/ts-deepmerge-8.0.0 branch June 23, 2026 21:43
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants