Skip to content

Commit 04ec2d7

Browse files
Merge pull request #11 from aws-solutions/release/v1.1.3
Changes for v1.1.3
2 parents b51ae1a + deec0ff commit 04ec2d7

File tree

9 files changed

+15
-11
lines changed

9 files changed

+15
-11
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ To get the version of the solution, you can look at the description of the creat
2525
"Environment": {
2626
"Variables": {
2727
"SOLUTION_ID": "SO0248",
28-
"SOLUTION_VERSION": "v1.1.2"
28+
"SOLUTION_VERSION": "v1.1.3"
2929
}
3030
},
3131
```
@@ -34,7 +34,7 @@ This information is also provided in `source/infrastructure/cdk.json`:
3434

3535
```json
3636
"SOLUTION_ID": "SO0248",
37-
"SOLUTION_VERSION": "v1.1.2",
37+
"SOLUTION_VERSION": "v1.1.3",
3838
```
3939

4040

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [1.1.3] - 2025-6-23
9+
10+
- Upgrade Prebid Server Java to v3.27.0
11+
812
## [1.1.2] - 2025-05-22
913

1014
- Upgrade Prebid Server Java to v3.25.0

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ If you'd like to use a different container:
173173
* Build and host the solution assets for installation in your account using the process described above
174174
* Change to the `deployment/global-s3-assets` folder on the build workstation
175175
* Open the file `prebid-server-deployment-on-aws.template` in an editor
176-
* Find the line in the template under the Task Definition resource that is `"Image": "public.ecr.aws/aws-solutions/prebid-server:v1.1.2",`
176+
* Find the line in the template under the Task Definition resource that is `"Image": "public.ecr.aws/aws-solutions/prebid-server:v1.1.3",`
177177
* Update the Image property value with your container image URI
178178
* Create the stack by uploading the changed template to the CloudFormation console
179179

deployment/build-s3-dist.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
# Paramenters:
1010
# - source-bucket-base-name: Name for the S3 bucket location where the template will source the Lambda
1111
# code from. The template will append '-[region_name]' to this bucket name.
12-
# For example: ./build-s3-dist.sh solutions v1.1.2
12+
# For example: ./build-s3-dist.sh solutions v1.1.3
1313
# The template will then expect the source code to be located in the solutions-[region_name] bucket
1414
#
1515
# - solution-name: name of the solution for consistency
@@ -21,7 +21,7 @@
2121
# Check to see if input has been provided:
2222
if [ -z "$1" ] || [ -z "$2" ] || [ -z "$3" ]; then
2323
echo "Please provide the base source bucket name, trademark approved solution name and version where the lambda code will eventually reside."
24-
echo "For example: ./build-s3-dist.sh solutions trademarked-solution-name v1.1.2"
24+
echo "For example: ./build-s3-dist.sh solutions trademarked-solution-name v1.1.3"
2525
exit 1
2626
fi
2727

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"GIT_TAG_VERSION": "3.25.0",
2+
"GIT_TAG_VERSION": "3.27.0",
33
"MVN_CLI_OPTIONS": "-Dmaven.test.skip"
44
}
55

solution-manifest.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
id: SO0248
22
name: prebid-server-deployment-on-aws
3-
version: v1.1.2
3+
version: v1.1.3
44
cloudformation_templates:
55
- template: prebid-server-deployment-on-aws.template
66
main_template: true

source/cdk_solution_helper_py/helpers_cdk/aws_solutions/cdk/scripts/build_s3_cdk_dist.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ def validate_version_code(ctx, param, value):
187187
return value
188188
else:
189189
raise click.BadParameter(
190-
"please specifiy major, minor and patch versions, e.g. v1.1.2"
190+
"please specifiy major, minor and patch versions, e.g. v1.1.3"
191191
)
192192

193193

source/infrastructure/cdk.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
"@aws-cdk/aws-s3:serverAccessLogsUseBucketPolicy": true,
3131
"SOLUTION_NAME": "Prebid Server Deployment on AWS",
3232
"SOLUTION_ID": "SO0248",
33-
"SOLUTION_VERSION": "v1.1.2",
33+
"SOLUTION_VERSION": "v1.1.3",
3434
"METRICS_NAMESPACE": "prebid-server-deployment-on-aws-metrics",
3535
"BUCKET_NAME": "BUCKET_NAME"
3636
}

source/tests/unit_tests/test_prebid_server_template.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ def mapping_solution(template):
7979
{
8080
'Data': {
8181
'ID': "SO0248",
82-
'Version': "v1.1.2",
82+
'Version': "v1.1.3",
8383
'SendAnonymizedData': 'Yes'
8484
}
8585
}
@@ -92,7 +92,7 @@ def mapping_source_code(template):
9292
{
9393
'General': {
9494
'S3Bucket': "BUCKET_NAME",
95-
'KeyPrefix': 'Prebid Server Deployment on AWS/v1.1.2'
95+
'KeyPrefix': 'Prebid Server Deployment on AWS/v1.1.3'
9696
}
9797
}
9898
)

0 commit comments

Comments
 (0)