Skip to content

release v3.0.6 #583

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
Nov 7, 2024
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
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.

2 changes: 1 addition & 1 deletion .projen/tasks.json

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

6 changes: 5 additions & 1 deletion .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.5", cdkVersion: "2.150.0" }).synth();
new InstanceScheduler({ version: "3.0.6", cdkVersion: "2.164.1" }).synth();
}

interface InstanceSchedulerProps {
Expand Down Expand Up @@ -165,6 +165,10 @@ class InstanceScheduler extends AwsCdkTypeScriptApp {
// use default snapshot resolution
this.removeCustomSnapshotResolver();

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

new YamlFile(this, "solution-manifest.yaml", {
obj: {
id: InstanceScheduler.solutionId,
Expand Down
17 changes: 16 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,22 @@ 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.5] -- 2024-10-01
## [3.0.6] -- 2024-11-7

### Changed
- RDS instances will now be automatically started 10 minutes prior to their preferred maintenance windows

### Fixed
- Clamped role session name to 64 characters to fix scenario where longer
namespaces could cause runtime errors during sts assume
- Fixed long-term retry logic for EC2/RDS scheduling.
EC2 and RDS will now retry start actions on instances that failed during the previous scheduling cycle
- Fixed AccessDenied error when spoke account self-registration process attempted to create a log group

### Security
- Upgrade Werkzeug to mitigate CVE-2024-49766 and CVE-2024-49767

## [3.0.5] -- 2024-10-1
### Fixed
- Fixed bug in Nth weekday logic that would sometimes cause Nth weekday to be interpreted as 1 week too early

Expand Down
Loading