Skip to content

Commit 6935023

Browse files
Changes for release/v1.1.9 (#1591)
1 parent c07288e commit 6935023

File tree

16 files changed

+42
-13
lines changed

16 files changed

+42
-13
lines changed

.projenrc.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
const { awscdk, gitlab, javascript, typescript, JsonPatch } = require('projen');
1515
const Nx = require('./projenrc/nx');
1616
const PnpmWorkspace = require('./projenrc/pnpm');
17-
const version = '1.2.0';
17+
const version = '1.1.9';
1818
const cdkVersion = '2.81.0';
1919
const minNodeVersion = '20.12.0';
2020
const pnpmVersion = '8.15.3';

.viperlightignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Use of opensource-codeofconduct email for amazon is expected
22
CONTRIBUTING.md
33
CODE_OF_CONDUCT.md
4+
SECURITY.md
45

56
.github/
67
cdk.out/*

CHANGELOG.md

+6
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.9] - 2025-01-24
9+
10+
### Security
11+
12+
* Updated ingestion container base images for vector and nginx
13+
814
## [1.1.8] - 2024-11-20
915

1016
### Added

buildspec.yml

+2
Original file line numberDiff line numberDiff line change
@@ -83,5 +83,7 @@ phases:
8383
function join_by { local IFS="$1"; shift; echo "$*"; }
8484
export ECR_REPOS=$(join_by , `cat "${__dir}/ecr-repos"`)
8585
artifacts:
86+
exclude-paths:
87+
- .nightswatch/**/*
8688
files:
8789
- '**/*'

deployment/build-open-source-dist.sh

+16-2
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,14 @@ if [ -z "$1" ]; then
2929
exit 1
3030
fi
3131

32+
# Check to see if the required tools have been installed
33+
for cmd in rsync zip; do
34+
if ! command -v $cmd &> /dev/null; then
35+
echo "Error: $cmd is not installed"
36+
exit 1
37+
fi
38+
done
39+
3240
# Get reference for all important folders
3341
source_template_dir="$PWD"
3442
dist_dir="$source_template_dir/open-source"
@@ -48,8 +56,14 @@ echo "--------------------------------------------------------------------------
4856
echo "[Packing] all source files"
4957
echo "------------------------------------------------------------------------------"
5058

51-
echo "rsync -av --exclude-from='../.gitignore' $source_dir $dist_dir"
52-
rsync -av --exclude-from='../.gitignore' $source_dir $dist_dir
59+
echo "
60+
Config
61+
.nightswatch
62+
.crux_template.md
63+
test/functional_tests
64+
" > exclude-open-source-list.txt
65+
echo "rsync -av --exclude-from='exclude-open-source-list.txt' --exclude-from='../.gitignore' $source_dir $dist_dir"
66+
rsync -av --exclude-from='exclude-open-source-list.txt' --exclude-from='../.gitignore' $source_dir $dist_dir
5367

5468
echo "------------------------------------------------------------------------------"
5569
echo "[Packing] Create GitHub (open-source) zip file"
+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
2+
Config
3+
.nightswatch
4+
.crux_template.md
5+
test/functional_tests
6+

frontend/package.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

solution-manifest.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
id: SO0219
33
name: clickstream-analytics-on-aws
4-
version: v1.1.8
4+
version: v1.1.9
55
cloudformation_templates:
66
- template: cloudfront-s3-control-plane-stack-global.template.json
77
main_template: true

src/base-lib/package.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/control-plane/backend/lambda/api/config/dictionary.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"dist_output_bucket": "solutions-reference",
77
"target": "latest",
88
"prefix": "",
9-
"version": "v1.1.8"
9+
"version": "v1.1.9"
1010
}
1111
},
1212
{

src/control-plane/backend/lambda/api/package.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/data-pipeline/etl-common/gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Project
22
group=software.aws.solution.clickstream.common
3-
projectVersion=1.2.0
3+
projectVersion=1.1.9
44

55
# Dependencies
66
lombokVersion=1.18.30

src/data-pipeline/spark-etl/gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Project
22
group=software.aws.solution
3-
projectVersion=1.2.0
3+
projectVersion=1.1.9
44

55
# Dependencies
66
lombokVersion=1.18.30

src/ingestion-server/server/images/nginx/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
ARG PLATFORM_ARG
2-
FROM --platform=$PLATFORM_ARG public.ecr.aws/docker/library/nginx:1.24
2+
FROM --platform=$PLATFORM_ARG public.ecr.aws/docker/library/nginx:1.27
33

44
# default nginx path
55
ENV SERVER_ENDPOINT_PATH='/collect'

src/ingestion-server/server/images/vector/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
ARG PLATFORM_ARG
2-
FROM --platform=$PLATFORM_ARG timberio/vector:0.34.1-debian
2+
FROM --platform=$PLATFORM_ARG timberio/vector:0.43.0-debian
33

44
ENV AWS_REGION='__NOT_SET__'
55
ENV AWS_MSK_BROKERS='__NOT_SET__'

0 commit comments

Comments
 (0)