Skip to content

Commit

Permalink
release v3.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
CrypticCabub committed Nov 21, 2024
1 parent 6dae39b commit a9ae1dc
Show file tree
Hide file tree
Showing 16 changed files with 1,575 additions and 1,698 deletions.
1 change: 1 addition & 0 deletions .gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion .projenrc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import {
import { PythonProject } from "projen/lib/python";

function main() {
new InstanceScheduler({ version: "3.0.6", cdkVersion: "2.164.1" }).synth();
new InstanceScheduler({ version: "3.0.7", cdkVersion: "2.164.1" }).synth();
}

interface InstanceSchedulerProps {
Expand Down Expand Up @@ -95,6 +95,7 @@ class InstanceScheduler extends AwsCdkTypeScriptApp {
"deployment/global-s3-assets",
"deployment/regional-s3-assets",
"__pycache__/",
"build/",
this.testReportDir,
this.coverageReportDir,
];
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## [3.0.7] -- 2024-11-21

### Security
- Upgrade cross-spawn to mitigate CVE-2024-21538

## [3.0.6] -- 2024-11-7

### Changed
Expand Down
30 changes: 0 additions & 30 deletions ctrf/ctrf-report.json

This file was deleted.

11 changes: 7 additions & 4 deletions deployment/build-s3-dist.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
# SPDX-License-Identifier: Apache-2.0
[[ $DEBUG ]] && set -x
set -eu -o pipefail
set -e -o pipefail

header() {
declare text=$1
Expand All @@ -17,12 +17,15 @@ usage() {
}

main() {
declare DIST_OUTPUT_BUCKET=$1 SOLUTION_NAME=$2 VERSION=$3
# Check to see if the required parameters have been provided:
if [ -z "$DIST_OUTPUT_BUCKET" ] || [ -z "$SOLUTION_NAME" ] || [ -z "$VERSION" ]; then
if [ ! "$1" ] || [ ! "$2" ] || [ ! "$3" ]; then
usage
exit 1
fi
set -u

declare DIST_OUTPUT_BUCKET=$1 SOLUTION_NAME=$2 VERSION=$3
# Check to see if the required parameters have been provided:


export DIST_OUTPUT_BUCKET
export SOLUTION_NAME
Expand Down
30 changes: 15 additions & 15 deletions deployment/cdk-solution-helper/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit a9ae1dc

Please sign in to comment.