From 6524982177311054b9937959884f680025e90365 Mon Sep 17 00:00:00 2001 From: Mark Wiemer Date: Mon, 16 Dec 2024 19:50:29 -0600 Subject: [PATCH 1/3] Bump to 6.4.2 --- package-lock.json | 4 ++-- package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package-lock.json b/package-lock.json index 03a61fa2..261eb3b6 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "vscode-autohotkey-plus-plus", - "version": "6.4.1", + "version": "6.4.2", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "vscode-autohotkey-plus-plus", - "version": "6.4.1", + "version": "6.4.2", "license": "See license.md", "dependencies": { "@vscode/debugadapter": "^1.57.0", diff --git a/package.json b/package.json index 700ad8e8..e43620e8 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "vscode-autohotkey-plus-plus", "displayName": "AHK++ (AutoHotkey Plus Plus)", - "version": "6.4.1", + "version": "6.4.2", "description": "AutoHotkey v1 and v2 language support for Visual Studio Code: IntelliSense, debugging, formatting, and more!", "categories": [ "Debuggers", From 5c06ba7ae188daf301db1515eb795b94a9508ff2 Mon Sep 17 00:00:00 2001 From: Mark Wiemer Date: Mon, 16 Dec 2024 19:53:07 -0600 Subject: [PATCH 2/3] Update changelog --- changelog.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/changelog.md b/changelog.md index 5389db57..ad399ce5 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,10 @@ # Changelog +## 6.4.2 - 2024-12-16 🎄 + +- Reduce required VS Code version to 1.68 (#574) +- Update internal dependencies for security (#577) + ## 6.4.1 - 2024-11-09 🛠️ ### Known issues From b79400642aafda8cdda786f3bdb19cf6f22a21f1 Mon Sep 17 00:00:00 2001 From: Mark Wiemer Date: Mon, 16 Dec 2024 20:54:41 -0600 Subject: [PATCH 3/3] Cleanup some manual tests --- demos/manualTests/commands.ahk2 | 6 +++--- demos/manualTests/config.ahk2 | 16 ++++------------ 2 files changed, 7 insertions(+), 15 deletions(-) diff --git a/demos/manualTests/commands.ahk2 b/demos/manualTests/commands.ahk2 index c9178546..e8f0b869 100644 --- a/demos/manualTests/commands.ahk2 +++ b/demos/manualTests/commands.ahk2 @@ -8,14 +8,14 @@ ;* Export AHK Symbols should give ~45 lines for this ; And open in an unsaved new editor group -MyMsgBox(text) { +MyCommandMsgBox(text) { MsgBox(text) } ;* Stop AHK Script should work after starting via Run AHK Script ; Auto-closes MsgBox windows as well :) -MyMsgBox("Hello world!") -MyMsgBox("Hello again!") +MyCommandMsgBox("Hello world!") +MyCommandMsgBox("Hello again!") ;* Add Doc Comment should add and then go to doc comment ; todo Known issue with two args will be reported later diff --git a/demos/manualTests/config.ahk2 b/demos/manualTests/config.ahk2 index b72aa852..d14e6669 100644 --- a/demos/manualTests/config.ahk2 +++ b/demos/manualTests/config.ahk2 @@ -4,24 +4,16 @@ ;** AHK++.exclude tested via automated tests :) ; set AHK++.v2.general > librarySuggestions to All -; set exclude to "excluded.ahk" +; set AHK++.exclude to "excluded.ahk" ; see whether MyExcludedFunc is suggested (Ctrl+Space) MyExclu ;** AHK++.general -;* showOutput -; always: shows on start -; never: never shows -; works only for running scripts -; running: output is in the Output view - -; always -; never -y := 1 +;* showOutput (tested via e2e tests) ; todo Completion Commit Characters (AHK++.v2.completionCommitCharacters) is untested for now -;** V2: Diagnostics (AHK++.v2.diagnostics) +; todo ** V2: Diagnostics (AHK++.v2.diagnostics) ; todo Class Non Dynamic Member Check is untested for now ; todo Params Check is untested for now @@ -69,4 +61,4 @@ MyFunc() { ;* varUnset ; x := 1 -MsgBox(x) \ No newline at end of file +MsgBox(x)