fix(di.inversify,core): use node util instead of lodash.isequal#783
Merged
omermorad merged 4 commits intoAug 18, 2025
Merged
Conversation
The package warns that it is deprecated:
"This package is deprecated. Use require('node:util').isDeepStrictEqual instead."
Places where it was used now use isDeepStrictEqual from node:util
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## next #783 +/- ##
=======================================
Coverage ? 92.52%
=======================================
Files ? 26
Lines ? 589
Branches ? 99
=======================================
Hits ? 545
Misses ? 35
Partials ? 9
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
Collaborator
|
@HarrySky thank you for contributing! 🎉😄 |
omermorad
pushed a commit
that referenced
this pull request
Nov 15, 2025
omermorad
pushed a commit
that referenced
this pull request
Nov 16, 2025
omermorad
pushed a commit
that referenced
this pull request
Nov 25, 2025
iddan
pushed a commit
that referenced
this pull request
Dec 4, 2025
iddan
pushed a commit
that referenced
this pull request
Dec 7, 2025
omermorad
pushed a commit
that referenced
this pull request
Dec 8, 2025
iddan
pushed a commit
that referenced
this pull request
Dec 10, 2025
iddan
pushed a commit
that referenced
this pull request
Dec 10, 2025
iddan
pushed a commit
that referenced
this pull request
Dec 10, 2025
iddan
pushed a commit
that referenced
this pull request
Dec 10, 2025
iddan
pushed a commit
that referenced
this pull request
Dec 10, 2025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Hi,
lodash.isequalpackage warns that it is deprecated:"This package is deprecated. Use require('node:util').isDeepStrictEqual instead."
As suites is used for testing backend (Node.js) applications - places where it was used can use
isDeepStrictEqualfromnode:utilPR Checklist
Please check if your PR fulfills the following requirements:
PR Type
What kind of change does this PR introduce?
What is the current behavior?
It prints about
lodash.isequaldeprecation when I install your packageIssue Number: N/A
What is the new behavior?
It should no longer bother me with
lodash.isequaldeprecation messageDoes this PR introduce a breaking change?
Other information
I ran
yarn testandyarn lintaccording to the CONTRIBUTING.md, let me know if there is something I missed