Skip to content

Commit 98b0c15

Browse files
committed
release v3.0.11
1 parent 9451a82 commit 98b0c15

25 files changed

+5135
-10408
lines changed

.gitignore

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

.projen/deps.json

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

.projenrc.ts

Lines changed: 5 additions & 3 deletions
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.10", cdkVersion: "2.196.1" }).synth();
19+
new InstanceScheduler({ version: "3.0.11", cdkVersion: "2.206.0" }).synth();
2020
}
2121

2222
interface InstanceSchedulerProps {
@@ -100,6 +100,8 @@ class InstanceScheduler extends AwsCdkTypeScriptApp {
100100
".temp_redpencil",
101101
"bom.json",
102102
"internal/scripts/cfn-guard",
103+
"build",
104+
"git-info",
103105
this.testReportDir,
104106
this.coverageReportDir,
105107
];
@@ -178,7 +180,7 @@ class InstanceScheduler extends AwsCdkTypeScriptApp {
178180
obj: {
179181
id: InstanceScheduler.solutionId,
180182
name: InstanceScheduler.solutionName,
181-
version: props.version,
183+
version: `v${props.version}`,
182184
cloudformation_templates: [
183185
{ template: "instance-scheduler-on-aws.template", main_template: true },
184186
{ template: "instance-scheduler-on-aws-remote.template" },
@@ -451,7 +453,7 @@ class InstanceSchedulerCli extends PythonProject {
451453
outdir: "./source/cli",
452454
poetry: true,
453455
description: "Instance Scheduler on AWS CLI",
454-
deps: ["python@^3.9.0", `boto3@${boto3Version}`, `jmespath@^${jmespathVersion}`],
456+
deps: ["python@^3.11.0", `boto3@${boto3Version}`, `jmespath@^${jmespathVersion}`],
455457
pytest: false,
456458
...options,
457459
});

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,19 @@ 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.11] -- 2025-7-29
8+
### Security
9+
- Updated urllib3 to mitigate CVE-2025-50182
10+
- Updated requests to mitigate CVE-2024-47081
11+
- Updated brace-expansion to mitigate CVE-2025-5889
12+
- Updated OpenSSL to mitigate CVE-2024-12797
13+
14+
### Changed
15+
- Minimum supported version of scheduler CLI raised from Python 3.9 to Python 3.11
16+
17+
### Removed
18+
- Removed AppRegistry integration
19+
720
## [3.0.10] -- 2025-5-22
821

922
### Security

0 commit comments

Comments
 (0)