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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 0 deletions
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

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.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

Lines changed: 2 additions & 0 deletions
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

Lines changed: 16 additions & 2 deletions
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"
Lines changed: 6 additions & 0 deletions
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

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

solution-manifest.yaml

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)