From 98092dfb28f455929cf67a375f80911af7a0b714 Mon Sep 17 00:00:00 2001 From: 170210 <85928898+170210@users.noreply.github.com> Date: Mon, 18 Dec 2023 16:46:22 +0900 Subject: [PATCH 1/2] fix: fix auto complete for latest cosmwasm version (#17) * fix: fix auto complete for latest cosmwasm version Signed-off-by: 170210 * fix: support old schema Signed-off-by: 170210 --------- Signed-off-by: 170210 --- src/commands/terminal.ts | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/src/commands/terminal.ts b/src/commands/terminal.ts index ff9d305..626dfb9 100644 --- a/src/commands/terminal.ts +++ b/src/commands/terminal.ts @@ -60,6 +60,26 @@ export class TerminalCmds { "*.json" ], url: "/schema/migrate_msg.json" + }, { + fileMatch: [ + "*.json" + ], + url: "/schema/raw/execute.json" + }, { + fileMatch: [ + "*.json" + ], + url: "/schema/raw/query.json" + }, { + fileMatch: [ + "*.json" + ], + url: "/schema/raw/instantiate.json" + }, { + fileMatch: [ + "*.json" + ], + url: "/schema/raw/migrate.json" }]; Workspace.SetWorkspaceSchemaAutoComplete(schema); }); From 4a0dfa5554d2bdaf706eba9f12fcc0599408a4cf Mon Sep 17 00:00:00 2001 From: Shogo Hyodo Date: Wed, 27 Dec 2023 12:31:38 +0900 Subject: [PATCH 2/2] Update CHANGELOG --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 58c75fb..5d7a6c1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -34,6 +34,8 @@ All notable changes to the Cosmy Wasmy extension will be documented in this file ### Fixed +- Fix auto complete for latest cosmwasm version + ### Security