Skip to content

Commit b197afa

Browse files
author
Austin Johnson
committed
release & distribution build for v0.21.7
1 parent 0d39c05 commit b197afa

14 files changed

+92
-55
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,10 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/)
55
and this project adheres to [Semantic Versioning](http://semver.org/).
66

7-
## [0.21.6] - 2024-09-20
7+
## [0.21.6] - 2025-01-23
8+
- Add heartbeat for streaming responses to prevent idle timeout of 10 mins
9+
10+
## [0.21.6] - 2024-12-18
811
- Updatae the Web UI to allow VPC integration with all Lambda functions. This requires your VPC to at a minimum be able to access S3, and additional optional functionality will require additional VPC endpoints to services.
912
- Package updates to address vulnerabilities.
1013

dist/lex-web-ui-loader.min.css

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

dist/lex-web-ui-loader.min.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* lex-web-ui v0.21.6
2+
* lex-web-ui v0.21.7
33
* (c) 2017-2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
44
* Released under the Amazon Software License.
55
*/

dist/lex-web-ui.js

Lines changed: 65 additions & 31 deletions
Large diffs are not rendered by default.

dist/lex-web-ui.js.map

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

dist/lex-web-ui.min.css

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

dist/lex-web-ui.min.js

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/wav-worker.js

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

dist/wav-worker.min.js

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

lex-web-ui/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lex-web-ui/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "lex-web-ui",
3-
"version": "0.21.6",
3+
"version": "0.21.7",
44
"description": "Amazon Lex Web Interface",
55
"author": "AWS",
66
"license": "Amazon Software License",

package-lock.json

Lines changed: 2 additions & 2 deletions
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": "aws-lex-web-ui",
3-
"version": "0.21.6",
3+
"version": "0.21.7",
44
"description": "Sample Amazon Lex Web Interface",
55
"main": "dist/lex-web-ui.min.js",
66
"repository": {

templates/master.yaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
AWSTemplateFormatVersion: 2010-09-09
22
Description: |
3-
Master Lex Web UI CloudFormation template (v0.21.6)
3+
Master Lex Web UI CloudFormation template (v0.21.7)
44
The Lex Web Ui can be deployed to operate against either a Lex V2 Bot OR a Lex V1 Bot BUT NOT BOTH.
55
Please configure either the Lex V2 bot information OR the Lex V1 bot information and leave the other
66
version input parameters as defaulted.
@@ -760,7 +760,7 @@ Resources:
760760
ShouldDeleteBot: !Ref ShouldDeleteBot
761761
ParentStackName: !Ref "AWS::StackName"
762762
SourceBucket: !Ref BootstrapBucket
763-
QBusinessLambdaCodeObject: !Sub "${BootstrapPrefix}/qbusiness-lambda-v0.21.6.zip"
763+
QBusinessLambdaCodeObject: !Sub "${BootstrapPrefix}/qbusiness-lambda-v0.21.7.zip"
764764
AmazonQAppId: !Ref AmazonQAppId
765765
IDCApplicationARN: !Ref IDCApplicationARN
766766
VpcSubnetId: !Ref VpcSubnetId
@@ -804,10 +804,10 @@ Resources:
804804
SourceBucket: !Ref BootstrapBucket
805805
SourcePrefix: !Ref BootstrapPrefix
806806
StreamingWebSocketEndpoint: !Ref StreamingWebSocketEndpoint
807-
SourceObject: !Sub "${BootstrapPrefix}/src-v0.21.6.zip"
808-
CustomResourceCodeObject: !Sub "${BootstrapPrefix}/custom-resources-v0.21.6.zip"
809-
InitiateChatLambdaCodeObject: !Sub "${BootstrapPrefix}/initiate-chat-lambda-v0.21.6.zip"
810-
StreamingLambdaCodeObject: !Sub "${BootstrapPrefix}/streaming-lambda-v0.21.6.zip"
807+
SourceObject: !Sub "${BootstrapPrefix}/src-v0.21.7.zip"
808+
CustomResourceCodeObject: !Sub "${BootstrapPrefix}/custom-resources-v0.21.7.zip"
809+
InitiateChatLambdaCodeObject: !Sub "${BootstrapPrefix}/initiate-chat-lambda-v0.21.7.zip"
810+
StreamingLambdaCodeObject: !Sub "${BootstrapPrefix}/streaming-lambda-v0.21.7.zip"
811811
CleanupBuckets: !Ref CleanupBuckets
812812
BotName:
813813
!If
@@ -904,7 +904,7 @@ Resources:
904904
UploadBucket: !Ref UploadBucket
905905
VpcSubnetId: !Ref VpcSubnetId
906906
VpcSecurityGroupId: !Ref VpcSecurityGroupId
907-
Timestamp: 1734531050
907+
Timestamp: 1737634514
908908

909909
CognitoIdentityPoolConfig:
910910
Type: AWS::CloudFormation::Stack
@@ -920,7 +920,7 @@ Resources:
920920
CognitoUserPoolClient: !GetAtt CognitoIdentityPool.Outputs.CognitoUserPoolClientId
921921
VpcSubnetId: !Ref VpcSubnetId
922922
VpcSecurityGroupId: !Ref VpcSecurityGroupId
923-
Timestamp: 1734531050
923+
Timestamp: 1737634514
924924

925925
##########################################################################
926926
# Lambda that will validate if user has put in an invalid CSS color/Hex string and fail deployment

0 commit comments

Comments
 (0)