diff --git a/CHANGELOG.md b/CHANGELOG.md index b6f2c3b..3d0dc82 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +### v2.9.2 released 05/11/2022: +#### Enhancements +* Upgraded async version to 2.6.4. Note that users upgrading to this version will need to remove the existing node modules from modules/GUI/js/node_modules before the build. + ### v2.9.1 released 04/05/2022: #### Bug fixes * Fixed hold-to-talk event handling logic in the native layer to keep it in sync with GUI diff --git a/CMakeLists.txt b/CMakeLists.txt index cceb9ed..dd728a1 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.1 FATAL_ERROR) -project(AlexaSmartScreenSDK VERSION 2.9.1 LANGUAGES CXX) +project(AlexaSmartScreenSDK VERSION 2.9.2 LANGUAGES CXX) set(PROJECT_BRIEF "A cross-platform, modular SDK for multi modal interaction with the Alexa Voice Service") configure_file ( "${PROJECT_SOURCE_DIR}/modules/Alexa/Utils/include/Utils/SmartScreenSDKVersion.h.in" diff --git a/README.md b/README.md index 42767e0..8537775 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,8 @@ # Alexa Smart Screen SDK
-
-
+
+
diff --git a/modules/GUI/js/package-lock.json b/modules/GUI/js/package-lock.json
index b26b2db..b936f2e 100644
--- a/modules/GUI/js/package-lock.json
+++ b/modules/GUI/js/package-lock.json
@@ -357,9 +357,9 @@
}
},
"async": {
- "version": "2.6.3",
- "resolved": "https://registry.npmjs.org/async/-/async-2.6.3.tgz",
- "integrity": "sha512-zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg==",
+ "version": "2.6.4",
+ "resolved": "https://registry.npmjs.org/async/-/async-2.6.4.tgz",
+ "integrity": "sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==",
"requires": {
"lodash": "^4.17.14"
}
diff --git a/modules/GUI/js/src/app.tsx b/modules/GUI/js/src/app.tsx
index ddddce3..140e711 100644
--- a/modules/GUI/js/src/app.tsx
+++ b/modules/GUI/js/src/app.tsx
@@ -78,7 +78,7 @@ const HOST = 'localhost';
const PORT = 8933;
/// The minimum SmartScreenSDK version required for this runtime.
-const SMART_SCREEN_SDK_MIN_VERSION = '2.9.1';
+const SMART_SCREEN_SDK_MIN_VERSION = '2.9.2';
/// Indicates whether the SDK has built with WebSocket SSL Disabled.
declare const DISABLE_WEBSOCKET_SSL : boolean;
diff --git a/modules/GUI/js/src/components/APLRendererWindow.tsx b/modules/GUI/js/src/components/APLRendererWindow.tsx
index a09271b..f9b9ba8 100644
--- a/modules/GUI/js/src/components/APLRendererWindow.tsx
+++ b/modules/GUI/js/src/components/APLRendererWindow.tsx
@@ -291,7 +291,7 @@ export class APLRendererWindow extends React.Component