Skip to content

Commit ffd37e7

Browse files
tydonelsondependabot[bot]doirontonyhallettrahulbanerjee26
authored
Release ASK Toolkit 2.13.0 (#239)
* chore: bump qs from 6.5.2 to 6.5.3 Bumps [qs](https://github.com/ljharb/qs) from 6.5.2 to 6.5.3. - [Release notes](https://github.com/ljharb/qs/releases) - [Changelog](https://github.com/ljharb/qs/blob/main/CHANGELOG.md) - [Commits](ljharb/qs@v6.5.2...v6.5.3) --- updated-dependencies: - dependency-name: qs dependency-type: indirect ... Signed-off-by: dependabot[bot] <[email protected]> * chore: bump decode-uri-component from 0.2.0 to 0.2.2 Bumps [decode-uri-component](https://github.com/SamVerschueren/decode-uri-component) from 0.2.0 to 0.2.2. - [Release notes](https://github.com/SamVerschueren/decode-uri-component/releases) - [Commits](SamVerschueren/decode-uri-component@v0.2.0...v0.2.2) --- updated-dependencies: - dependency-name: decode-uri-component dependency-type: indirect ... Signed-off-by: dependabot[bot] <[email protected]> * chore: bump json5 from 2.2.1 to 2.2.3 Bumps [json5](https://github.com/json5/json5) from 2.2.1 to 2.2.3. - [Release notes](https://github.com/json5/json5/releases) - [Changelog](https://github.com/json5/json5/blob/main/CHANGELOG.md) - [Commits](json5/json5@v2.2.1...v2.2.3) --- updated-dependencies: - dependency-name: json5 dependency-type: indirect ... Signed-off-by: dependabot[bot] <[email protected]> * fix: correct AbstractCommand for context menus (#231) * fix: correct AbstractCommand for context menus * chore: condense to optional chaining operator * feat: upgrade apl-suggester and apl-viewhost-web to version 2023.1 (#235) Co-authored-by: Rahul <[email protected]> * feat: adding ACDL language server to ASK Toolkit for VS Code (#237) * feat: adding ACDL language support to the extension * fix: definition test correction, README typo corrections, temporarily disabling some tests related to VSCode 1.73 upgrade * Release ASK Toolkit 2.13.0 (#238) * feat: updating what's new page for 2.13 release * chore: release 2.13.0 --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Mario <[email protected]> Co-authored-by: Tony Hallett <[email protected]> Co-authored-by: Rahul Banerjee <[email protected]> Co-authored-by: Rahul <[email protected]>
1 parent 6f5f1df commit ffd37e7

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+10169
-1876
lines changed

.eslintignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
node_modules/**
2+
third-party
3+
**/*.json
4+
dist
5+
out

.eslintrc.js

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
module.exports = {
2+
root: true,
3+
parser: "@typescript-eslint/parser",
4+
parserOptions: {
5+
project: ["./tsconfig.json", "./tsconfig.eslint.json"],
6+
tsconfigRootDir: __dirname,
7+
},
8+
plugins: ["@typescript-eslint"],
9+
extends: ["airbnb-base", "airbnb-typescript/base", "prettier"],
10+
rules: {
11+
"import/prefer-default-export": "off",
12+
"no-restricted-syntax": "off",
13+
"class-methods-use-this": "off", // https://github.com/airbnb/javascript#classes--methods-use-this
14+
"no-underscore-dangle": "off", // we allow use `_`: this._privateMethod = ...;
15+
},
16+
};

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,19 @@
22

33
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
44

5+
## [2.13.0](https://github.com/alexa/ask-toolkit-for-vscode/compare/v2.12.1...v2.13.0) (2023-03-20)
6+
7+
8+
### Features
9+
10+
* adding ACDL language support to the extension ([fb00bd8](https://github.com/alexa/ask-toolkit-for-vscode/commits/fb00bd848a84bace7173b6c092ed067436f58a03))
11+
* upgrade apl-suggester and apl-viewhost-web to version 2023.1 ([#235](https://github.com/alexa/ask-toolkit-for-vscode/issues/235)) ([b4de59b](https://github.com/alexa/ask-toolkit-for-vscode/commits/b4de59b5304be65d2811901021fd56cfb09170f5))
12+
13+
14+
### Bug Fixes
15+
16+
* correct AbstractCommand for context menus ([#231](https://github.com/alexa/ask-toolkit-for-vscode/issues/231)) ([e40f0ac](https://github.com/alexa/ask-toolkit-for-vscode/commits/e40f0acf6bb5df30993b15075d0c32538d389318))
17+
518
### [2.12.1](https://github.com/alexa/ask-toolkit-for-vscode/compare/v2.12.0...v2.12.1) (2022-11-22)
619

720

media/previewApl/previewApl.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
content="default-src https: data:; img-src https: data:; script-src vscode-resource: https: data: 'unsafe-inline' 'unsafe-eval'; style-src vscode-resource: 'unsafe-inline';" />
1111

1212
<title>APL Preview</title>
13-
<script src="https://d2o906d8ln7ui1.cloudfront.net/apl-wasm-2022.2.js"></script>
13+
<script src="https://d2o906d8ln7ui1.cloudfront.net/apl-wasm-2023.1.js"></script>
1414
<script>window.AplRenderer || document.write('<script src="${customJavascript}"><\\/script>')</script>
1515
<script src="${aplRenderUtils}"></script>
1616
<script src="${javascript}"></script>

media/toolkitUpdate/toolkitUpdate.html

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,20 +16,24 @@
1616
<body>
1717
<div class="header">
1818
<img src="https://d34a6e1u0y0eo2.cloudfront.net/media/images/alexa.png"/>
19-
<h1>November 2021 update</h1>
19+
<h1>March 2023 update</h1>
2020
</div>
2121

2222
<div class="body">
2323
<p>
24-
Welcome to the updated Alexa Skills Toolkit for November 2021 (version 2.10). This update introduces a number of
24+
Welcome to the updated Alexa Skills Toolkit for March 2023 (version 2.13). This update introduces a number of
2525
new features and enhancements.
2626
</p>
2727
<h2>What's new?</h2>
2828
<div class="container">
2929
<div class="flex-item">
30-
<h2>Support APL 1.8</h2>
30+
<h2>Language Support for Alexa Conversation Descriptive Language</h2>
3131
<p>
32-
Upgrade APL Suggester and Web Viewhost to support APL 1.8
32+
You can use the Alexa Skills Kit (ASK) Toolkit for Visual Studio Code (VS Code) to edit dialogs written in Alexa Conversation Descriptive Language (ACDL). For more information, see the <a href="https://developer.amazon.com/en-US/docs/alexa/ask-toolkit/vs-code-acdl.html">official technical documentation</a>.
33+
</p>
34+
<h2>Support APL 2023.1</h2>
35+
<p>
36+
Upgrade APL Suggester and Web Viewhost to support APL 2023.1
3337
</p>
3438
</div>
3539
</div>

0 commit comments

Comments
 (0)