Skip to content

Commit 862afc1

Browse files
committed
merge main
2 parents 198e4b8 + d719b48 commit 862afc1

39 files changed

+4750
-239
lines changed

THIRD-PARTY-NOTICES.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
The following third-party software is used by and included in **Mongodb Compass**.
2-
This document was automatically generated on Wed Aug 20 2025.
2+
This document was automatically generated on Fri Aug 22 2025.
33

44
## List of dependencies
55

configs/webpack-config-compass/src/index.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -276,10 +276,10 @@ export function createElectronRendererConfig(
276276
writeToDisk: true,
277277
},
278278
client: {
279-
overlay: {
280-
errors: true,
281-
warnings: false,
282-
},
279+
overlay:
280+
process.env.DISABLE_DEVSERVER_OVERLAY === 'true'
281+
? false
282+
: { warnings: false, errors: true, runtimeErrors: true },
283283
},
284284
https: false,
285285
hot: opts.hot,

configs/webpack-config-compass/src/webpack-plugin-multicompiler-progress.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ function progressHandler(
4343
const padStartMsg = Math.max(
4444
...(Array.from(bars.values()).map((bar) =>
4545
// eslint-disable-next-line @typescript-eslint/no-explicit-any
46-
bar ? (bar as any).payload.msg.trim().length : 0
46+
bar ? ((bar as any).payload.msg || '').trim().length : 0
4747
) as number[])
4848
);
4949

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 Wed, Aug 20, 2025
9+
Generated on Fri, Aug 22, 2025
1010

1111
## Table of Contents
1212

0 commit comments

Comments
 (0)