Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions source/bson-binary-vector/bson-binary-vector.md
Original file line number Diff line number Diff line change
Expand Up @@ -247,6 +247,8 @@ See the [README](tests/README.md) for tests.

## Changelog

- 2025-03-07: Update tests to use Extended JSON representation of +/-Infinity. (DRIVERS-3095)

- 2025-02-04: Update validation for decoding into a FLOAT32 vector.

- 2024-11-01: BSON Binary Subtype 9 accepted DRIVERS-2926 (#1708)
2 changes: 1 addition & 1 deletion source/bson-binary-vector/tests/float32.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
{
"description": "Infinity Vector FLOAT32",
"valid": true,
"vector": ["-inf", 0.0, "inf"],
"vector": [{"$numberDouble": "-Infinity"}, 0.0, {"$numberDouble": "Infinity"} ],
"dtype_hex": "0x27",
"dtype_alias": "FLOAT32",
"padding": 0,
Expand Down
Loading