Skip to content

Commit 80574d4

Browse files
authored
Merge pull request #605 from aws-solutions/release-candidate/v3.0.9
Release v3.0.9
2 parents cffec23 + 22b2efc commit 80574d4

File tree

29 files changed

+5733
-3255
lines changed

29 files changed

+5733
-3255
lines changed

.eslintrc.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ module.exports = {
77
es2021: true,
88
},
99
extends: ["eslint:recommended", "plugin:@typescript-eslint/recommended", "plugin:prettier/recommended"],
10-
ignorePatterns: [".eslintrc.js", "coverage/", "deployment/coverage-reports/", "build/"],
10+
ignorePatterns: [".eslintrc.js", "coverage/", "deployment/coverage-reports/", "build/", "internal/"],
1111
overrides: [],
1212
parserOptions: {
1313
ecmaVersion: "latest",

.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: 2 additions & 2 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.8", cdkVersion: "2.177.0" }).synth();
19+
new InstanceScheduler({ version: "3.0.9", cdkVersion: "2.188.0" }).synth();
2020
}
2121

2222
interface InstanceSchedulerProps {
@@ -413,7 +413,7 @@ class InstanceSchedulerLambdaFunction extends PythonProject {
413413
"pytest-runner@^6.0.1",
414414
"pytest-xdist@^3.5.0",
415415
`python-dateutil@${pythonDateutilVersion}`,
416-
`moto@{version = "^5.0.2", extras = ${JSON.stringify(motoExtras)}}`,
416+
`moto@{version = "5.0.27", extras = ${JSON.stringify(motoExtras)}}`, //locked to 5.0.27 until 5.1.4 releases
417417
"types-freezegun@^1.1.10",
418418
`types-jmespath@${jmespathVersion}`,
419419
`types-python-dateutil@${pythonDateutilVersion}`,

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,18 @@ 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.9] -- 2025-4-10
8+
9+
### Security
10+
- Upgrade Jinja2 to mitigate CVE-2025-27516
11+
- Upgrade aws-cdk to mitigate CVE-2025-2598
12+
- Upgrade esbuild to mitigate GHSA-67mh-4wv8-2f99
13+
- Upgrade OpenSSL to mitigate CVE-2024-12797
14+
15+
### Changed
16+
- Reintroduced --use-maintenance-window flag for schedules. The flag will be enabled by default but can be set to false
17+
to disable RDS preferred maintenance windows and EC2 maintenance windows
18+
719
## [3.0.8] -- 2025-1-31
820

921
### Updated

0 commit comments

Comments
 (0)