Skip to content

Commit d0f4a2c

Browse files
Merge remote-tracking branch 'origin/beta-releases' into ga-releases
2 parents 915486d + 62255e8 commit d0f4a2c

File tree

196 files changed

+8255
-2319
lines changed

Some content is hidden

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

196 files changed

+8255
-2319
lines changed

.evergreen/functions.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ variables:
5353
MONGODB_RUNNER_LOG_DIR: ${workdir}/src/.testserver/
5454
DOCKERHUB_USERNAME: ${dockerhub_username}
5555
DOCKERHUB_PASSWORD: ${dockerhub_password}
56+
REQUESTER: ${requester}
5657
- &compass-e2e-secrets
5758
E2E_TESTS_METRICS_URI: ${e2e_tests_metrics_string}
5859
E2E_TESTS_ATLAS_HOST: ${e2e_tests_atlas_host}
@@ -421,7 +422,8 @@ functions:
421422
params:
422423
working_dir: src
423424
shell: bash
424-
include_expansions_in_env: [AWS_ACCESS_KEY_ID, AWS_SECRET_ACCESS_KEY, AWS_SESSION_TOKEN]
425+
include_expansions_in_env:
426+
[AWS_ACCESS_KEY_ID, AWS_SECRET_ACCESS_KEY, AWS_SESSION_TOKEN]
425427
env:
426428
ARTIFACTORY_USERNAME: ${artifactory_username}
427429
ARTIFACTORY_PASSWORD: ${artifactory_password}
@@ -506,7 +508,7 @@ functions:
506508
publish:
507509
- command: ec2.assume_role
508510
params:
509-
role_arn: "arn:aws:iam::119629040606:role/s3-access.cdn-origin-compass"
511+
role_arn: 'arn:aws:iam::119629040606:role/s3-access.cdn-origin-compass'
510512
- command: shell.exec
511513
params:
512514
working_dir: src
@@ -661,7 +663,7 @@ functions:
661663
- command: github.generate_token
662664
params:
663665
expansion_name: generated_token
664-
permissions: # optional
666+
permissions: # optional
665667
actions: write
666668
- command: shell.exec
667669
# Fail the task if it's idle for 10 mins

.github/dependabot.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ updates:
1515
- dependency-name: "@mongosh/*"
1616
- dependency-name: "@mongodb-js/*"
1717
- dependency-name: os-dns-native
18+
- dependency-name: native-machine-id
1819
- dependency-name: system-ca
1920

2021
# All the electron and its related deps
@@ -36,6 +37,7 @@ updates:
3637
- "mongodb-client-encryption"
3738
- "kerberos"
3839
- "os-dns-native"
40+
- "native-machine-id"
3941
- "system-ca"
4042
- "saslprep"
4143

AUTHORS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,3 +102,4 @@ Will Ratner <[email protected]>
102102
Gagik Amaryan <[email protected]>
103103
Dylan Richardson <[email protected]>
104104
Ruby Dong <[email protected]>
105+
Neal Beeken <[email protected]>

THIRD-PARTY-NOTICES.md

Lines changed: 283 additions & 104 deletions
Large diffs are not rendered by default.

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ export const sharedExternals: string[] = [
1212
'keytar',
1313
'kerberos',
1414
'interruptor',
15+
'native-machine-id',
1516
'os-dns-native',
1617
'system-ca',
1718
'win-export-certificate-and-key',

docs/tracking-plan.md

Lines changed: 15 additions & 2 deletions
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, Apr 20, 2025
9+
Generated on Thu, May 8, 2025
1010

1111
## Table of Contents
1212

@@ -153,6 +153,7 @@ Generated on Sun, Apr 20, 2025
153153
- [Screen](#event--ScreenEvent)
154154
- [Secret Storage Not Available](#event--SecretStorageNotAvailableEvent)
155155
- [Experiment Viewed](#event--ExperimentViewedEvent)
156+
- [Create Index Button Clicked](#event--CreateIndexButtonClickedEvent)
156157

157158
### Performance Tab
158159

@@ -1003,7 +1004,7 @@ This event is fired when a database is created.
10031004

10041005
### Switch View Type
10051006

1006-
This event is fired when the user changes the items view type between list and grid.
1007+
This event is fired when the user changes the items view type in the database and collection list between "list" and "grid".
10071008

10081009
**Properties**:
10091010

@@ -1147,6 +1148,8 @@ This event is fired when user executes a query
11471148
- The type of the collection on which the query was executed.
11481149
- **used_regex** (required): `boolean`
11491150
- Indicates whether the query used a regular expression.
1151+
- **mode** (required): `"list" | "json" | "table"`
1152+
- The view used to run the query.
11501153
- **is_compass_web** (optional): `true | undefined`
11511154
- **connection_id** (optional): `string | undefined`
11521155
- The id of the connection associated to this event.
@@ -1789,6 +1792,16 @@ a system that doesn't offer a suitable secret storage backend.
17891792
- **test_name** (required): `string`
17901793
- **is_compass_web** (optional): `true | undefined`
17911794

1795+
<a name="event--CreateIndexButtonClickedEvent"></a>
1796+
1797+
### Create Index Button Clicked
1798+
1799+
**Properties**:
1800+
1801+
- **flow** (optional): `"Start with Query" | "Start with Index" | undefined`
1802+
- **context** (required): `"Create Index Modal"`
1803+
- **is_compass_web** (optional): `true | undefined`
1804+
17921805
## Performance Tab
17931806

17941807
<a name="event--CurrentOpShowOperationDetailsEvent"></a>

0 commit comments

Comments
 (0)