Skip to content

Commit

Permalink
Merge branch 'develop' v0.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
rstrahan committed Mar 6, 2022
2 parents 144174e + f491f55 commit 2f1fd06
Show file tree
Hide file tree
Showing 7 changed files with 97 additions and 836 deletions.
13 changes: 11 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
- Added call filename regex for CUST metadata, meant to be used as a customer identifier.

## [0.1.3] - 2022-01-14
## [0.1.4] - 2022-03-06
### Fixed
- fix content security policy for S3 bucket url used to access recordings in the UI for non us-east-1 regions
- add new Filename Regex to keep track of calls from a particular Customer, or a caller's name or ID. Similar to AGENT and GUID. This also adds the additional structure to the pca glue catalog, so that a query can be used to group calls by CUST.
- add CloudFormation parameter pattern rules to defend against reported instances of browser autofill populating BulkUploadStepFunctionName and ConversationLocation parameters with user's first & last name, causing subsequent stack failure.
- merge dependabot PRs


## [0.1.3] - 2022-02-19
### Fixed
- Fix deployment failure for regions other than us-east-1
- Fix template validation failures when publishing in regions where Amazon Kendra is not supported
Expand All @@ -26,7 +34,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- Initial release

[Unreleased]: https://github.com/aws-samples/amazon-transcribe-post-call-analytics/compare/v0.1.3...develop
[Unreleased]: https://github.com/aws-samples/amazon-transcribe-post-call-analytics/compare/v0.1.4...develop
[0.1.4]: https://github.com/aws-samples/amazon-transcribe-post-call-analytics/releases/tag/v0.1.4
[0.1.3]: https://github.com/aws-samples/amazon-transcribe-post-call-analytics/releases/tag/v0.1.3
[0.1.2]: https://github.com/aws-samples/amazon-transcribe-post-call-analytics/releases/tag/v0.1.2
[0.1.1]: https://github.com/aws-samples/amazon-transcribe-post-call-analytics/releases/tag/v0.1.1
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1.3
0.1.4
48 changes: 39 additions & 9 deletions aws-kendra-transcribe-media-search/package-lock.json

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

5 changes: 4 additions & 1 deletion pca-main-nokendra.template
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
AWSTemplateFormatVersion: "2010-09-09"

Description: Amazon Transcribe Post Call Analytics - PCA (v0.1.3)
Description: Amazon Transcribe Post Call Analytics - PCA (v0.1.4) (uksb-1sn29lk73)

Parameters:

Expand Down Expand Up @@ -47,6 +47,7 @@ Parameters:

ConversationLocation:
Type: String
AllowedPattern: "[+-_\/a-zA-Z0-9]*"
Default: America/New_York
Description: Name of the timezone location for the call source - this is the TZ database name from https://en.wikipedia.org/wiki/List_of_tz_database_time_zones

Expand Down Expand Up @@ -142,11 +143,13 @@ Parameters:

StepFunctionName:
Type: String
AllowedPattern: "[-_a-zA-Z0-9]*"
Default: PostCallAnalyticsWorkflow
Description: Name of Step Functions workflow that orchestrates this process

BulkUploadStepFunctionName:
Type: String
AllowedPattern: "[-_a-zA-Z0-9]*"
Default: BulkUploadWorkflow
Description: Name of Step Functions workflow that orchestrates the bulk import process

Expand Down
5 changes: 4 additions & 1 deletion pca-main.template
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
AWSTemplateFormatVersion: "2010-09-09"

Description: Amazon Transcribe Post Call Analytics - PCA (v0.1.3)
Description: Amazon Transcribe Post Call Analytics - PCA (v0.1.4) (uksb-1sn29lk73)

Parameters:

Expand Down Expand Up @@ -47,6 +47,7 @@ Parameters:

ConversationLocation:
Type: String
AllowedPattern: "[+-_\/a-zA-Z0-9]*"
Default: America/New_York
Description: Name of the timezone location for the call source - this is the TZ database name from https://en.wikipedia.org/wiki/List_of_tz_database_time_zones

Expand Down Expand Up @@ -142,11 +143,13 @@ Parameters:

StepFunctionName:
Type: String
AllowedPattern: "[-_a-zA-Z0-9]*"
Default: PostCallAnalyticsWorkflow
Description: Name of Step Functions workflow that orchestrates this process

BulkUploadStepFunctionName:
Type: String
AllowedPattern: "[-_a-zA-Z0-9]*"
Default: BulkUploadWorkflow
Description: Name of Step Functions workflow that orchestrates the bulk import process

Expand Down
1 change: 1 addition & 0 deletions pca-ui/src/lambda/package-lock.json

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

Loading

0 comments on commit 2f1fd06

Please sign in to comment.