Skip to content

Commit

Permalink
Merge pull request #13 from aws-solutions/release/v3.1.2
Browse files Browse the repository at this point in the history
Publish v3.1.2 Patch Release
  • Loading branch information
amzn-gaod authored Nov 6, 2024
2 parents 5ce1d85 + 40d3691 commit d3bcc03
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 5 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ 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).

## [3.1.2] - 2024-11-06

### Added

- Fixed bug with incompatable awswrangler version in AWS Glue

## [3.1.1] - 2024-09-30

### Added
Expand Down
2 changes: 1 addition & 1 deletion solution-manifest.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
id: SO0193
name: amazon-marketing-cloud-insights-on-aws
version: v3.1.1
version: v3.1.2
cloudformation_templates:
- template: amazon-marketing-cloud-insights.template
main_template: true
Expand Down
2 changes: 1 addition & 1 deletion source/infrastructure/cdk.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"@aws-cdk/aws-s3:serverAccessLogsUseBucketPolicy": true,
"SOLUTION_NAME": "Amazon Marketing Cloud Insights on AWS",
"SOLUTION_ID": "SO0193",
"SOLUTION_VERSION": "v3.1.1",
"SOLUTION_VERSION": "v3.1.2",
"METRICS_NAMESPACE": "amcinsights",
"BUCKET_NAME": "BUCKET_NAME"
}
Expand Down
2 changes: 1 addition & 1 deletion source/infrastructure/data_lake/datasets/sdlf_dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ def _create_sdlf_stage_b_glue_job(self) -> None:
default_arguments={
"--job-bookmark-option": "job-bookmark-enable",
"--enable-metrics": "",
"--additional-python-modules": "awswrangler>=2.4.0,aws-lambda-powertools>=2.15.0",
"--additional-python-modules": "awswrangler==3.9.1,aws-lambda-powertools>=2.15.0",
"--enable-job-insights": "true",
"--extra-py-files": f"s3://{self._solution_buckets.artifacts_bucket.bucket_name}/{self._shared_modules_path}",
"--SOLUTION_ID": self.node.try_get_context("SOLUTION_ID"),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ echo "-----------------------------------------"

cd $deployment_dir

version_code="v3.1.1"
version_code="v3.1.2"

build-s3-cdk-dist deploy \
--source-bucket-name $template_bucket_name \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ echo "TEST STACK SYNTHESIZE & DEPLOY"
echo "-----------------------------------------"

cd $deployment_dir
version_code="v3.1.1"
version_code="v3.1.2"
build-s3-cdk-dist deploy \
--source-bucket-name $template_bucket_name \
--solution-name amcinsights \
Expand Down

0 comments on commit d3bcc03

Please sign in to comment.