-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: update mongosh to 2.0.0 and driver to 6.0.0 VSCODE-453 (#592)
- Loading branch information
Showing
7 changed files
with
1,037 additions
and
3,316 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,3 +23,4 @@ ignores: | |
- postcss-loader | ||
- style-loader | ||
- ts-loader | ||
- mongodb-runner |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -47,11 +47,11 @@ | |
"watch": "npm run compile && npm-run-all -p watch:*", | ||
"watch:extension": "npm run compile:extension -- -watch", | ||
"watch:extension-bundles": "webpack --mode development --watch", | ||
"pretest": "npm run compile && mongodb-runner start --port=27018", | ||
"pretest": "npm run compile && mongodb-runner start --id=vscode -- --port 27018", | ||
"test": "npm run test-webview && npm run test-extension", | ||
"test-extension": "cross-env NODE_OPTIONS=--no-force-async-hooks-checks xvfb-maybe node ./out/test/runTest.js", | ||
"test-webview": "jest", | ||
"posttest": "mongodb-runner stop --port=27018", | ||
"posttest": "mongodb-runner stop --id=vscode", | ||
"analyze-bundle": "webpack --mode production --analyze", | ||
"vscode:prepublish": "npm run clean && npm run compile:keyfile && npm run compile:resources && webpack --mode production", | ||
"check": "npm run lint && npm run depcheck", | ||
|
@@ -980,24 +980,25 @@ | |
"@iconify-icons/codicon": "^1.2.25", | ||
"@iconify/react": "^1.1.4", | ||
"@leafygreen-ui/logo": "^8.0.4", | ||
"@mongodb-js/mongodb-constants": "^0.6.5", | ||
"@mongosh/browser-runtime-electron": "^1.10.4", | ||
"@mongosh/i18n": "^1.10.4", | ||
"@mongosh/service-provider-server": "^1.10.4", | ||
"@mongosh/shell-api": "^1.10.4", | ||
"@mongodb-js/mongodb-constants": "^0.7.0", | ||
"@mongosh/browser-runtime-electron": "^2.0.0", | ||
"@mongosh/i18n": "^2.0.0", | ||
"@mongosh/service-provider-server": "^2.0.0", | ||
"@mongosh/shell-api": "^2.0.0", | ||
"analytics-node": "^6.2.0", | ||
"bson": "^5.3.0", | ||
"bson-transpilers": "^2.0.4", | ||
"classnames": "^2.3.2", | ||
"debug": "^4.3.4", | ||
"dotenv": "^16.3.1", | ||
"micromatch": "^4.0.5", | ||
"mongodb": "^5.8.1", | ||
"mongodb-build-info": "^1.5.0", | ||
"mongodb": "^6.0.0", | ||
"mongodb-build-info": "^1.6.2", | ||
"mongodb-cloud-info": "^2.1.0", | ||
"mongodb-connection-string-url": "^2.6.0", | ||
"mongodb-data-service": "^22.8.0", | ||
"mongodb-query-parser": "^2.5.0", | ||
"mongodb-data-service": "^22.10.0", | ||
"mongodb-data-service-legacy": "npm:[email protected]", | ||
"mongodb-query-parser": "^3.1.3", | ||
"mongodb-schema": "^11.2.2", | ||
"numeral": "^2.0.6", | ||
"react": "^17.0.2", | ||
|
@@ -1012,10 +1013,10 @@ | |
}, | ||
"devDependencies": { | ||
"@babel/preset-typescript": "^7.22.5", | ||
"@mongodb-js/oidc-plugin": "^0.2.4", | ||
"@mongodb-js/oidc-plugin": "^0.3.0", | ||
"@mongodb-js/prettier-config-compass": "^1.0.0", | ||
"@mongodb-js/sbom-tools": "^0.5.4", | ||
"@mongosh/service-provider-core": "^1.10.4", | ||
"@mongosh/service-provider-core": "^2.0.0", | ||
"@types/analytics-node": "^3.1.11", | ||
"@types/babel__core": "^7.20.1", | ||
"@types/babel__traverse": "^7.20.1", | ||
|
@@ -1064,8 +1065,8 @@ | |
"mocha": "^8.4.0", | ||
"mocha-junit-reporter": "^2.2.0", | ||
"mocha-multi": "^1.1.7", | ||
"mongodb-client-encryption": "^2.8.0", | ||
"mongodb-runner": "^4.10.0", | ||
"mongodb-client-encryption": "^6.0.0", | ||
"mongodb-runner": "^5.4.4", | ||
"node-loader": "^0.6.0", | ||
"npm-run-all": "^4.1.5", | ||
"ora": "^5.4.1", | ||
|
@@ -1089,6 +1090,11 @@ | |
"xvfb-maybe": "^0.2.1", | ||
"yargs-parser": "^20.2.9" | ||
}, | ||
"overrides": { | ||
"mongodb-connection-model": { | ||
"@mongodb-js/compass-utils": "0.3.4" | ||
} | ||
}, | ||
"precommit": [ | ||
"check" | ||
] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters