Skip to content

Commit 914b0e6

Browse files
committed
COMPASS-2711: Bump deps for SRV record fix
1 parent 564a60c commit 914b0e6

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@
174174
"@mongodb-js/compass-auth-ldap": "0.0.2",
175175
"@mongodb-js/compass-auth-x509": "0.0.3",
176176
"@mongodb-js/compass-collection-stats": "1.0.2",
177-
"@mongodb-js/compass-connect": "2.0.3",
177+
"@mongodb-js/compass-connect": "2.3.0",
178178
"@mongodb-js/compass-crud": "1.2.4",
179179
"@mongodb-js/compass-deployment-awareness": "5.0.0",
180180
"@mongodb-js/compass-document-validation": "7.1.0",
@@ -212,7 +212,7 @@
212212
"hadron-app-registry": "^7.1.0",
213213
"hadron-auto-update-manager": "^2.0.0",
214214
"hadron-compile-cache": "^1.0.1",
215-
"hadron-ipc": "^0.0.7",
215+
"hadron-ipc": "^1.0.0",
216216
"hadron-module-cache": "^0.0.3",
217217
"hadron-plugin-manager": "^5.3.0",
218218
"hadron-react-bson": "^1.4.0",
@@ -232,8 +232,8 @@
232232
"marky": "^1.2.0",
233233
"moment": "^2.10.6",
234234
"mongodb-collection-model": "^0.4.0",
235-
"mongodb-connection-model": "^12.0.3",
236-
"mongodb-data-service": "^11.1.1",
235+
"mongodb-connection-model": "^12.2.0",
236+
"mongodb-data-service": "^11.3.0",
237237
"mongodb-database-model": "^0.1.2",
238238
"mongodb-explain-plan-model": "^0.2.2",
239239
"mongodb-extended-json": "^1.10.0",

src/main/menu.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ function compassOverviewItem() {
3434
return {
3535
label: `${app.getName()} &Overview`,
3636
click: function() {
37-
BrowserWindow.getFocusedWindow().webContents.send('window:show-compass-tour');
37+
ipc.broadcastFocused('window:show-compass-tour');
3838
}
3939
};
4040
}
@@ -43,7 +43,7 @@ function networkOptInDialogItem() {
4343
return {
4444
label: '&Privacy Settings',
4545
click: function() {
46-
BrowserWindow.getFocusedWindow().webContents.send('window:show-network-optin');
46+
ipc.broadcastFocused('window:show-network-optin');
4747
}
4848
};
4949
}
@@ -91,7 +91,7 @@ function disconnectItem() {
9191
return {
9292
label: '&Disconnect',
9393
click: function() {
94-
app.emit('app:disconnect');
94+
ipc.broadcastFocused('app:disconnect');
9595
}
9696
};
9797
}
@@ -175,7 +175,7 @@ function securityItem() {
175175
return {
176176
label: '&Plugins',
177177
click: function() {
178-
BrowserWindow.getFocusedWindow().webContents.send('window:show-security-panel');
178+
ipc.broadcastFocused('window:show-security-panel');
179179
}
180180
};
181181
}
@@ -207,7 +207,7 @@ function collectionSubMenu() {
207207
label: '&Share Schema as JSON',
208208
accelerator: 'Alt+CmdOrCtrl+S',
209209
click: function() {
210-
ipc.broadcast('window:menu-share-schema-json');
210+
ipc.broadcastFocused('window:menu-share-schema-json');
211211
}
212212
}
213213
]

0 commit comments

Comments
 (0)