Skip to content

Commit 987b653

Browse files
author
ask-pyth
committed
Release 1.12.0. For changelog, check CHANGELOG.rst
1 parent 905821b commit 987b653

File tree

335 files changed

+1970
-369
lines changed

Some content is hidden

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

335 files changed

+1970
-369
lines changed

ask-sdk-model/CHANGELOG.rst

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -177,3 +177,15 @@ This release contains the following changes :
177177

178178
- APL `SetValue <https://developer.amazon.com/docs/alexa-presentation-language/apl-standard-commands.html#setvalue-command>`__ command support.
179179

180+
181+
182+
1.12.0
183+
~~~~~~~
184+
185+
This release contains the following changes :
186+
187+
- Added APL commands `AnimateItemCommand`, `OpenUrlCommand`, `SetFocusCommand`, `ClearFocusCommand`.
188+
- Added `finally` and `catch` attributes in `SequentialCommand`.
189+
- Provide APL expression language in some APL commands, alongside their primitive types (eg: `delay` in all commands).
190+
- Added `ENDPOINT_TIMEOUT` enumeration in `SessionEndedReason`.
191+

ask-sdk-model/ask_sdk_model/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
__pip_package_name__ = 'ask-sdk-model'
1515
__description__ = 'The ASK SDK Model package provides model definitions, for building Alexa Skills.'
1616
__url__ = 'https://github.com/alexa/alexa-apis-for-python'
17-
__version__ = '1.11.0'
17+
__version__ = '1.12.0'
1818
__author__ = 'Alexa Skills Kit'
1919
__author_email__ = 'ask-sdk-dynamic@amazon.com'
2020
__license__ = 'Apache 2.0'

ask-sdk-model/ask_sdk_model/application.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222

2323
if typing.TYPE_CHECKING:
24-
from typing import Dict, List, Optional
24+
from typing import Dict, List, Optional, Union
2525
from datetime import datetime
2626

2727

ask-sdk-model/ask_sdk_model/canfulfill/can_fulfill_intent.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222

2323
if typing.TYPE_CHECKING:
24-
from typing import Dict, List, Optional
24+
from typing import Dict, List, Optional, Union
2525
from datetime import datetime
2626
from ask_sdk_model.canfulfill.can_fulfill_intent_values import CanFulfillIntentValues
2727
from ask_sdk_model.canfulfill.can_fulfill_slot import CanFulfillSlot

ask-sdk-model/ask_sdk_model/canfulfill/can_fulfill_intent_request.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323

2424
if typing.TYPE_CHECKING:
25-
from typing import Dict, List, Optional
25+
from typing import Dict, List, Optional, Union
2626
from datetime import datetime
2727
from ask_sdk_model.dialog_state import DialogState
2828
from ask_sdk_model.intent import Intent

ask-sdk-model/ask_sdk_model/canfulfill/can_fulfill_intent_values.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222

2323
if typing.TYPE_CHECKING:
24-
from typing import Dict, List, Optional
24+
from typing import Dict, List, Optional, Union
2525
from datetime import datetime
2626

2727

ask-sdk-model/ask_sdk_model/canfulfill/can_fulfill_slot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222

2323
if typing.TYPE_CHECKING:
24-
from typing import Dict, List, Optional
24+
from typing import Dict, List, Optional, Union
2525
from datetime import datetime
2626
from ask_sdk_model.canfulfill.can_fulfill_slot_values import CanFulfillSlotValues
2727
from ask_sdk_model.canfulfill.can_understand_slot_values import CanUnderstandSlotValues

ask-sdk-model/ask_sdk_model/canfulfill/can_fulfill_slot_values.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222

2323
if typing.TYPE_CHECKING:
24-
from typing import Dict, List, Optional
24+
from typing import Dict, List, Optional, Union
2525
from datetime import datetime
2626

2727

ask-sdk-model/ask_sdk_model/canfulfill/can_understand_slot_values.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222

2323
if typing.TYPE_CHECKING:
24-
from typing import Dict, List, Optional
24+
from typing import Dict, List, Optional, Union
2525
from datetime import datetime
2626

2727

ask-sdk-model/ask_sdk_model/context.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222

2323
if typing.TYPE_CHECKING:
24-
from typing import Dict, List, Optional
24+
from typing import Dict, List, Optional, Union
2525
from datetime import datetime
2626
from ask_sdk_model.interfaces.system.system_state import SystemState
2727
from ask_sdk_model.interfaces.automotive.automotive_state import AutomotiveState

0 commit comments

Comments
 (0)