Skip to content

Commit

Permalink
Merge branch 'main' of github.com:mongodb-js/mongosh into gagik/e2e-f…
Browse files Browse the repository at this point in the history
…oliage
  • Loading branch information
gagik committed Dec 11, 2024
2 parents 0a3fb5c + a653f62 commit 728cf23
Show file tree
Hide file tree
Showing 15 changed files with 150 additions and 52 deletions.
12 changes: 12 additions & 0 deletions .evergreen.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8183,6 +8183,17 @@ tasks:
mongosh_test_id: "types"
mongosh_run_only_in_package: "types"
task_name: ${task_name}
# TODO: This is an always failing test to check Foliage. Should be removed afterwards.
- name: test_always_failing
tags: ["assigned_to_jira_team_mongosh_mongosh", "unit-test"]
commands:
- command: shell.exec
type: setup
params:
working_dir: src
shell: bash
script: |
node -e "throw new Error()"

###
# INTEGRATION TESTS
Expand Down Expand Up @@ -15293,6 +15304,7 @@ buildvariants:
- name: test_vscode
- name: test_connectivity
- name: test_apistrict
- name: test_always_failing
- name: linux_coverage
display_name: "Ubuntu 20.04 x64 (Coverage and Static Analysis Check)"
run_on: ubuntu2004-small
Expand Down
14 changes: 13 additions & 1 deletion .evergreen/evergreen.yml.in
Original file line number Diff line number Diff line change
Expand Up @@ -1440,7 +1440,7 @@ tasks:
###
<% for (const { id, packageName } of ALL_UNIT_TESTS) { %>
- name: test_<% out(id) %>
tags: <% out(["assigned_to_jira_team_mongosh_mongosh", "unit-test"]) %>
tags: ["assigned_to_jira_team_mongosh_mongosh","unit-test"]
depends_on:
- name: compile_ts
variant: linux_compile
Expand All @@ -1458,6 +1458,17 @@ tasks:
mongosh_run_only_in_package: "<% out(packageName) %>"
task_name: ${task_name}
<% } %>
# TODO: This is an always failing test to check Foliage. Should be removed afterwards.
- name: test_always_failing
tags: ["assigned_to_jira_team_mongosh_mongosh", "unit-test"]
commands:
- command: shell.exec
type: setup
params:
working_dir: src
shell: bash
script: |
node -e "throw new Error()"

###
# INTEGRATION TESTS
Expand Down Expand Up @@ -1898,6 +1909,7 @@ buildvariants:
- name: test_vscode
- name: test_connectivity
- name: test_apistrict
- name: test_always_failing
- name: linux_coverage
display_name: "Ubuntu 20.04 x64 (Coverage and Static Analysis Check)"
run_on: ubuntu2004-small
Expand Down
8 changes: 4 additions & 4 deletions 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 Mon Dec 09 2024.
This document was automatically generated on Tue Dec 10 2024.

## List of dependencies

Expand Down Expand Up @@ -177,7 +177,7 @@ Package|Version|License
**[bplist-parser](#a012056f1b32796d923573a3b1ef72cf36943d95e5e2f6af0f7eeab57a21be24)**|0.2.0|MIT
**[brace-expansion](#2ba3ee23cc6a2718243e9c0c59ce154058f292965f563aa291b459a414e863cb)**|1.1.11|MIT
**[browserslist](#a95274c46e5fc3c90b90fdf6cc259a6b44331ddca76e255afd128465621592ed)**|4.23.3|MIT
**[bson](#f2d0bdff40fb1096ef8f7c55e46c6aaa857f74071c79d0dbe89d52b50d5aad81)**|6.10.0|Apache-2.0
**[bson](#88bcf6ee33d70cc1bf263aac89726781fb724e29ba9647909ffb24584ef23cf4)**|6.10.1|Apache-2.0
**[buffer-alloc-unsafe](#1022220a813dd092d3ced592ac36121a00bd08a9c2020e08ad370dc29ed217f0)**|1.1.0|MIT
**[buffer-alloc](#d5cbc95b9dde4a46cd45334630efe3bc9025c904074bee845376bd60651441c0)**|1.2.0|MIT
**[buffer-fill](#c3747dfd267829ceeb564a1717d0c65d88d2b366e215f640067abefac59e3fd4)**|1.0.0|MIT
Expand Down Expand Up @@ -20576,8 +20576,8 @@ License files:



<a id="f2d0bdff40fb1096ef8f7c55e46c6aaa857f74071c79d0dbe89d52b50d5aad81"></a>
### [bson](https://www.npmjs.com/package/bson) (version 6.10.0)
<a id="88bcf6ee33d70cc1bf263aac89726781fb724e29ba9647909ffb24584ef23cf4"></a>
### [bson](https://www.npmjs.com/package/bson) (version 6.10.1)
License tags: Apache-2.0

License files:
Expand Down
147 changes: 110 additions & 37 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/arg-parser/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
"mongodb-connection-string-url": "^3.0.1"
},
"devDependencies": {
"@mongodb-js/devtools-connect": "^3.3.3",
"@mongodb-js/devtools-connect": "^3.3.4",
"@mongodb-js/eslint-config-mongosh": "^1.0.0",
"@mongodb-js/prettier-config-devtools": "^1.0.1",
"@mongodb-js/tsconfig-mongosh": "^1.0.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 @@ -42,7 +42,7 @@
"@mongodb-js/prettier-config-devtools": "^1.0.1",
"@mongodb-js/tsconfig-mongosh": "^1.0.0",
"@mongosh/types": "0.0.0-dev.0",
"bson": "^6.10.0",
"bson": "^6.10.1",
"depcheck": "^1.4.7",
"eslint": "^7.25.0",
"prettier": "^2.8.8",
Expand Down
1 change: 1 addition & 0 deletions packages/build/AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,4 @@ dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Gagik Amaryan <[email protected]>
Nikola Irinchev <[email protected]>
Dylan Richardson <[email protected]>
mongodb-devtools-bot[bot] <189715634+mongodb-devtools-bot[bot]@users.noreply.github.com>
2 changes: 1 addition & 1 deletion packages/e2e-tests/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
"@types/chai-as-promised": "^7.1.3",
"@types/node": "^14.14.6",
"@types/rimraf": "^3.0.0",
"bson": "^6.10.0",
"bson": "^6.10.1",
"chai-as-promised": "^7.1.1",
"depcheck": "^1.4.7",
"eslint": "^7.25.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/logging/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"node": ">=14.15.1"
},
"dependencies": {
"@mongodb-js/devtools-connect": "^3.3.3",
"@mongodb-js/devtools-connect": "^3.3.4",
"@mongosh/errors": "0.0.0-dev.0",
"@mongosh/history": "0.0.0-dev.0",
"@mongosh/types": "0.0.0-dev.0",
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 @@ -42,7 +42,7 @@
"@mongosh/service-provider-core": "0.0.0-dev.0",
"@mongosh/service-provider-node-driver": "0.0.0-dev.0",
"@mongosh/types": "0.0.0-dev.0",
"bson": "^6.10.0",
"bson": "^6.10.1",
"depcheck": "^1.4.7",
"eslint": "^7.25.0",
"mocha": "^10.2.0",
Expand Down
Loading

0 comments on commit 728cf23

Please sign in to comment.