Skip to content

Release v3.0.7 #589

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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