bson 5.5.0 → 5.5.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/bson.rn.cjs CHANGED
@@ -108,7 +108,7 @@ class BSONVersionError extends BSONError {
108
108
  return 'BSONVersionError';
109
109
  }
110
110
  constructor() {
111
- super(`Unsupported BSON version, bson types must be from bson ${BSON_MAJOR_VERSION}.0 or later`);
111
+ super(`Unsupported BSON version, bson types must be from bson ${BSON_MAJOR_VERSION}.x.x`);
112
112
  }
113
113
  }
114
114
  class BSONRuntimeError extends BSONError {