Skip to content

Commit 6dae39b

Browse files
authored
Merge pull request #583 from aws-solutions/release-candidate/v3.0.6
release v3.0.6
2 parents a1ead57 + 5d544d1 commit 6dae39b

File tree

27 files changed

+2460
-2142
lines changed

27 files changed

+2460
-2142
lines changed

.projen/deps.json

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.projen/tasks.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.projenrc.ts

Lines changed: 5 additions & 1 deletion
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.5", cdkVersion: "2.150.0" }).synth();
19+
new InstanceScheduler({ version: "3.0.6", cdkVersion: "2.164.1" }).synth();
2020
}
2121

2222
interface InstanceSchedulerProps {
@@ -165,6 +165,10 @@ class InstanceScheduler extends AwsCdkTypeScriptApp {
165165
// use default snapshot resolution
166166
this.removeCustomSnapshotResolver();
167167

168+
this.addScripts({
169+
"update-deps": "chmod +x ./update-all-dependencies.sh && exec ./update-all-dependencies.sh"
170+
})
171+
168172
new YamlFile(this, "solution-manifest.yaml", {
169173
obj: {
170174
id: InstanceScheduler.solutionId,

CHANGELOG.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,22 @@ 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.5] -- 2024-10-01
7+
## [3.0.6] -- 2024-11-7
8+
9+
### Changed
10+
- RDS instances will now be automatically started 10 minutes prior to their preferred maintenance windows
11+
12+
### Fixed
13+
- Clamped role session name to 64 characters to fix scenario where longer
14+
namespaces could cause runtime errors during sts assume
15+
- Fixed long-term retry logic for EC2/RDS scheduling.
16+
EC2 and RDS will now retry start actions on instances that failed during the previous scheduling cycle
17+
- Fixed AccessDenied error when spoke account self-registration process attempted to create a log group
18+
19+
### Security
20+
- Upgrade Werkzeug to mitigate CVE-2024-49766 and CVE-2024-49767
21+
22+
## [3.0.5] -- 2024-10-1
823
### Fixed
924
- Fixed bug in Nth weekday logic that would sometimes cause Nth weekday to be interpreted as 1 week too early
1025

0 commit comments

Comments
 (0)