Skip to content

Commit 549e51d

Browse files
Merge remote-tracking branch 'origin/main' into beta-releases
2 parents 0cfcefd + a8dfc36 commit 549e51d

File tree

78 files changed

+1611
-662
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

78 files changed

+1611
-662
lines changed

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,12 @@
1818
- [ ] New tests and/or benchmarks are included
1919
- [ ] Documentation is changed or added
2020
- [ ] If this change updates the UI, screenshots/videos are added and a design review is requested
21+
- [ ] If this change could impact the load on the MongoDB cluster, please describe the expected and worst case impact
2122
- [ ] I have signed the MongoDB Contributor License Agreement (https://www.mongodb.com/legal/contributor-agreement)
2223

2324
## Motivation and Context
2425
<!--- Why is this change required? What problem does it solve? -->
25-
<!--- If it's updating a dependancy, link to the Pull Request that originally introduced the fix -->
26+
<!--- If it's updating a dependency, link to the Pull Request that originally introduced the fix -->
2627
- [ ] Bugfix
2728
- [ ] New feature
2829
- [ ] Dependency update

THIRD-PARTY-NOTICES.md

Lines changed: 220 additions & 7 deletions
Large diffs are not rendered by default.

configs/testing-library-compass/src/index.tsx

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -422,6 +422,13 @@ function unwrapContextMenuContainer(result: RenderResult) {
422422
firstChild instanceof HTMLElement &&
423423
firstChild.getAttribute('data-testid') === 'context-menu-children-container'
424424
) {
425+
if (
426+
firstChild.firstChild instanceof HTMLElement &&
427+
firstChild.firstChild.getAttribute('data-testid') ===
428+
'copy-paste-context-menu-container'
429+
) {
430+
return { container: firstChild.firstChild, ...rest };
431+
}
425432
return { container: firstChild, ...rest };
426433
} else {
427434
return { container, ...rest };

configs/webpack-config-compass/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@
7070
"cli-progress": "^3.9.1",
7171
"core-js": "^3.17.3",
7272
"css-loader": "^4.3.0",
73-
"electron": "^37.7.1",
73+
"electron": "^37.8.0",
7474
"html-webpack-plugin": "^5.6.0",
7575
"less": "^3.13.1",
7676
"less-loader": "^10.0.1",

docs/tracking-plan.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
> the tracking plan for the specific Compass version you can use the following
77
> URL: `https://github.com/mongodb-js/compass/blob/<compass version>/docs/tracking-plan.md`
88
9-
Generated on Sun, Nov 2, 2025
9+
Generated on Thu, Nov 6, 2025
1010

1111
## Table of Contents
1212

0 commit comments

Comments
 (0)