File tree Expand file tree Collapse file tree 3 files changed +14
-6
lines changed Expand file tree Collapse file tree 3 files changed +14
-6
lines changed Original file line number Diff line number Diff line change 7
7
- Added support for MRS functions
8
8
- Added MySQL Router to extension package
9
9
- 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
10
13
11
14
### Fixes
12
15
Original file line number Diff line number Diff line change @@ -1021,26 +1021,26 @@ export class MRSCommandHandler {
1021
1021
"Do you want to download and install the MySQL Router now?" ,
1022
1022
"Yes" , "No" ) ;
1023
1023
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 /";
1025
1025
let fileUrl : string ;
1026
1026
1027
1027
switch ( os . platform ( ) ) {
1028
1028
case "darwin" : {
1029
1029
switch ( os . arch ( ) ) {
1030
1030
case "arm" :
1031
1031
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` ;
1033
1033
break ;
1034
1034
}
1035
1035
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` ;
1037
1037
break ;
1038
1038
}
1039
1039
}
1040
1040
break ;
1041
1041
}
1042
1042
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` ;
1044
1044
break ;
1045
1045
}
1046
1046
default : {
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ import {
26
26
Uri , ExtensionKind , ExtensionMode ,
27
27
} from "vscode" ;
28
28
29
- import * as child_process from "child_process" ;
29
+ import * as childProcess from "child_process" ;
30
30
import { existsSync , rmSync } from "fs" ;
31
31
import { join } from "path" ;
32
32
import { platform , arch } from "os" ;
@@ -292,7 +292,12 @@ export const activate = (context: ExtensionContext): void => {
292
292
const shellDir = join ( context . extensionPath , "shell" ) ;
293
293
if ( existsSync ( shellDir ) ) {
294
294
// 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 } ` ) ;
296
301
}
297
302
}
298
303
}
You can’t perform that action at this time.
0 commit comments