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

types: make init hooks types accurately reflect runtime behavior #15331

Merged
merged 4 commits into from
Mar 28, 2025

Conversation

vkarpov15
Copy link
Collaborator

Fix #15301

Summary

Init hooks are special because they are synchronous, so there's no next callback. Also, the first parameter to init hooks is the raw data being hydrated, not the hydrated Mongoose document. This PR fixes that, although in the interest of caution it might be better to put this change in a minor release. WDYT @hasezoey ?

Examples

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.

Looks mostly good to me, though some questions on deleted tests.
And yes, it would be good to have this in a minor instead of patch version.

@hasezoey hasezoey added the typescript Types or Types-test related issue / Pull Request label Mar 28, 2025
@vkarpov15 vkarpov15 merged commit 3e5533e into master Mar 28, 2025
6 checks passed
@vkarpov15 vkarpov15 added this to the 8.12.3 milestone Mar 28, 2025
Comment on lines -696 to -739
schema.pre(['save', 'init'], function() {
expectType<HydratedDocument<IDocument>>(this);
});

schema.post(['save', 'init'], function(res) {
expectType<HydratedDocument<IDocument>>(this);
expectNotType<Query<any, any>>(res);
});

schema.pre(['save', 'init'], { document: true, query: false }, function() {
expectType<HydratedDocument<IDocument>>(this);
});

schema.post(['save', 'init'], { document: true, query: false }, function(res) {
expectType<HydratedDocument<IDocument>>(this);
expectNotType<Query<any, any>>(res);
});

schema.pre(['save', 'init'], { document: true, query: true }, function() {
expectType<HydratedDocument<IDocument>>(this);
});

schema.post(['save', 'init'], { document: true, query: true }, function(res) {
expectType<HydratedDocument<IDocument>>(this);
expectNotType<Query<any, any>>(res);
});

schema.pre(['save', 'init'], { document: false, query: true }, function() {
expectType<never>(this);
});

schema.post(['save', 'init'], { document: false, query: true }, function(res) {
expectType<never>(this);
expectNotType<Query<any, any>>(res);
});

schema.pre(['save', 'init'], { document: false, query: false }, function() {
expectType<never>(this);
});

schema.post(['save', 'init'], { document: false, query: false }, function(res) {
expectType<never>(this);
expectNotType<Query<any, any>>(res);
});
Copy link
Collaborator

@hasezoey hasezoey Mar 28, 2025

Choose a reason for hiding this comment

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

I didnt write about this before, but should those maybe also be restored for just save-array case? (which is possible, though weird and should likely not be used)

@vkarpov15 vkarpov15 modified the milestones: 8.13.1, 8.14 Mar 28, 2025
@vkarpov15 vkarpov15 deleted the vkarpov15/gh-15301 branch April 3, 2025 13:32
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
typescript Types or Types-test related issue / Pull Request
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Getter is not applied when schema changes from string to nested schema
2 participants