Skip to content

Commit f2b7787

Browse files
authored
Merge pull request #13 from aws-solutions/release/v1.1.4
apply updates for v1.1.4
2 parents 5e94f1a + 15c523b commit f2b7787

File tree

12 files changed

+37
-19
lines changed

12 files changed

+37
-19
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.3"
28+
"SOLUTION_VERSION": "v1.1.4"
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.3",
37+
"SOLUTION_VERSION": "v1.1.4",
3838
```
3939

4040

.gitignore

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,7 @@ __pycache__/
1818
*.egg
1919

2020
# Python Virtual Environments
21-
**/venv*
2221
**/.venv*
23-
!deployment/venv_check.py
2422
.python-version
2523

2624
## Python Testing
@@ -48,6 +46,9 @@ source/.coverage.*
4846
# Glue
4947
.glue/*
5048

49+
# Builder tools
50+
build/*
51+
5152
# Generated test assets
5253
source/infrastructure/tests/assets/*
5354
!source/infrastructure/tests/assets/.keep
@@ -75,5 +76,9 @@ source/aws_lambda/shared/util/build/*
7576
*.dtmp
7677

7778
# generated files
78-
source/infrastructure/custom_resources/docker_configs_bucket_lambda/current-config/
79-
source/infrastructure/custom_resources/docker_configs_bucket_lambda/default-config/
79+
source/infrastructure/custom_resources/prebid_configs_lambda/current-config
80+
source/infrastructure/custom_resources/prebid_configs_lambda/default-config
81+
source/infrastructure/custom_resources/prebid_configs_lambda/stored_accounts
82+
source/infrastructure/custom_resources/prebid_configs_lambda/stored_requests
83+
source/infrastructure/custom_resources/prebid_configs_lambda/stored_responses
84+
source/infrastructure/custom_resources/prebid_configs_lambda/stored_impressions

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,11 @@ 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
8+
## [1.1.4] - 2025-07-30
9+
10+
- Upgrade Prebid Server Java to v3.28.0
11+
12+
## [1.1.3] - 2025-06-23
913

1014
- Upgrade Prebid Server Java to v3.27.0
1115

NOTICE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ THIRD PARTY COMPONENTS
1313

1414
This software includes third party software subject to the following copyrights:
1515

16-
alpinelinux/docker-alpine under the MIT license.
16+
docker/library/alpine under the MIT license.
1717
github.com/prebid/prebid-server-java under the Apache-2.0 license.
1818
attrs under the MIT license.
1919
aws-cdk-asset-awscli-v1 under the Apache-2.0 license.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
# Prebid Server Deployment on AWS
33

4-
This solution deploys v3.27.0 of [Prebid Server Java](https://github.com/prebid/prebid-server-java.git) with infrastructure in a single region of the AWS Cloud to handle a wide range of request traffic, and recording of auction and bid transaction data.
4+
This solution deploys v3.13.0 of [Prebid Server Java](https://github.com/prebid/prebid-server-java.git) with infrastructure in a single region of the AWS Cloud to handle a wide range of request traffic, and recording of auction and bid transaction data.
55

66
## Architecture
77

@@ -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.3",`
176+
* Find the line in the template under the Task Definition resource that is `"Image": "public.ecr.aws/aws-solutions/prebid-server:v1.1.4",`
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

SECURITY.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
## Reporting Security Issues
2+
3+
We take all security reports seriously. When we receive such reports,
4+
we will investigate and subsequently address any potential vulnerabilities as
5+
quickly as possible. If you discover a potential security issue in this project,
6+
please notify AWS/Amazon Security via our [vulnerability reporting page]
7+
(http://aws.amazon.com/security/vulnerability-reporting/) or directly via email
8+
to [AWS Security](mailto:[email protected]).
9+
Please do *not* create a public GitHub issue in this project.

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

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

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.3
3+
version: v1.1.4
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: 2 additions & 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.3"
190+
"please specifiy major, minor and patch versions, e.g. v1.1.4"
191191
)
192192

193193

@@ -247,6 +247,7 @@ def source_code_package(ctx, ignore, solution_name):
247247
"CODE_OF_CONDUCT.md",
248248
"CONTRIBUTING.md",
249249
"CHANGELOG.md",
250+
"SECURITY.md",
250251
".gitignore",
251252
"solution-manifest.yaml",
252253
]

0 commit comments

Comments
 (0)