Skip to content

Commit 750daeb

Browse files
committed
Release 1.14.0+8.1.1
Change-Id: I1b4a2dded8e5642d261de9c5f181674ce1b00584
1 parent 514e25b commit 750daeb

File tree

3 files changed

+14
-6
lines changed

3 files changed

+14
-6
lines changed

gui/extension/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77
- Added support for MRS functions
88
- Added MySQL Router to extension package
99
- Changed the MRS sample code to make use of SDK
10+
- Added a popup menu item to open the DB Connection on a new VS Code tab when the Alt key is held before opening the DB Connection menu
11+
- Added new feature to execute a single statement on all open DB Notebooks
12+
- Added new feature to convert a DB Notebook to a template that can be used to paste code blocks from
1013

1114
### Fixes
1215

gui/extension/src/MRSCommandHandler.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1021,26 +1021,26 @@ export class MRSCommandHandler {
10211021
"Do you want to download and install the MySQL Router now?",
10221022
"Yes", "No");
10231023
if (answer === "Yes") {
1024-
const labsUrl = "https://downloads.mysql.com/snapshots/pb/mysql-%3Cspan%20class="x x-first x-last">router-8.1.0-labs-mrs-preview-6/";
1024+
const labsUrl = "https://downloads.mysql.com/snapshots/pb/mysql-%3Cspan%20class="x x-first x-last">8.2.0-labs-mrs7-preview-release/";
10251025
let fileUrl: string;
10261026

10271027
switch (os.platform()) {
10281028
case "darwin": {
10291029
switch (os.arch()) {
10301030
case "arm":
10311031
case "arm64": {
1032-
fileUrl = `${labsUrl}mysql-router-8.1.0-labs-mrs-6-macos13-arm64.dmg`;
1032+
fileUrl = `${labsUrl}mysql-router-8.2.0-labs-mrs-7-macos13-arm64.dmg`;
10331033
break;
10341034
}
10351035
default: {
1036-
fileUrl = `${labsUrl}mysql-router-8.1.0-labs-mrs-6-macos13-x86_64.dmg`;
1036+
fileUrl = `${labsUrl}mysql-router-8.2.0-labs-mrs-7-macos13-x86_64.dmg`;
10371037
break;
10381038
}
10391039
}
10401040
break;
10411041
}
10421042
case "win32": {
1043-
fileUrl = `${labsUrl}mysql-router-8.1.0-labs-mrs-6-winx64.msi`;
1043+
fileUrl = `${labsUrl}mysql-router-8.2.0-labs-mrs-7-winx64.msi`;
10441044
break;
10451045
}
10461046
default: {

gui/extension/src/extension.ts

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import {
2626
Uri, ExtensionKind, ExtensionMode,
2727
} from "vscode";
2828

29-
import * as child_process from "child_process";
29+
import * as childProcess from "child_process";
3030
import { existsSync, rmSync } from "fs";
3131
import { join } from "path";
3232
import { platform, arch } from "os";
@@ -292,7 +292,12 @@ export const activate = (context: ExtensionContext): void => {
292292
const shellDir = join(context.extensionPath, "shell");
293293
if (existsSync(shellDir)) {
294294
// cSpell:ignore xattr
295-
void child_process.execSync(`xattr -rc ${shellDir}`);
295+
void childProcess.execSync(`xattr -rc ${shellDir}`);
296+
}
297+
const routerDir = join(context.extensionPath, "router");
298+
if (existsSync(routerDir)) {
299+
// cSpell:ignore xattr
300+
void childProcess.execSync(`xattr -rc ${routerDir}`);
296301
}
297302
}
298303
}

0 commit comments

Comments
 (0)