Skip to content

Commit 4cc1451

Browse files
authored
Merge pull request aws-solutions#589 from aws-solutions/release-candidate/v3.0.7
Release v3.0.7
2 parents 6dae39b + a9ae1dc commit 4cc1451

File tree

16 files changed

+1575
-1698
lines changed

16 files changed

+1575
-1698
lines changed

.gitignore

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

.projenrc.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import {
1616
import { PythonProject } from "projen/lib/python";
1717

1818
function main() {
19-
new InstanceScheduler({ version: "3.0.6", cdkVersion: "2.164.1" }).synth();
19+
new InstanceScheduler({ version: "3.0.7", cdkVersion: "2.164.1" }).synth();
2020
}
2121

2222
interface InstanceSchedulerProps {
@@ -95,6 +95,7 @@ class InstanceScheduler extends AwsCdkTypeScriptApp {
9595
"deployment/global-s3-assets",
9696
"deployment/regional-s3-assets",
9797
"__pycache__/",
98+
"build/",
9899
this.testReportDir,
99100
this.coverageReportDir,
100101
];

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
44

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

7+
## [3.0.7] -- 2024-11-21
8+
9+
### Security
10+
- Upgrade cross-spawn to mitigate CVE-2024-21538
11+
712
## [3.0.6] -- 2024-11-7
813

914
### Changed

ctrf/ctrf-report.json

Lines changed: 0 additions & 30 deletions
This file was deleted.

deployment/build-s3-dist.sh

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
33
# SPDX-License-Identifier: Apache-2.0
44
[[ $DEBUG ]] && set -x
5-
set -eu -o pipefail
5+
set -e -o pipefail
66

77
header() {
88
declare text=$1
@@ -17,12 +17,15 @@ usage() {
1717
}
1818

1919
main() {
20-
declare DIST_OUTPUT_BUCKET=$1 SOLUTION_NAME=$2 VERSION=$3
21-
# Check to see if the required parameters have been provided:
22-
if [ -z "$DIST_OUTPUT_BUCKET" ] || [ -z "$SOLUTION_NAME" ] || [ -z "$VERSION" ]; then
20+
if [ ! "$1" ] || [ ! "$2" ] || [ ! "$3" ]; then
2321
usage
2422
exit 1
2523
fi
24+
set -u
25+
26+
declare DIST_OUTPUT_BUCKET=$1 SOLUTION_NAME=$2 VERSION=$3
27+
# Check to see if the required parameters have been provided:
28+
2629

2730
export DIST_OUTPUT_BUCKET
2831
export SOLUTION_NAME

deployment/cdk-solution-helper/package-lock.json

Lines changed: 15 additions & 15 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)