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(NODE-6735, NODE-6711): add BSON vector validation to EJSON stringification, serialization and conversion to native types #748

Merged
merged 13 commits into from
Apr 3, 2025

Conversation

nbbeeken
Copy link
Contributor

@nbbeeken nbbeeken commented Feb 10, 2025

Description

What is changing?

NODE-6735 and NODE-6711

Is there new documentation needed for these changes?

What is the motivation for this change?

Release Highlight

Prevent the creation of incorrectly sized float32 vectors

This adds validation to our BSON.serialize and EJSON.stringify methods that will prevent creating float 32 vectors that are not a multiple of 4. Previously created vectors that do not meet this validation will still be deserialized and parsed so they can be fixed.

Additionally, the toFloat32Array(), toInt8Array(), and toPackedBits() methods now perform the same validation that serialize does to prevent use of incorrectly formatted Binary vector values. (For example, a packed bits vector with more than 7 bits of padding)

Vectors of an incorrect length could only be made manually (directly constructing the bytes and calling new Binary). We recommend using toFloat32Array and fromFloat32Array when interacting with Vectors in MongoDB as they handle the proper creation and translation of this data type.

Double check the following

  • Ran npm run check:lint script
  • Self-review completed using the steps outlined here
  • PR title follows the correct format: type(NODE-xxxx)[!]: description
    • Example: feat(NODE-1234)!: rewriting everything in coffeescript
  • Changes are covered by tests
  • New TODOs have a related JIRA ticket

@nbbeeken nbbeeken force-pushed the NODE-6735-vector-validation branch from db3ee49 to 34dd81f Compare February 10, 2025 16:13
@nbbeeken nbbeeken force-pushed the NODE-6735-vector-validation branch from 34dd81f to 847e733 Compare March 24, 2025 16:30
@nbbeeken nbbeeken marked this pull request as ready for review March 24, 2025 16:31
@nbbeeken nbbeeken requested a review from a team as a code owner March 24, 2025 16:31
@baileympearson baileympearson self-assigned this Mar 24, 2025
@baileympearson baileympearson added the Primary Review In Review with primary reviewer, not yet ready for team's eyes label Mar 24, 2025
@nbbeeken nbbeeken requested a review from baileympearson March 24, 2025 18:17
@nbbeeken nbbeeken requested a review from baileympearson March 26, 2025 17:08
@nbbeeken nbbeeken force-pushed the NODE-6735-vector-validation branch from 3c7ec59 to 3b8e801 Compare March 28, 2025 14:28
@nbbeeken nbbeeken requested a review from baileympearson April 1, 2025 18:38
@nbbeeken nbbeeken requested a review from baileympearson April 2, 2025 21:05
@baileympearson baileympearson changed the title fix(NODE-6735): prevent serializer and stringify from creating invalid float32 vectors fix(NODE-6735, NODE-6711): prevent serializer and stringify from creating invalid float32 vectors Apr 3, 2025
@baileympearson baileympearson changed the title fix(NODE-6735, NODE-6711): prevent serializer and stringify from creating invalid float32 vectors fix(NODE-6735, NODE-6711): add BSON vector validation to EJSON stringification, serialization and conversion to native types Apr 3, 2025
@baileympearson baileympearson merged commit 64ff6a2 into main Apr 3, 2025
8 checks passed
@baileympearson baileympearson deleted the NODE-6735-vector-validation branch April 3, 2025 18:22
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Primary Review In Review with primary reviewer, not yet ready for team's eyes
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants