Skip to content

Release v3.0.10 #609

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
May 22, 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
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.

8 changes: 4 additions & 4 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.9", cdkVersion: "2.188.0" }).synth();
new InstanceScheduler({ version: "3.0.10", cdkVersion: "2.196.1" }).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.27", extras = ${JSON.stringify(motoExtras)}}`, //locked to 5.0.27 until 5.1.4 releases
`moto@{version = "^5.1.4", 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 Expand Up @@ -451,7 +451,7 @@ class InstanceSchedulerCli extends PythonProject {
outdir: "./source/cli",
poetry: true,
description: "Instance Scheduler on AWS CLI",
deps: ["python@^3.8.1", `boto3@${boto3Version}`, `jmespath@^${jmespathVersion}`],
deps: ["python@^3.9.0", `boto3@${boto3Version}`, `jmespath@^${jmespathVersion}`],
pytest: false,
...options,
});
Expand All @@ -463,7 +463,7 @@ class InstanceSchedulerCli extends PythonProject {
[
`boto3-stubs-lite@{version = "${boto3Version}", extras = ${JSON.stringify(boto3StubsExtras)}}`,
"jsonschema@~4.17.3", // held back, 4.18.0 is a breaking change
`moto@{version = "^5.0.2", extras = ${JSON.stringify(motoExtras)}}`,
`moto@{version = "^5.1.4", extras = ${JSON.stringify(motoExtras)}}`,
`types-jmespath@^${jmespathVersion}`,
"types-PyYAML@^6.0.12.12",
"types-requests@2.31.0.6", // held back, need to support urllib3@^1
Expand Down
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,15 @@ 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.10] -- 2025-5-22

### Security
- Upgrade setuptools to mitigate CVE-2025-47273
- Upgrade aws-cdk to mitigate GHSA-5pq3-h73f-66hr and GHSA-qc59-cxj2-c2w4

### Changed
- Updated Lambda default memory size to 512MB

## [3.0.9] -- 2025-4-10

### Security
Expand Down
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,10 @@ landing page](https://aws.amazon.com/solutions/implementations/instance-schedule

### One-Click Deploy From Amazon Web Services

Refer to the [solution landing page](https://aws.amazon.com/solutions/implementations/instance-scheduler-on-aws/) to
deploy Instance Scheduler on AWS using our pre-packaged deployment assets.
**[Launch in AWS Console](https://console.aws.amazon.com/cloudformation/home#/stacks/new?&templateURL=https://s3.amazonaws.com/solutions-reference/instance-scheduler-on-aws/latest/instance-scheduler-on-aws.template&redirectId=GitHub)**

Refer to the [deployment instructions](https://docs.aws.amazon.com/solutions/latest/instance-scheduler-on-aws/step-1-launch-the-instance-scheduler-hub-stack.html) in our implementation guide
for configuration details and step-by-step instructions on deploying Instance Scheduler on AWS using our pre-packaged deployment assets.

### Deploy from source code using CDK

Expand Down
Loading