Skip to content

Commit 34a5fb5

Browse files
committed
1.4.2+8.1.1 Release
Change-Id: I1feca9f8b2db4350ee3ef12f797aa4fed277a7c5
1 parent 2e6eaaa commit 34a5fb5

File tree

8 files changed

+15
-7
lines changed

8 files changed

+15
-7
lines changed

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
VERSION=1.14.1
1+
VERSION=1.14.2

gui/backend/gui_plugin/general.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
from mysqlsh.plugin_manager import plugin_function
2323

2424
# Define plugin version
25-
VERSION = "1.14.1"
25+
VERSION = "1.14.2"
2626

2727
@plugin_function('gui.info', shell=True, cli=True, web=True)
2828
def info():

gui/extension/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# MySQL Shell for VS Code Change Log
22

3+
## Changes in 1.14.2+8.1.1
4+
5+
### Fixes
6+
7+
- Fixed code completion + semantic highlighting
8+
- Fix SQL code execution to properly wait for the splitter to finish and the execute one statement after another
9+
- Cleanup if websocket request/responds handling
10+
311
## Changes in 1.14.1+8.1.1
412

513
### Fixes

gui/extension/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# MySQL Shell for VS Code 1.14.1+8.1.1 Preview
1+
# MySQL Shell for VS Code 1.14.2+8.1.1 Preview
22

33
This extension enables interactive editing and execution of SQL for MySQL Databases and the MySQL HeatWave Service. It integrates the MySQL Shell directly into VS Code development workflows.
44

gui/extension/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"color": "#2789e1",
88
"theme": "dark"
99
},
10-
"version": "1.14.1",
10+
"version": "1.14.2",
1111
"publisher": "Oracle",
1212
"license": "SEE LICENSE IN LICENSE.txt",
1313
"repository": {

gui/frontend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mysql-shell-gui",
3-
"version": "1.14.1",
3+
"version": "1.14.2",
44
"publisher": "Oracle",
55
"type": "module",
66
"scripts": {

mds_plugin/general.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
from mds_plugin import core, configuration
2626

2727
# Define plugin version
28-
VERSION = "1.14.1"
28+
VERSION = "1.14.2"
2929

3030

3131
@plugin_function('mds.info')

mrs_plugin/lib/general.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
from mrs_plugin import lib
2323

2424
# Define plugin version
25-
VERSION = "1.14.1"
25+
VERSION = "1.14.2"
2626

2727
DB_VERSION = [2, 2, 0]
2828
REQUIRED_ROUTER_VERSION = [8, 1, 0]

0 commit comments

Comments
 (0)