Skip to content

Commit bf06093

Browse files
authored
Merge pull request #55 from aws-solutions/release/v1.0.5
v1.0.5 release
2 parents a472a55 + d882d25 commit bf06093

File tree

36 files changed

+114
-97
lines changed

36 files changed

+114
-97
lines changed

CHANGELOG.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,17 @@ 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] - 2025-09-02
8+
## [1.0.5] - 2025-10-09
9+
10+
### Fixed
11+
12+
- Disabled WAF SizeRestrictions_QUERYSTRING rule blocking legitimate AWS Organizations pagination tokens on GET /accounts/unregistered endpoint when handling large numbers of accounts (>20)
13+
14+
### Security
15+
16+
- Upgraded `expat` to mitigate [CVE-2025-59375](https://nvd.nist.gov/vuln/detail/CVE-2025-59375)
17+
18+
## [1.0.4] - 2025-08-22
919

1020
### Added
1121

docs/openapi/innovation-sandbox-api.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ openapi: 3.0.0
22
info:
33
title: Innovation Sandbox on AWS
44
description: API documentation for the Innovation Sandbox on AWS solution.
5-
version: 1.0.4
5+
version: 1.0.5
66
license:
77
name: Apache 2.0
88
url: "http://www.apache.org/licenses/LICENSE-2.0.html"

package-lock.json

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

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@amzn/innovation-sandbox-on-aws",
3-
"version": "1.0.4",
3+
"version": "1.0.5",
44
"description": "Innovation Sandbox on AWS (SO0284)",
55
"scripts": {
66
"test": "vitest run --coverage",

solution-manifest.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
id: SO0284
22
name: innovation-sandbox-on-aws
3-
version: v1.0.4
3+
version: v1.0.5
44
cloudformation_templates:
55
- template: InnovationSandbox-AccountPool.template
66
main_template: true

source/common/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@amzn/innovation-sandbox-commons",
33
"description": "Common - Innovation Sandbox on AWS (SO0284)",
4-
"version": "1.0.4",
4+
"version": "1.0.5",
55
"scripts": {
66
"build": "tsc",
77
"test": "vitest run"

source/e2e/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@amzn/innovation-sandbox-e2e",
33
"description": "E2E Tests - Innovation Sandbox on AWS (SO0284)",
4-
"version": "1.0.4",
4+
"version": "1.0.5",
55
"scripts": {
66
"build": "tsc",
77
"e2e": "vitest run --config ./vitest.config.e2e.ts",

source/frontend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@amzn/innovation-sandbox-frontend",
33
"description": "Frontend - Innovation Sandbox on AWS (SO0284)",
44
"private": true,
5-
"version": "1.0.4",
5+
"version": "1.0.5",
66
"type": "module",
77
"scripts": {
88
"dev": "vite",

source/infrastructure/lib/components/account-cleaner/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM public.ecr.aws/amazonlinux/amazonlinux:2023-minimal
1+
FROM public.ecr.aws/amazonlinux/amazonlinux:2023-minimal@sha256:c9a8457247e453f635fda07121cce4fc16c2219290ca4e5494959e6452fc0244
22

33
RUN dnf install -y tar gzip awscli jq sed
44

source/infrastructure/lib/components/api/rest-api-all.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -216,6 +216,9 @@ export class RestApi extends ApiGatewayRestApi {
216216
{
217217
name: "SizeRestrictions_BODY",
218218
},
219+
{
220+
name: "SizeRestrictions_QUERYSTRING",
221+
},
219222
{
220223
name: "CrossSiteScripting_BODY",
221224
},

0 commit comments

Comments
 (0)