bson 7.0.0-alpha → 7.0.0-alpha.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.
@@ -48,7 +48,7 @@ function getStylizeFunction(options) {
48
48
  }
49
49
  }
50
50
 
51
- const BSON_MAJOR_VERSION = 6;
51
+ const BSON_MAJOR_VERSION = 7;
52
52
  const BSON_VERSION_SYMBOL = Symbol.for('@@mdb.bson.version');
53
53
  const BSON_INT32_MAX = 0x7fffffff;
54
54
  const BSON_INT32_MIN = -2147483648;
package/lib/bson.cjs CHANGED
@@ -47,7 +47,7 @@ function getStylizeFunction(options) {
47
47
  }
48
48
  }
49
49
 
50
- const BSON_MAJOR_VERSION = 6;
50
+ const BSON_MAJOR_VERSION = 7;
51
51
  const BSON_VERSION_SYMBOL = Symbol.for('@@mdb.bson.version');
52
52
  const BSON_INT32_MAX = 0x7fffffff;
53
53
  const BSON_INT32_MIN = -2147483648;
package/lib/bson.mjs CHANGED
@@ -45,7 +45,7 @@ function getStylizeFunction(options) {
45
45
  }
46
46
  }
47
47
 
48
- const BSON_MAJOR_VERSION = 6;
48
+ const BSON_MAJOR_VERSION = 7;
49
49
  const BSON_VERSION_SYMBOL = Symbol.for('@@mdb.bson.version');
50
50
  const BSON_INT32_MAX = 0x7fffffff;
51
51
  const BSON_INT32_MIN = -2147483648;
package/lib/bson.node.mjs CHANGED
@@ -45,7 +45,7 @@ function getStylizeFunction(options) {
45
45
  }
46
46
  }
47
47
 
48
- const BSON_MAJOR_VERSION = 6;
48
+ const BSON_MAJOR_VERSION = 7;
49
49
  const BSON_VERSION_SYMBOL = Symbol.for('@@mdb.bson.version');
50
50
  const BSON_INT32_MAX = 0x7fffffff;
51
51
  const BSON_INT32_MIN = -2147483648;
package/lib/bson.rn.cjs CHANGED
@@ -47,7 +47,7 @@ function getStylizeFunction(options) {
47
47
  }
48
48
  }
49
49
 
50
- const BSON_MAJOR_VERSION = 6;
50
+ const BSON_MAJOR_VERSION = 7;
51
51
  const BSON_VERSION_SYMBOL = Symbol.for('@@mdb.bson.version');
52
52
  const BSON_INT32_MAX = 0x7fffffff;
53
53
  const BSON_INT32_MIN = -0x80000000;
package/package.json CHANGED
@@ -14,7 +14,7 @@
14
14
  "vendor"
15
15
  ],
16
16
  "types": "bson.d.ts",
17
- "version": "7.0.0-alpha",
17
+ "version": "7.0.0-alpha.1",
18
18
  "author": {
19
19
  "name": "The MongoDB NodeJS Team",
20
20
  "email": "dbx-node@mongodb.com"
package/src/constants.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  /** @internal */
2
- export const BSON_MAJOR_VERSION = 6;
2
+ export const BSON_MAJOR_VERSION = 7;
3
3
 
4
4
  /** @internal */
5
5
  export const BSON_VERSION_SYMBOL = Symbol.for('@@mdb.bson.version');