Skip to content

Commit 573e141

Browse files
authored
fix(serializer): do not use checkKeys for $clusterTime
Fixes NODE-1409 * fix(serializer): map insert expects only string keys Checks that the key is a string before checking that the key is a valid string to prevent type error. Fixes NODE-1572
1 parent 7656804 commit 573e141

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

lib/bson/parser/serializer.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ var normalizedFunctionString = require('./utils').normalizedFunctionString;
1515
// }
1616

1717
var regexp = /\x00/; // eslint-disable-line no-control-regex
18+
var ignoreKeys = ['$db', '$ref', '$id', '$clusterTime'];
1819

1920
// To ensure that 0.4 of node works correctly
2021
var isDate = function isDate(d) {
@@ -798,7 +799,7 @@ var serializeInto = function serializeInto(
798799
type = typeof value;
799800

800801
// Check the key and throw error if it's illegal
801-
if (key !== '$db' && key !== '$ref' && key !== '$id') {
802+
if (typeof key === 'string' && ignoreKeys.indexOf(key) === -1) {
802803
if (key.match(regexp) != null) {
803804
// The BSON spec doesn't allow keys with null bytes because keys are
804805
// null-terminated.
@@ -899,7 +900,7 @@ var serializeInto = function serializeInto(
899900
type = typeof value;
900901

901902
// Check the key and throw error if it's illegal
902-
if (key !== '$db' && key !== '$ref' && key !== '$id') {
903+
if (typeof key === 'string' && ignoreKeys.indexOf(key) === -1) {
903904
if (key.match(regexp) != null) {
904905
// The BSON spec doesn't allow keys with null bytes because keys are
905906
// null-terminated.

0 commit comments

Comments
 (0)