Skip to content

Commit 8c5c14d

Browse files
authored
Merge branch 'main' into COMPASS-9448-diagram-json-export
2 parents 7fa0480 + f9f5848 commit 8c5c14d

File tree

14 files changed

+54
-81
lines changed

14 files changed

+54
-81
lines changed

AUTHORS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,3 +105,4 @@ Ruby Dong <[email protected]>
105105
Neal Beeken <[email protected]>
106106
Walter Tan <[email protected]>
107107
Raymond Lo <[email protected]>
108+
Moses Yang <[email protected]>

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 Mon Jun 23 2025.
2+
This document was automatically generated on Tue Jun 24 2025.
33

44
## List of dependencies
55

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 Mon, Jun 23, 2025
9+
Generated on Tue, Jun 24, 2025
1010

1111
## Table of Contents
1212

package-lock.json

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

packages/compass-aggregations/src/components/add-stage/add-stage.spec.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ describe('AddStage', function () {
2323
renderAddStage({ variant: 'icon' });
2424
const button = screen.getByTestId('add-stage-icon-button');
2525
expect(() => {
26-
within(button).getByText('Add Stage');
26+
within(button).getByText('Add stage');
2727
}).to.throw;
2828
});
2929

@@ -41,7 +41,7 @@ describe('AddStage', function () {
4141
it('renders text button', function () {
4242
renderAddStage({ variant: 'button' });
4343
const button = screen.getByTestId('add-stage');
44-
expect(within(button).getByText('Add Stage')).to.exist;
44+
expect(within(button).getByText('Add stage')).to.exist;
4545
});
4646

4747
it('renders help link when stage is not last', function () {

packages/compass-aggregations/src/components/add-stage/add-stage.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ export const AddStage = ({ onAddStage, variant }: AddStageProps) => {
4242
variant="primary"
4343
leftGlyph={<Icon glyph="Plus"></Icon>}
4444
>
45-
Add Stage
45+
Add stage
4646
</Button>
4747

4848
<div className={linkContainerStyles}>

packages/compass-aggregations/src/components/pipeline-builder-workspace/pipeline-builder-ui-workspace/index.spec.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ describe('PipelineBuilderUIWorkspace [Component]', function () {
3636
await renderPipelineBuilderUIWorkspace();
3737
const buttons = screen.getAllByTestId('add-stage');
3838
expect(buttons.length).to.equal(1);
39-
expect(buttons[0]).to.have.text('Add Stage');
39+
expect(buttons[0]).to.have.text('Add stage');
4040
});
4141

4242
it('adds a stage to the start of pipeline when first icon button is clicked', async function () {
@@ -95,7 +95,7 @@ describe('PipelineBuilderUIWorkspace [Component]', function () {
9595
await renderPipelineBuilderUIWorkspace({}, { pipeline: [] });
9696
const button = screen.getByTestId('add-stage');
9797
expect(button).to.exist;
98-
expect(button).to.have.text('Add Stage');
98+
expect(button).to.have.text('Add stage');
9999
});
100100

101101
it('adds a stage when (text) button is clicked', async function () {

packages/compass-crud/src/components/document-list.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -447,7 +447,7 @@ const DocumentList: React.FunctionComponent<DocumentListProps> = (props) => {
447447
variant="primary"
448448
size="small"
449449
>
450-
Import Data
450+
Import data
451451
</Button>
452452
)
453453
}

packages/compass-schema-validation/src/components/validation-states.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ export function ValidationStates({
264264
variant={ButtonVariant.PrimaryOutline}
265265
size="small"
266266
>
267-
Add Rule
267+
Add rule
268268
</Button>
269269
</div>
270270
}

packages/compass-schema/src/components/compass-schema.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ const InitialScreen: React.FunctionComponent<{
269269
variant="primary"
270270
size="small"
271271
>
272-
Analyze Schema
272+
Analyze schema
273273
</Button>
274274
}
275275
callToActionLink={

0 commit comments

Comments
 (0)