Skip to content

release v3.0.8 #597

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
Jan 31, 2025
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
4 changes: 4 additions & 0 deletions .gitignore

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

10 changes: 5 additions & 5 deletions .projen/deps.json

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

15 changes: 8 additions & 7 deletions .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.7", cdkVersion: "2.164.1" }).synth();
new InstanceScheduler({ version: "3.0.8", cdkVersion: "2.177.0" }).synth();
}

interface InstanceSchedulerProps {
Expand Down Expand Up @@ -96,6 +96,10 @@ class InstanceScheduler extends AwsCdkTypeScriptApp {
"deployment/regional-s3-assets",
"__pycache__/",
"build/",
"internal/scripts/redpencil",
".temp_redpencil",
"bom.json",
"internal/scripts/cfn-guard",
this.testReportDir,
this.coverageReportDir,
];
Expand Down Expand Up @@ -167,8 +171,8 @@ class InstanceScheduler extends AwsCdkTypeScriptApp {
this.removeCustomSnapshotResolver();

this.addScripts({
"update-deps": "chmod +x ./update-all-dependencies.sh && exec ./update-all-dependencies.sh"
})
"update-deps": "chmod +x ./update-all-dependencies.sh && exec ./update-all-dependencies.sh",
});

new YamlFile(this, "solution-manifest.yaml", {
obj: {
Expand Down Expand Up @@ -419,10 +423,7 @@ class InstanceSchedulerLambdaFunction extends PythonProject {
`urllib3@^${urllib3Version}`,
].forEach((spec: string) => this.addDevDependency(spec));

[
"aws-lambda-powertools@^2.26.0",
"packaging@^24.0",
].forEach((spec: string) => this.addDependency(spec));
["aws-lambda-powertools@^3.4.1", "packaging@^24.0"].forEach((spec: string) => this.addDependency(spec));

const pyproject = this.tryFindObjectFile("pyproject.toml");
if (!pyproject) {
Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,14 @@ 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.8] -- 2025-1-31

### Updated
- Upgrade AWS Powertools from V2 to V3

### Security
- Upgrade jinja to mitigate CVE-2024-56201 and CVE-2024-56326

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

### Security
Expand Down
Loading