Skip to content

Commit 7d3e855

Browse files
authored
Updated to version v1.0.4
Updated to version v1.0.4
2 parents f8194f4 + 3d78583 commit 7d3e855

File tree

7 files changed

+404
-393
lines changed

7 files changed

+404
-393
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [1.0.4] - 2026-02-13
9+
10+
### Security
11+
12+
- Update dependencies to mitigate [CVE-2026-25639](https://nvd.nist.gov/vuln/detail/CVE-2026-25639) and [CVE-2026-25990](https://avd.aquasec.com/nvd/cve-2026-25990).
13+
814
## [1.0.3] - 2026-02-09
915

1016
### Security

solution-manifest.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
id: SO0310
22
name: deepracer-on-aws
3-
version: v1.0.3
3+
version: v1.0.4
44
cloudformation_templates:
55
- template: deepracer-on-aws.template
66
main_template: true

source/apps/infra/lib/constructs/observability/dashboard.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ export class MonitoringDashboard extends Construct {
9595
markdown:
9696
'## Training Instance Usage\n\n' +
9797
'Current ml.c5.4xlarge training job usage. ' +
98-
'[View quota limits and utilization](https://console.aws.amazon.com/servicequotas/home/services/sagemaker/quotas/L-E7898792)',
98+
'[View quota limits and utilization](https://console.aws.amazon.com/servicequotas/home/services/sagemaker/quotas/L-E7898792)',
9999
width: 24,
100100
height: 2,
101101
}),

source/libs/lambda/src/workflow/handlers/__tests__/jobFinalizer.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -175,8 +175,8 @@ describe('JobFinalizer', () => {
175175
.mockImplementation(() => Promise.resolve(TEST_ACCOUNT_RESOURCE_USAGE_NORMAL));
176176
updateProfileSpy = vi.spyOn(profileDao, 'update');
177177
vi.spyOn(metricsLogger, 'logDeepRacerJob').mockImplementation(() => undefined);
178-
vi.spyOn(metrics, 'addMetric').mockImplementation(() => undefined);
179-
vi.spyOn(metrics, 'addDimension').mockImplementation(() => undefined);
178+
vi.spyOn(metrics, 'addMetric').mockImplementation(() => metrics);
179+
vi.spyOn(metrics, 'addDimension').mockImplementation(() => metrics);
180180
});
181181

182182
describe('handler()', () => {

source/libs/reward-function-validation/Dockerfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,8 @@ RUN pip install --no-cache-dir -r requirements.txt
1212
# Remove unused aws-lambda-rie to fix CVE-2025-61726
1313
RUN rm -f /usr/local/bin/aws-lambda-rie
1414

15+
# Upgrade Pillow to fix CVE-2026-25990
16+
RUN pip install --no-cache-dir --upgrade pillow==12.1.1
17+
1518
# Pass the name of the function handler as an argument to the runtime
1619
CMD [ "lambda_function.lambda_handler" ]

source/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,7 @@
9797
"qs@<6.14.1": ">=6.14.1",
9898
"react-hook-form": "7.54.2",
9999
"fast-xml-parser": ">=5.3.4",
100+
"axios@1.13.4": ">=1.13.5",
100101
"npm": "npm:empty-npm-package@1.0.0"
101102
}
102103
}

source/pnpm-lock.yaml

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

0 commit comments

Comments
 (0)