Skip to content

Commit b51ae1a

Browse files
authored
Merge pull request #10 from aws-solutions/release/v1.1.2
Changes for v1.1.2
1 parent 71c3228 commit b51ae1a

File tree

20 files changed

+135
-87
lines changed

20 files changed

+135
-87
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.1"
28+
"SOLUTION_VERSION": "v1.1.2"
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.1",
37+
"SOLUTION_VERSION": "v1.1.2",
3838
```
3939

4040

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ 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.2] - 2025-05-22
9+
10+
- Upgrade Prebid Server Java to v3.25.0
11+
- Upgrade Python dependencies
12+
- Fix anonymized metrics reporting Lambda
13+
814
## [1.1.1] - 2025-03-07
915

1016
- Upgrade to Prebid Server v3.22 and underlying Docker base image

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,4 +59,4 @@ If you discover a potential security issue in this project we ask that you notif
5959

6060
See the [LICENSE](https://github.com/aws-solutions/prebid-server-deployment-on-aws/blob/main/LICENSE.txt) file for our project's licensing. We will ask you to confirm the licensing of your contribution.
6161

62-
We may ask you to sign a [Contributor License Agreement (CLA)](http://en.wikipedia.org/wiki/Contributor_License_Agreement) for larger changes.
62+
We may ask you to sign a [Contributor License Agreement (CLA)](https://en.wikipedia.org/wiki/Contributor_License_Agreement) for larger changes.

NOTICE.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ This software includes third party software subject to the following copyrights:
1515

1616
alpinelinux/docker-alpine under the MIT license.
1717
github.com/prebid/prebid-server-java under the Apache-2.0 license.
18+
attrs under the MIT license.
1819
aws-cdk-asset-awscli-v1 under the Apache-2.0 license.
1920
aws-cdk-asset-kubectl-v20 under the Apache-2.0 license.
2021
aws-cdk-asset-node-proxy-agent-v6 under the Apache-2.0 license.

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.1",`
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",`
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.1
12+
# For example: ./build-s3-dist.sh solutions v1.1.2
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.1"
24+
echo "For example: ./build-s3-dist.sh solutions trademarked-solution-name v1.1.2"
2525
exit 1
2626
fi
2727

deployment/ecr/prebid-server/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@ bootstrap.log
44
sample/configs/prebid-config.yaml
55
.env
66
nw-current-config/
7+
amt-bidder/
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"GIT_TAG_VERSION": "3.22.0",
2+
"GIT_TAG_VERSION": "3.25.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.1
3+
version: v1.1.2
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.1"
190+
"please specifiy major, minor and patch versions, e.g. v1.1.2"
191191
)
192192

193193

0 commit comments

Comments
 (0)