Skip to content

Commit 54f596a

Browse files
committed
Merge branch 'chat-playground' of https://github.com/mongodb-js/compass into chat-playground
2 parents c176e60 + e174595 commit 54f596a

File tree

65 files changed

+1227
-565
lines changed

Some content is hidden

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

65 files changed

+1227
-565
lines changed

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,8 @@ contact_links:
44
url: https://jira.mongodb.org/
55
about: Report a bug to the COMPASS project in Jira.
66
- name: Feature Request
7-
url: https://feedback.mongodb.com/forums/924283-compass
7+
url: https://feedback.mongodb.com/
88
about: Request a new feature or enhancement via the MongoDB Feedback Engine.
99
- name: General Questions and Inquiries
1010
url: https://www.mongodb.com/community/forums/tags/c/data/developer-tools/49/compass
1111
about: Visit our forums for public community discussion and collaboration.
12-

AUTHORS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,3 +110,4 @@ Moses Yang <[email protected]>
110110
Jimmy Choi <[email protected]>
111111
112112
Nataly Carbonell <[email protected]>
113+
DarshanaVenkatesh <[email protected]>

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ For contributing, please refer to [CONTRIBUTING.md](CONTRIBUTING.md)
1010

1111
For issues, please create a ticket in our [JIRA Project](https://jira.mongodb.org/browse/COMPASS).
1212

13-
Is there anything else you’d like to see in Compass? Let us know by submitting suggestions in out [feedback forum](https://feedback.mongodb.com/forums/924283-compass).
13+
Is there anything else you’d like to see in Compass? Let us know by submitting suggestions in out [feedback forum](https://feedback.mongodb.com/).
1414

1515
## Packages Overview
1616

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 Aug 18 2025.
2+
This document was automatically generated on Wed Aug 20 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, Aug 18, 2025
9+
Generated on Wed, Aug 20, 2025
1010

1111
## Table of Contents
1212

package-lock.json

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

packages/compass-aggregations/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,6 @@
8888
"mongodb-ns": "^2.4.2",
8989
"mongodb-query-parser": "^4.3.0",
9090
"mongodb-schema": "^12.6.2",
91-
"prop-types": "^15.7.2",
9291
"re-resizable": "^6.9.0",
9392
"react": "^17.0.2",
9493
"react-redux": "^8.1.3",

packages/compass-aggregations/src/components/aggregation-side-panel/feedback-link.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import React from 'react';
22
import { css, Icon, Link, spacing } from '@mongodb-js/compass-components';
33

4-
const FEEDBACK_URL = 'https://feedback.mongodb.com/forums/924283-compass';
4+
const FEEDBACK_URL = 'https://feedback.mongodb.com/';
55

66
const linkContainerStyles = css({
77
paddingTop: spacing[1600],

packages/compass-aggregations/src/components/modify-source-banner/modify-source-banner.tsx

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import React from 'react';
2-
import PropTypes from 'prop-types';
32
import { Badge, BadgeVariant, css } from '@mongodb-js/compass-components';
43

54
const modifySourceBannerStyles = css({
@@ -26,8 +25,4 @@ const ModifySourceBanner = (props: { editViewName: string }) => {
2625
);
2726
};
2827

29-
ModifySourceBanner.propTypes = {
30-
editViewName: PropTypes.string.isRequired,
31-
};
32-
3328
export default ModifySourceBanner;

packages/compass-aggregations/src/components/pipeline/pipeline.tsx

Lines changed: 0 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import React, { PureComponent } from 'react';
2-
import PropTypes from 'prop-types';
32
import {
43
Banner,
54
WorkspaceContainer,
@@ -83,33 +82,6 @@ class Pipeline extends PureComponent<
8382
> {
8483
static displayName = 'PipelineComponent';
8584

86-
static propTypes = {
87-
saveCurrentPipeline: PropTypes.func.isRequired,
88-
clonePipeline: PropTypes.func.isRequired,
89-
isCommenting: PropTypes.bool.isRequired,
90-
name: PropTypes.string,
91-
dismissViewError: PropTypes.func.isRequired,
92-
updateViewError: PropTypes.string,
93-
settings: PropTypes.object.isRequired,
94-
toggleSettingsIsExpanded: PropTypes.func.isRequired,
95-
toggleSettingsIsCommentMode: PropTypes.func.isRequired,
96-
setSettingsSampleSize: PropTypes.func.isRequired,
97-
setSettingsLimit: PropTypes.func.isRequired,
98-
limit: PropTypes.number.isRequired,
99-
largeLimit: PropTypes.number.isRequired,
100-
maxTimeMS: PropTypes.number,
101-
applySettings: PropTypes.func.isRequired,
102-
savingPipelineNameChanged: PropTypes.func.isRequired,
103-
savingPipelineApply: PropTypes.func.isRequired,
104-
savingPipelineCancel: PropTypes.func.isRequired,
105-
savingPipeline: PropTypes.object.isRequired,
106-
workspace: PropTypes.string.isRequired,
107-
showExportButton: PropTypes.bool.isRequired,
108-
showRunButton: PropTypes.bool.isRequired,
109-
showExplainButton: PropTypes.bool.isRequired,
110-
enableSearchActivationProgramP1: PropTypes.bool.isRequired,
111-
};
112-
11385
static defaultProps = {
11486
maxTimeMS: DEFAULT_MAX_TIME_MS,
11587
limit: DEFAULT_SAMPLE_SIZE,

0 commit comments

Comments
 (0)