File tree 4 files changed +10
-4
lines changed
4 files changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -1707,7 +1707,7 @@ tasks:
1707
1707
- func : bootstrap kms servers
1708
1708
- func : run custom csfle tests
1709
1709
vars :
1710
- CSFLE_GIT_REF : 41afd44ca04d246998969c53de4e0f22802b0c8a
1710
+ CSFLE_GIT_REF : 4e4613a0e725a8ba10f2c6ce8bff666e2f184549
1711
1711
- name : run-custom-csfle-tests-5.0-master
1712
1712
tags :
1713
1713
- run-custom-dependency-tests
@@ -1737,7 +1737,7 @@ tasks:
1737
1737
- func : bootstrap kms servers
1738
1738
- func : run custom csfle tests
1739
1739
vars :
1740
- CSFLE_GIT_REF : 41afd44ca04d246998969c53de4e0f22802b0c8a
1740
+ CSFLE_GIT_REF : 4e4613a0e725a8ba10f2c6ce8bff666e2f184549
1741
1741
- name : run-custom-csfle-tests-rapid-master
1742
1742
tags :
1743
1743
- run-custom-dependency-tests
@@ -1767,7 +1767,7 @@ tasks:
1767
1767
- func : bootstrap kms servers
1768
1768
- func : run custom csfle tests
1769
1769
vars :
1770
- CSFLE_GIT_REF : 41afd44ca04d246998969c53de4e0f22802b0c8a
1770
+ CSFLE_GIT_REF : 4e4613a0e725a8ba10f2c6ce8bff666e2f184549
1771
1771
- name : run-custom-csfle-tests-latest-master
1772
1772
tags :
1773
1773
- run-custom-dependency-tests
Original file line number Diff line number Diff line change @@ -550,7 +550,7 @@ const oneOffFuncAsTasks = oneOffFuncs.map(oneOffFunc => ({
550
550
} ) ) ;
551
551
552
552
[ '5.0' , 'rapid' , 'latest' ] . forEach ( version => {
553
- [ '41afd44ca04d246998969c53de4e0f22802b0c8a ' , 'master' ] . forEach ( ref => {
553
+ [ '4e4613a0e725a8ba10f2c6ce8bff666e2f184549 ' , 'master' ] . forEach ( ref => {
554
554
oneOffFuncAsTasks . push ( {
555
555
name : `run-custom-csfle-tests-${ version } -${ ref === 'master' ? ref : 'pinned-commit' } ` ,
556
556
tags : [ 'run-custom-dependency-tests' ] ,
Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ import type {
6
6
SerializeOptions
7
7
} from 'bson' ;
8
8
9
+ /** @internal */
9
10
// eslint-disable-next-line @typescript-eslint/no-var-requires
10
11
let BSON = require ( 'bson' ) ;
11
12
@@ -39,6 +40,9 @@ export {
39
40
Timestamp
40
41
} from 'bson' ;
41
42
43
+ /** @internal */
44
+ export { BSON } ;
45
+
42
46
/**
43
47
* BSON Serialization options.
44
48
* @public
Original file line number Diff line number Diff line change @@ -13,6 +13,8 @@ import { MongoClient } from './mongo_client';
13
13
import { CancellationToken } from './mongo_types' ;
14
14
import { PromiseProvider } from './promise_provider' ;
15
15
16
+ /** @internal */
17
+ export { BSON } from './bson' ;
16
18
export {
17
19
Binary ,
18
20
BSONRegExp ,
You can’t perform that action at this time.
0 commit comments