Skip to content

Commit

Permalink
Include package name in package-lock.json files
Browse files Browse the repository at this point in the history
  • Loading branch information
aassadza committed Mar 8, 2022
1 parent fdc60e2 commit 5c35d6e
Show file tree
Hide file tree
Showing 13 changed files with 50 additions and 3 deletions.
14 changes: 13 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,18 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [5.1.2] - 2022-03-14

### Added

- Logic to support Amazon Connect Interactive Messages
- New set of example questions to be imported for Genesys Cloud CX.

### Changed
- Genesys Cloud CX Call Flow export wizard to use new session attributes referenced in example questions
- Policies in nested templates by further scoping down policies and adding cfn_nag suppressions as appropriate
- Node module dependencies for html-webpack-plugin(4.5.2), and chalk(3.2.0). Removed unused dependencies
for js-xlsx and read-excel-file.

## [5.1.1] - 2022-02-04

Expand All @@ -17,7 +29,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Fixed
- Fixed Kendra Webcrawler data source sync issue by adding support to check for Kendra webcrawler data source {status} before initiating sync
- Fixed issue where the Kendra Webcrawler data source {settings} page in Kendra console was resulting in a blank page - by updating configuraton parameters for data source create and update steps
- Fixed issue where the Kendra Webcrawler data source {settings} page in Kendra console was resulting in a blank page - by updating configuration parameters for data source create and update steps


## [5.1.0] - 2021-12-09
Expand Down
12 changes: 12 additions & 0 deletions deployment/build-s3-dist.sh
Original file line number Diff line number Diff line change
Expand Up @@ -93,10 +93,22 @@ echo "--------------------------------------------------------------------------
echo "[Init] Copying templates to global-s3-assets/"
echo "------------------------------------------------------------------------------"

# Copying main templates to global assets directory
cp build/templates/public.json $template_dist_dir/aws-qnabot-main.template
cp build/templates/public-vpc-support.json $template_dist_dir/aws-qnabot-vpc.template
cp build/templates/master.json $template_dist_dir/aws-qnabot-extended.template

# Copying nested templates to global assets directory for the benefit of cfn_nag finding the
# nested templates
# TODO: cfn_nag does not understand customer resources with properties with `.` (dot) which is valid. Example, "CR.botLocales". Plan to convert lex cutom resource
# to cloudformation lex resource. Due to cfn_nag limitation, we skip the `cp build/templates/examples.json $template_dist_dir/examples.template` which is just placed
# global-s3-assets folder for cfn_nag to find nested templates. Instead we run cfn_nag on examples.template manually locally after replace CR. with CR_ in
# next CloudFormation template.
cp build/templates/export.json $template_dist_dir/export.template
cp build/templates/import.json $template_dist_dir/import.template
cp build/templates/testall.json $template_dist_dir/testall.template
# 5th nested stack (LexV2CfnCr) is import from public SAR

echo "------------------------------------------------------------------------------"
echo "[Init] Copying lambda assets to regional-s3-assets/"
echo "------------------------------------------------------------------------------"
Expand Down
1 change: 1 addition & 0 deletions lambda/cfn-lambda-layer/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions lambda/common-modules-layer/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions lambda/fulfillment/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions lambda/import/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions lambda/js_lambda_hook_sdk/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions lambda/lex-build/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions lambda/proxy-es/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 16 additions & 1 deletion lambda/qnabot-common-layer/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions lambda/schema/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions lambda/testall/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion templates/examples/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ var outputs=Object.assign(outputs1,outputs2,outputSNSTopic);

module.exports={
"Resources":resources,
"Conditions": {},
"AWSTemplateFormatVersion": "2010-09-09",
"Transform": "AWS::Serverless-2016-10-31",
"Description": "(SO0189n-example) QnABot nested example resources",
Expand Down

0 comments on commit 5c35d6e

Please sign in to comment.