Skip to content

Commit 8eba868

Browse files
lerouxbaddaleax
andauthored
chore: bump mongodb to 5.7.0 (#1521)
Co-authored-by: Anna Henningsen <[email protected]>
1 parent 90b85ed commit 8eba868

File tree

16 files changed

+78
-72
lines changed

16 files changed

+78
-72
lines changed

.evergreen.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9097,6 +9097,8 @@ tasks:
90979097
node_js_version: "16.20.1"
90989098
npm_deps_mode: all
90999099
- func: test_connectivity
9100+
vars:
9101+
node_js_version: "16.20.1"
91009102
- name: test_apistrict
91019103
tags: ["extra-integration-test"]
91029104
depends_on:

.evergreen/evergreen.yml.in

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -794,6 +794,8 @@ tasks:
794794
node_js_version: "<% out(NODE_JS_VERSION_16) %>"
795795
npm_deps_mode: all
796796
- func: test_connectivity
797+
vars:
798+
node_js_version: "<% out(NODE_JS_VERSION_16) %>"
797799
- name: test_apistrict
798800
tags: ["extra-integration-test"]
799801
depends_on:

.evergreen/install-node.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,11 @@ else
3131
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"
3232
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion"
3333

34+
set +x # nvm is very verbose
35+
echo nvm install --no-progress $NODE_JS_VERSION && nvm alias default $NODE_JS_VERSION
3436
nvm install --no-progress $NODE_JS_VERSION
3537
nvm alias default $NODE_JS_VERSION
38+
set -x
3639

3740
if env PATH="/opt/chefdk/gitbin:$PATH" git --version | grep -q 'git version 1.'; then
3841
(cd "$BASEDIR" &&

.evergreen/setup-env.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,10 @@ if [ "$OS" != "Windows_NT" ]; then
1111
export NVM_DIR="$HOME/.nvm"
1212
echo "Setting NVM environment home: $NVM_DIR"
1313
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"
14+
set +x # nvm is very verbose
15+
echo nvm use $NODE_JS_VERSION
1416
nvm use $NODE_JS_VERSION
17+
set -x
1518
export PATH="$NVM_BIN:$PATH"
1619

1720
export CC=gcc

package-lock.json

Lines changed: 38 additions & 30 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@
115115
"husky": "^8.0.3",
116116
"lerna": "^4.0.0",
117117
"mocha": "^10.2.0",
118-
"mongodb": "^5.6.0",
118+
"mongodb": "^5.7.0",
119119
"node-gyp": "^9.0.0",
120120
"nyc": "^15.1.0",
121121
"pkg-up": "^3.1.0",

packages/arg-parser/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
"@mongodb-js/tsconfig-mongosh": "^1.0.0",
4545
"depcheck": "^1.4.3",
4646
"eslint": "^7.25.0",
47-
"mongodb": "^5.6.0",
47+
"mongodb": "^5.7.0",
4848
"prettier": "^2.8.8"
4949
}
5050
}

packages/cli-repl/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@
107107
"eslint": "^7.25.0",
108108
"lodash": "^4.17.21",
109109
"moment": "^2.29.1",
110-
"mongodb": "^5.6.0",
110+
"mongodb": "^5.7.0",
111111
"mongodb-crypt-library-dummy": "^1.0.2",
112112
"node-fetch": "^2.6.1",
113113
"prettier": "^2.8.8",

packages/service-provider-core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
"@aws-sdk/credential-providers": "^3.347.1",
4545
"@mongosh/errors": "0.0.0-dev.0",
4646
"bson": "^5.3.0",
47-
"mongodb": "^5.6.0",
47+
"mongodb": "^5.7.0",
4848
"mongodb-build-info": "^1.6.2"
4949
},
5050
"optionalDependencies": {

packages/service-provider-server/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
"@mongosh/types": "0.0.0-dev.0",
5252
"@types/sinon-chai": "^3.2.4",
5353
"aws4": "^1.11.0",
54-
"mongodb": "^5.6.0",
54+
"mongodb": "^5.7.0",
5555
"mongodb-connection-string-url": "^2.6.0",
5656
"saslprep": "mongodb-js/saslprep#v1.0.4"
5757
},

0 commit comments

Comments
 (0)