Skip to content
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
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"variables": {
"${LATEST}": "3.339.14"
"${LATEST}": "3.339.17"
},
"endpoints": "https://raw.githubusercontent.com/aws/aws-sdk-php/${LATEST}/src/data/endpoints.json",
"services": {
Expand Down
4 changes: 4 additions & 0 deletions src/Service/LocationService/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## NOT RELEASED

### Added

- AWS api-change: Added `UNKNOWN_FIELD` constant in `ValidationExceptionReason`

## 1.0.4

### Changed
Expand Down
2 changes: 1 addition & 1 deletion src/Service/LocationService/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
"dev-master": "1.1-dev"
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ final class ValidationExceptionReason
public const FIELD_VALIDATION_FAILED = 'FieldValidationFailed';
public const MISSING = 'Missing';
public const OTHER = 'Other';
public const UNKNOWN_FIELD = 'UnknownField';
public const UNKNOWN_OPERATION = 'UnknownOperation';

public static function exists(string $value): bool
Expand All @@ -17,6 +18,7 @@ public static function exists(string $value): bool
self::FIELD_VALIDATION_FAILED => true,
self::MISSING => true,
self::OTHER => true,
self::UNKNOWN_FIELD => true,
self::UNKNOWN_OPERATION => true,
][$value]);
}
Expand Down
Loading