Skip to content

Commit 728cf23

Browse files
committed
Merge branch 'main' of github.com:mongodb-js/mongosh into gagik/e2e-foliage
2 parents 0a3fb5c + a653f62 commit 728cf23

File tree

15 files changed

+150
-52
lines changed

15 files changed

+150
-52
lines changed

.evergreen.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8183,6 +8183,17 @@ tasks:
81838183
mongosh_test_id: "types"
81848184
mongosh_run_only_in_package: "types"
81858185
task_name: ${task_name}
8186+
# TODO: This is an always failing test to check Foliage. Should be removed afterwards.
8187+
- name: test_always_failing
8188+
tags: ["assigned_to_jira_team_mongosh_mongosh", "unit-test"]
8189+
commands:
8190+
- command: shell.exec
8191+
type: setup
8192+
params:
8193+
working_dir: src
8194+
shell: bash
8195+
script: |
8196+
node -e "throw new Error()"
81868197

81878198
###
81888199
# INTEGRATION TESTS
@@ -15293,6 +15304,7 @@ buildvariants:
1529315304
- name: test_vscode
1529415305
- name: test_connectivity
1529515306
- name: test_apistrict
15307+
- name: test_always_failing
1529615308
- name: linux_coverage
1529715309
display_name: "Ubuntu 20.04 x64 (Coverage and Static Analysis Check)"
1529815310
run_on: ubuntu2004-small

.evergreen/evergreen.yml.in

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1440,7 +1440,7 @@ tasks:
14401440
###
14411441
<% for (const { id, packageName } of ALL_UNIT_TESTS) { %>
14421442
- name: test_<% out(id) %>
1443-
tags: <% out(["assigned_to_jira_team_mongosh_mongosh", "unit-test"]) %>
1443+
tags: ["assigned_to_jira_team_mongosh_mongosh","unit-test"]
14441444
depends_on:
14451445
- name: compile_ts
14461446
variant: linux_compile
@@ -1458,6 +1458,17 @@ tasks:
14581458
mongosh_run_only_in_package: "<% out(packageName) %>"
14591459
task_name: ${task_name}
14601460
<% } %>
1461+
# TODO: This is an always failing test to check Foliage. Should be removed afterwards.
1462+
- name: test_always_failing
1463+
tags: ["assigned_to_jira_team_mongosh_mongosh", "unit-test"]
1464+
commands:
1465+
- command: shell.exec
1466+
type: setup
1467+
params:
1468+
working_dir: src
1469+
shell: bash
1470+
script: |
1471+
node -e "throw new Error()"
14611472

14621473
###
14631474
# INTEGRATION TESTS
@@ -1898,6 +1909,7 @@ buildvariants:
18981909
- name: test_vscode
18991910
- name: test_connectivity
19001911
- name: test_apistrict
1912+
- name: test_always_failing
19011913
- name: linux_coverage
19021914
display_name: "Ubuntu 20.04 x64 (Coverage and Static Analysis Check)"
19031915
run_on: ubuntu2004-small

THIRD_PARTY_NOTICES.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
The following third-party software is used by and included in **mongosh**.
2-
This document was automatically generated on Mon Dec 09 2024.
2+
This document was automatically generated on Tue Dec 10 2024.
33

44
## List of dependencies
55

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

2057720577

2057820578

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

2058320583
License files:

package-lock.json

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

packages/arg-parser/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
"mongodb-connection-string-url": "^3.0.1"
4141
},
4242
"devDependencies": {
43-
"@mongodb-js/devtools-connect": "^3.3.3",
43+
"@mongodb-js/devtools-connect": "^3.3.4",
4444
"@mongodb-js/eslint-config-mongosh": "^1.0.0",
4545
"@mongodb-js/prettier-config-devtools": "^1.0.1",
4646
"@mongodb-js/tsconfig-mongosh": "^1.0.0",

packages/browser-runtime-core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
"@mongodb-js/prettier-config-devtools": "^1.0.1",
4343
"@mongodb-js/tsconfig-mongosh": "^1.0.0",
4444
"@mongosh/types": "0.0.0-dev.0",
45-
"bson": "^6.10.0",
45+
"bson": "^6.10.1",
4646
"depcheck": "^1.4.7",
4747
"eslint": "^7.25.0",
4848
"prettier": "^2.8.8",

packages/build/AUTHORS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,4 @@ dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2121
Gagik Amaryan <[email protected]>
2222
Nikola Irinchev <[email protected]>
2323
Dylan Richardson <[email protected]>
24+
mongodb-devtools-bot[bot] <189715634+mongodb-devtools-bot[bot]@users.noreply.github.com>

packages/e2e-tests/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
"@types/chai-as-promised": "^7.1.3",
4141
"@types/node": "^14.14.6",
4242
"@types/rimraf": "^3.0.0",
43-
"bson": "^6.10.0",
43+
"bson": "^6.10.1",
4444
"chai-as-promised": "^7.1.1",
4545
"depcheck": "^1.4.7",
4646
"eslint": "^7.25.0",

packages/logging/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"node": ">=14.15.1"
1818
},
1919
"dependencies": {
20-
"@mongodb-js/devtools-connect": "^3.3.3",
20+
"@mongodb-js/devtools-connect": "^3.3.4",
2121
"@mongosh/errors": "0.0.0-dev.0",
2222
"@mongosh/history": "0.0.0-dev.0",
2323
"@mongosh/types": "0.0.0-dev.0",

packages/node-runtime-worker-thread/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
"@mongosh/service-provider-core": "0.0.0-dev.0",
4343
"@mongosh/service-provider-node-driver": "0.0.0-dev.0",
4444
"@mongosh/types": "0.0.0-dev.0",
45-
"bson": "^6.10.0",
45+
"bson": "^6.10.1",
4646
"depcheck": "^1.4.7",
4747
"eslint": "^7.25.0",
4848
"mocha": "^10.2.0",

0 commit comments

Comments
 (0)