Skip to content

Commit 1bd3eba

Browse files
Merge remote-tracking branch 'origin/main' into beta-releases
2 parents 7b83894 + fe5652d commit 1bd3eba

File tree

3 files changed

+12
-6
lines changed

3 files changed

+12
-6
lines changed

THIRD-PARTY-NOTICES.md

Lines changed: 4 additions & 4 deletions
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 Thu Sep 21 2023.
2+
This document was automatically generated on Sun Sep 24 2023.
33

44
## List of dependencies
55

@@ -251,7 +251,7 @@ This document was automatically generated on Thu Sep 21 2023.
251251
| **[ejson-shell-parser](#1631f0de6379453a982f36795884ff37a225e331bbd8a7d141fbce378c691810)** | 1.2.4 | MIT |
252252
| **[electron-dl](#e97e034c7b93c63e7a433d75f6f1de3e0668764225ebbd61dbde8d1b55d6f3b7)** | 3.5.0 | MIT |
253253
| **[electron-squirrel-startup](#dcda22e402581a033ec2a017d6d05c094bf3173c1b03ae0471b2ce9078d3f601)** | 1.0.0 | Apache-2.0 |
254-
| **[electron](#55a16b0bdaa891a12fd7570586972f8a1934df3ad10bde7a8fe9dcbafa357fb4)** | 26.2.1 | MIT |
254+
| **[electron](#eaf8c3e7da0edb172137824deaf1a96c6a768962579d540881dca578fe1ddd82)** | 26.2.2 | MIT |
255255
| **[encodeurl](#b89152db475e86531e570f87b45d8a51aa5e5d87d4cc3b960cee7b8febf1d26a)** | 1.0.2 | MIT |
256256
| **[end-of-stream](#fadc10994f5fa767d06fb25cfff35fb17a895daf3bc3477c782907668ed16563)** | 1.4.4 | MIT |
257257
| **[ensure-error](#3b1eba5276d89414cef21a1007e85c4f1d6749bf57b300e082ab23975a41dbc9)** | 3.0.1 | MIT |
@@ -20795,9 +20795,9 @@ License files:
2079520795
See the License for the specific language governing permissions and
2079620796
limitations under the License.
2079720797

20798-
<a id="55a16b0bdaa891a12fd7570586972f8a1934df3ad10bde7a8fe9dcbafa357fb4"></a>
20798+
<a id="eaf8c3e7da0edb172137824deaf1a96c6a768962579d540881dca578fe1ddd82"></a>
2079920799

20800-
### [electron](https://www.npmjs.com/package/electron) (version 26.2.1)
20800+
### [electron](https://www.npmjs.com/package/electron) (version 26.2.2)
2080120801

2080220802
License tags: MIT
2080320803

packages/compass-indexes/src/modules/search-indexes.ts

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -544,6 +544,12 @@ const fetchIndexes = (
544544
// previous list of indexes is shown to the user.
545545
if (newStatus === 'FETCHING') {
546546
dispatch(setError((err as Error).message));
547+
} else {
548+
// If fetch fails for refresh or polling, set the status to READY again.
549+
dispatch({
550+
type: ActionTypes.SetStatus,
551+
status: SearchIndexesStatuses.READY,
552+
});
547553
}
548554
}
549555
};
@@ -607,7 +613,7 @@ export const dropSearchIndex = (
607613
variant: 'danger',
608614
requiredInputText: name,
609615
description:
610-
'If you drop default, all queries using it will no longer function',
616+
'If you drop this index, all queries using it will no longer function.',
611617
});
612618
if (!isConfirmed) {
613619
return;

packages/compass-preferences-model/src/feature-flags.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ export const featureFlags: Required<{
108108
* Epic: COMPASS-6599
109109
*/
110110
enableAtlasSearchIndexManagement: {
111-
stage: 'development',
111+
stage: 'released',
112112
description: {
113113
short: 'Enable Atlas Search Index management.',
114114
long: 'Allows listing, creating, updating and deleting Atlas Search indexes.',

0 commit comments

Comments
 (0)