Skip to content

Commit

Permalink
Merge pull request #583 from aws-solutions/release-candidate/v3.0.6
Browse files Browse the repository at this point in the history
release v3.0.6
  • Loading branch information
abewub authored Nov 7, 2024
2 parents a1ead57 + 5d544d1 commit 6dae39b
Show file tree
Hide file tree
Showing 27 changed files with 2,460 additions and 2,142 deletions.
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

0 comments on commit 6dae39b

Please sign in to comment.