Skip to content

Commit 1127d8a

Browse files
author
Bob Strahan
committed
Merge branch 'develop' v0.7.16
2 parents 726b1b6 + 8659e52 commit 1127d8a

File tree

6 files changed

+606
-404
lines changed

6 files changed

+606
-404
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.7.16] - 2025-07-07
11+
12+
### Fixed
13+
- Added STACK_NAME environment variable to bulk workflow Lambda functions #322
14+
- misc dependabot PRs
15+
16+
1017
## [0.7.15] - 2025-07-03
1118

1219
### Added
@@ -18,6 +25,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1825
- Update Lambda Runtime to NodeJS 22.x
1926
- #299 - handle comprehend detect_sentiment api has limits of input size of 5kb
2027
- #310 - Change Default Model from Nova-Lite to Nova-Pro for GenAI Queries and Summarization in PCA CFN Templates
28+
- Added missing STACK_NAME environment variable to BulkFilesCount Lambda function to fix ParameterNotFound error
2129
- #305 - Extend query window to 5 years and modify sample file timestamps
2230
- misc dependabot PRs
2331

@@ -316,6 +324,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
316324
- Initial release
317325

318326
[Unreleased]: https://github.com/aws-samples/amazon-transcribe-post-call-analytics/compare/main...develop
327+
[0.7.16]: https://github.com/aws-samples/amazon-transcribe-post-call-analytics/releases/tag/v0.7.16
328+
[0.7.15]: https://github.com/aws-samples/amazon-transcribe-post-call-analytics/releases/tag/v0.7.15
319329
[0.7.14]: https://github.com/aws-samples/amazon-transcribe-post-call-analytics/releases/tag/v0.7.14
320330
[0.7.13]: https://github.com/aws-samples/amazon-transcribe-post-call-analytics/releases/tag/v0.7.13
321331
[0.7.12]: https://github.com/aws-samples/amazon-transcribe-post-call-analytics/releases/tag/v0.7.12

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.7.15
1+
0.7.16

pca-main-nokendra.template

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
AWSTemplateFormatVersion: "2010-09-09"
22

3-
Description: Amazon Transcribe Post Call Analytics - PCA (v0.7.15) (uksb-1sn29lk73, SO9071)
3+
Description: Amazon Transcribe Post Call Analytics - PCA (v0.7.16) (uksb-1sn29lk73, SO9071)
44

55
Parameters:
66

pca-main.template

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
AWSTemplateFormatVersion: "2010-09-09"
22

3-
Description: Amazon Transcribe Post Call Analytics - PCA (v0.7.15) (uksb-1sn29lk73, SO9071)
3+
Description: Amazon Transcribe Post Call Analytics - PCA (v0.7.16) (uksb-1sn29lk73, SO9071)
44

55
Parameters:
66

pca-server/cfn/lib/bulk.template

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ Resources:
2121
Properties:
2222
CodeUri: ../../src/pca
2323
Handler: pca-aws-sf-bulk-files-count.lambda_handler
24+
Environment:
25+
Variables:
26+
STACK_NAME: !Ref ParentStackName
2427
Policies:
2528
- Statement:
2629
- Sid: S3BucketReadPolicy
@@ -51,6 +54,9 @@ Resources:
5154
CodeUri: ../../src/pca
5255
Handler: pca-aws-sf-bulk-move-files.lambda_handler
5356
Timeout: 300
57+
Environment:
58+
Variables:
59+
STACK_NAME: !Ref ParentStackName
5460
Policies:
5561
- Statement:
5662
- Sid: S3BucketReadWritePolicy
@@ -86,6 +92,9 @@ Resources:
8692
CodeUri: ../../src/pca
8793
Handler: pca-aws-sf-bulk-queue-space.lambda_handler
8894
Timeout: 30
95+
Environment:
96+
Variables:
97+
STACK_NAME: !Ref ParentStackName
8998
Policies:
9099
- arn:aws:iam::aws:policy/AmazonTranscribeReadOnlyAccess
91100

@@ -155,4 +164,4 @@ Outputs:
155164
Value: !Join
156165
- ', '
157166
- - !Sub '"${BulkMoveFilesRole.Arn}"'
158-
- !Sub '"${BulkFilesCountRole.Arn}"'
167+
- !Sub '"${BulkFilesCountRole.Arn}"'

0 commit comments

Comments
 (0)