Skip to content

Commit d668796

Browse files
committed
chore(release): 0.6.1
1 parent 430623b commit d668796

File tree

3 files changed

+32
-2
lines changed

3 files changed

+32
-2
lines changed

CHANGELOG.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,36 @@
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+
### [0.6.1](https://github.com/alexa/ask-sdk-controls/compare/v0.6.0...v0.6.1) (2021-06-24)
6+
7+
8+
### ⚠ BREAKING CHANGES
9+
10+
* Whenever a request is processed by a Control and evaluated with its defined handlers, if more than one handler matches are found, control throws an error with matching handlers.
11+
* **NumberControl:** Renamed NumberControlProp `ambiguousPairs` to `mostLikelyMisunderstanding`.
12+
Changed default prompts on NumberControl actions such as valueChanged, valueCleared.
13+
* converted `Control.renderAct()` function to async type and its
14+
return type to Promise<void> and `renderAPLComponent` function to async
15+
and its return type to Promise<{[key:string]: any}> to support asynchronous functionalities
16+
17+
### Features
18+
19+
* builtin APL support for both blocking and non-blocking UI ([0c42a6d](https://github.com/alexa/ask-sdk-controls/commit/0c42a6d92068442f06f71ab15fc91b01f4f1332d))
20+
* Introduced restrictive logging of sensitive data and configuration of logging output ([56f78cf](https://github.com/alexa/ask-sdk-controls/commit/56f78cf5dedae9ac08b6c5485ef421732ebec917))
21+
* refactored NumberControl and its APL Components ([46f2e7d](https://github.com/alexa/ask-sdk-controls/commit/46f2e7d683b6e83c57c2de1902606116d53e8623))
22+
23+
24+
### Bug Fixes
25+
26+
* adding optional chaining when evaluating custom handler funcs ([9e77eff](https://github.com/alexa/ask-sdk-controls/commit/9e77eff9fdf018639f88be0c8697f8a71bfca366))
27+
* Changed the evaluateInputHandlers function on Control to throw an error if more than one matching handlers are found ([430623b](https://github.com/alexa/ask-sdk-controls/commit/430623bf5216fb4a1a612ca3821c628eb98ac6d4))
28+
* Fixed MultiValueListControl StateDiagram to log state ojects as strings ([a61d4b9](https://github.com/alexa/ask-sdk-controls/commit/a61d4b9ba3c03917ff874b5ae0850252d1213993))
29+
* Moved global initialization of logger into functions/classes scope ([9d6944a](https://github.com/alexa/ask-sdk-controls/commit/9d6944a2da1e8d5c691223eae0e07ce8a692b167))
30+
* NumberControl slot elicitation ([d8de5ff](https://github.com/alexa/ask-sdk-controls/commit/d8de5ffaedbb6278afcdd617b30d1cd6b4d9303f))
31+
* **NumberControl:** typedoc fixes, changed logic to use map instead of switch statements ([97c934b](https://github.com/alexa/ask-sdk-controls/commit/97c934b3c295db62e677cfef7f131975950e6a93))
32+
* remove dead code in QuestionnaireControlBuiltins ([f74b50b](https://github.com/alexa/ask-sdk-controls/commit/f74b50b6bd74c767d5d4ab780fea65c6017fecca))
33+
* resolve dropped inputs in questionnaire (UserEvent race-condition) ([6a0567a](https://github.com/alexa/ask-sdk-controls/commit/6a0567a8651570efc7f85a1180d0ebf68ecf3d1c))
34+
535
## [0.6.0](https://github.com/alexa/ask-sdk-controls/compare/v0.5.1...v0.6.0) (2021-03-29)
636

737

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ask-sdk-controls",
3-
"version": "0.6.0",
3+
"version": "0.6.1",
44
"description": "Skill-building framework & library for Alexa SDK",
55
"main": "dist/src/index.js",
66
"types": "dist/src/index.d.ts",

0 commit comments

Comments
 (0)