Skip to content

Commit

Permalink
Merge branch 'main' into gagik/status-6.0.3-clusters
Browse files Browse the repository at this point in the history
  • Loading branch information
gagik authored Oct 17, 2024
2 parents e7f0eef + d71dd91 commit 7ae0ac7
Show file tree
Hide file tree
Showing 26 changed files with 619 additions and 534 deletions.
2 changes: 1 addition & 1 deletion THIRD_PARTY_NOTICES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
The following third-party software is used by and included in **mongosh**.
This document was automatically generated on Tue Oct 15 2024.
This document was automatically generated on Wed Oct 16 2024.

## List of dependencies

Expand Down
1,095 changes: 585 additions & 510 deletions package-lock.json

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,8 @@
"webpack-bundle-analyzer": "^4.7.0",
"webpack-cli": "^4.3.1",
"which": "^2.0.2",
"yaml": "^1.10.0"
"yaml": "^1.10.0",
"depcheck": "^1.4.7"
},
"optionalDependencies": {
"lerna": "^8.1.8"
Expand Down
2 changes: 1 addition & 1 deletion packages/arg-parser/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
"@mongodb-js/eslint-config-mongosh": "^1.0.0",
"@mongodb-js/prettier-config-devtools": "^1.0.1",
"@mongodb-js/tsconfig-mongosh": "^1.0.0",
"depcheck": "^1.4.3",
"depcheck": "^1.4.7",
"eslint": "^7.25.0",
"mongodb": "^6.9.0",
"prettier": "^2.8.8"
Expand Down
2 changes: 1 addition & 1 deletion packages/async-rewriter2/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
"@mongodb-js/prettier-config-devtools": "^1.0.1",
"@mongodb-js/tsconfig-mongosh": "^1.0.0",
"@types/babel__core": "^7.20.1",
"depcheck": "^1.4.3",
"depcheck": "^1.4.7",
"eslint": "^7.25.0",
"prettier": "^2.8.8"
}
Expand Down
2 changes: 1 addition & 1 deletion packages/autocomplete/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
"@mongodb-js/eslint-config-mongosh": "^1.0.0",
"@mongodb-js/prettier-config-devtools": "^1.0.1",
"@mongodb-js/tsconfig-mongosh": "^1.0.0",
"depcheck": "^1.4.3",
"depcheck": "^1.4.7",
"eslint": "^7.25.0",
"mocha": "^10.2.0",
"prettier": "^2.8.8"
Expand Down
2 changes: 1 addition & 1 deletion packages/browser-repl/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@
"@wojtekmaj/enzyme-adapter-react-17": "^0.8.0",
"babel-loader": "^8.3.0",
"buffer": "^6.0.3",
"depcheck": "^1.4.3",
"depcheck": "^1.4.7",
"enzyme": "^3.11.0",
"eslint": "^7.25.0",
"html-webpack-plugin": "^5.5.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/browser-runtime-core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
"@mongodb-js/tsconfig-mongosh": "^1.0.0",
"@mongosh/types": "0.0.0-dev.0",
"bson": "^6.8.0",
"depcheck": "^1.4.3",
"depcheck": "^1.4.7",
"eslint": "^7.25.0",
"prettier": "^2.8.8",
"rimraf": "^3.0.2"
Expand Down
2 changes: 1 addition & 1 deletion packages/browser-runtime-electron/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
"@mongosh/service-provider-server": "0.0.0-dev.0",
"@types/sinon": "^7.5.1",
"@types/sinon-chai": "^3.2.4",
"depcheck": "^1.4.3",
"depcheck": "^1.4.7",
"eslint": "^7.25.0",
"prettier": "^2.8.8",
"rimraf": "^3.0.2"
Expand Down
2 changes: 1 addition & 1 deletion packages/build/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
"@types/tar-fs": "^2.0.0",
"@types/tmp": "^0.2.3",
"cross-spawn": "^7.0.3",
"depcheck": "^1.4.3",
"depcheck": "^1.4.7",
"eslint": "^7.25.0",
"prettier": "^2.8.8",
"sinon-chai": "^3.5.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/cli-repl/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@
"@types/yargs-parser": "^15.0.0",
"@types/chai-as-promised": "^7.1.3",
"chai-as-promised": "^7.1.1",
"depcheck": "^1.4.3",
"depcheck": "^1.4.7",
"eslint": "^7.25.0",
"mongodb-crypt-library-dummy": "^1.0.2",
"prettier": "^2.8.8",
Expand Down
9 changes: 9 additions & 0 deletions packages/cli-repl/src/smoke-tests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,15 @@ export async function runSmokeTests({
perfTestIterations: 20,
tags: ['startup'],
},
{
name: 'eval_nodb_require',
input: '',
output: /foobar/,
includeStderr: false,
testArgs: ['--nodb', '--eval', 'require("util").format("%sbar", "foo")'],
exitCode: 0,
perfTestIterations: 0,
},
{
name: 'mongosh_version',
input: '',
Expand Down
2 changes: 1 addition & 1 deletion packages/e2e-tests/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
"@types/rimraf": "^3.0.0",
"bson": "^6.8.0",
"chai-as-promised": "^7.1.1",
"depcheck": "^1.4.3",
"depcheck": "^1.4.7",
"eslint": "^7.25.0",
"lodash": "^4.17.21",
"moment": "^2.29.1",
Expand Down
2 changes: 1 addition & 1 deletion packages/editor/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
"@mongodb-js/eslint-config-mongosh": "^1.0.0",
"@mongodb-js/prettier-config-devtools": "^1.0.1",
"@mongodb-js/tsconfig-mongosh": "^1.0.0",
"depcheck": "^1.4.3",
"depcheck": "^1.4.7",
"eslint": "^7.25.0",
"nanobus": "^4.5.0",
"prettier": "^2.8.8"
Expand Down
2 changes: 1 addition & 1 deletion packages/errors/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
"@mongodb-js/prettier-config-devtools": "^1.0.1",
"@mongodb-js/tsconfig-mongosh": "^1.0.0",
"chalk": "^4.1.2",
"depcheck": "^1.4.3",
"depcheck": "^1.4.7",
"eslint": "^7.25.0",
"handlebars": "^4.7.7",
"prettier": "^2.8.8",
Expand Down
2 changes: 1 addition & 1 deletion packages/history/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
"@mongodb-js/eslint-config-mongosh": "^1.0.0",
"@mongodb-js/prettier-config-devtools": "^1.0.1",
"@mongodb-js/tsconfig-mongosh": "^1.0.0",
"depcheck": "^1.4.3",
"depcheck": "^1.4.7",
"eslint": "^7.25.0",
"mongodb-connection-string-url": "^3.0.1",
"prettier": "^2.8.8"
Expand Down
2 changes: 1 addition & 1 deletion packages/i18n/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
"@mongodb-js/eslint-config-mongosh": "^1.0.0",
"@mongodb-js/prettier-config-devtools": "^1.0.1",
"@mongodb-js/tsconfig-mongosh": "^1.0.0",
"depcheck": "^1.4.3",
"depcheck": "^1.4.7",
"eslint": "^7.25.0",
"prettier": "^2.8.8"
}
Expand Down
2 changes: 1 addition & 1 deletion packages/js-multiline-to-singleline/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
"@mongodb-js/prettier-config-devtools": "^1.0.1",
"@mongodb-js/tsconfig-mongosh": "^1.0.0",
"@types/babel__core": "^7.1.18",
"depcheck": "^1.4.3",
"depcheck": "^1.4.7",
"eslint": "^7.25.0",
"prettier": "^2.8.8"
}
Expand Down
2 changes: 1 addition & 1 deletion packages/logging/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"@mongodb-js/eslint-config-mongosh": "^1.0.0",
"@mongodb-js/prettier-config-devtools": "^1.0.1",
"@mongodb-js/tsconfig-mongosh": "^1.0.0",
"depcheck": "^1.4.3",
"depcheck": "^1.4.7",
"eslint": "^7.25.0",
"prettier": "^2.8.8"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/node-runtime-worker-thread/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
"@mongosh/service-provider-server": "0.0.0-dev.0",
"@mongosh/types": "0.0.0-dev.0",
"bson": "^6.8.0",
"depcheck": "^1.4.3",
"depcheck": "^1.4.7",
"eslint": "^7.25.0",
"mocha": "^10.2.0",
"postmsg-rpc": "^2.4.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/service-provider-core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
"@mongodb-js/eslint-config-mongosh": "^1.0.0",
"@mongodb-js/prettier-config-devtools": "^1.0.1",
"@mongodb-js/tsconfig-mongosh": "^1.0.0",
"depcheck": "^1.4.3",
"depcheck": "^1.4.7",
"eslint": "^7.25.0",
"prettier": "^2.8.8"
}
Expand Down
2 changes: 1 addition & 1 deletion packages/service-provider-server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
"@mongodb-js/prettier-config-devtools": "^1.0.1",
"@mongodb-js/tsconfig-mongosh": "^1.0.0",
"@types/sinon-chai": "^3.2.4",
"depcheck": "^1.4.3",
"depcheck": "^1.4.7",
"eslint": "^7.25.0",
"prettier": "^2.8.8"
}
Expand Down
2 changes: 1 addition & 1 deletion packages/shell-api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
"@mongodb-js/tsconfig-mongosh": "^1.0.0",
"@mongosh/types": "0.0.0-dev.0",
"bson": "^6.8.0",
"depcheck": "^1.4.3",
"depcheck": "^1.4.7",
"eslint": "^7.25.0",
"mongodb": "^6.9.0",
"prettier": "^2.8.8",
Expand Down
2 changes: 1 addition & 1 deletion packages/shell-evaluator/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
"@mongodb-js/tsconfig-mongosh": "^1.0.0",
"@mongosh/types": "0.0.0-dev.0",
"@types/sinon-chai": "^3.2.4",
"depcheck": "^1.4.3",
"depcheck": "^1.4.7",
"eslint": "^7.25.0",
"prettier": "^2.8.8"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/snippet-manager/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
"@mongodb-js/tsconfig-mongosh": "^1.0.0",
"@types/cross-spawn": "^6.0.2",
"@types/tar": "^4.0.4",
"depcheck": "^1.4.3",
"depcheck": "^1.4.7",
"eslint": "^7.25.0",
"nanobus": "^4.5.0",
"prettier": "^2.8.8"
Expand Down
2 changes: 1 addition & 1 deletion packages/types/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
"@mongodb-js/eslint-config-mongosh": "^1.0.0",
"@mongodb-js/prettier-config-devtools": "^1.0.1",
"@mongodb-js/tsconfig-mongosh": "^1.0.0",
"depcheck": "^1.4.3",
"depcheck": "^1.4.7",
"eslint": "^7.25.0",
"mongodb": "^6.9.0",
"prettier": "^2.8.8"
Expand Down

0 comments on commit 7ae0ac7

Please sign in to comment.