Skip to content

Release v3.0.9 #603

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

Closed
wants to merge 1 commit into from
Closed
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
2 changes: 1 addition & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ module.exports = {
es2021: true,
},
extends: ["eslint:recommended", "plugin:@typescript-eslint/recommended", "plugin:prettier/recommended"],
ignorePatterns: [".eslintrc.js", "coverage/", "deployment/coverage-reports/", "build/"],
ignorePatterns: [".eslintrc.js", "coverage/", "deployment/coverage-reports/", "build/", "internal/"],
overrides: [],
parserOptions: {
ecmaVersion: "latest",
Expand Down
8 changes: 4 additions & 4 deletions .projen/deps.json

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

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

interface InstanceSchedulerProps {
Expand Down Expand Up @@ -413,7 +413,7 @@ class InstanceSchedulerLambdaFunction extends PythonProject {
"pytest-runner@^6.0.1",
"pytest-xdist@^3.5.0",
`python-dateutil@${pythonDateutilVersion}`,
`moto@{version = "^5.0.2", extras = ${JSON.stringify(motoExtras)}}`,
`moto@{version = "5.0.27", extras = ${JSON.stringify(motoExtras)}}`, //locked to 5.0.27 until 5.1.4 releases
"types-freezegun@^1.1.10",
`types-jmespath@${jmespathVersion}`,
`types-python-dateutil@${pythonDateutilVersion}`,
Expand Down
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,18 @@ 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.9] -- 2025-4-10

### Security
- Upgrade Jinja2 to mitigate CVE-2025-27516
- Upgrade aws-cdk to mitigate CVE-2025-2598
- Upgrade esbuild to mitigate GHSA-67mh-4wv8-2f99
- Upgrade OpenSSL to mitigate CVE-2024-12797

### Changed
- Reintroduced --use-maintenance-window flag for schedules. The flag will be enabled by default but can be set to false
to disable RDS preferred maintenance windows and EC2 maintenance windows

## [3.0.8] -- 2025-1-31

### Updated
Expand Down
Loading