Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(document): avoid stripping out fields in discriminator schema after select: false field #15322

Merged
merged 2 commits into from
Mar 21, 2025

Conversation

vkarpov15
Copy link
Collaborator

Fix #15308

Summary

When we refactored a forEach() into a for in init(), we left a return that should've become a continue

Examples

@vkarpov15 vkarpov15 added this to the 8.12.2 milestone Mar 20, 2025
@Chee7ah
Copy link

Chee7ah commented Mar 20, 2025

I assume this return should become a continue as well then, right?

mongoose/lib/document.js

Lines 747 to 752 in 47b88cd

for (let index = 0; index < len; ++index) {
i = keys[index];
// avoid prototype pollution
if (i === '__proto__' || i === 'constructor') {
return;
}

Copy link
Collaborator

@hasezoey hasezoey left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM, i second @Chee7ah suggestion.

@vkarpov15 vkarpov15 merged commit 0f6c575 into master Mar 21, 2025
75 checks passed
@hasezoey hasezoey deleted the vkarpov15/gh-15308 branch March 21, 2025 18:52
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Having select: false in a discriminated model causes later fields to be unselected as well
3 participants