diff --git a/lib/errors/arsenalErrors.ts b/lib/errors/arsenalErrors.ts index 28c5f5d31..77be90035 100644 --- a/lib/errors/arsenalErrors.ts +++ b/lib/errors/arsenalErrors.ts @@ -285,6 +285,12 @@ export const MalformedXML: ErrorFormat = { 'The XML you provided was not well-formed or did not validate against our published schema.', }; +export const MalformedTrailerError: ErrorFormat = { + code: 400, + description: + 'The request contained trailing data that was not well-formed or did not conform to our published schema.', +}; + export const MaxMessageLengthExceeded: ErrorFormat = { code: 400, description: 'Your request was too big.', diff --git a/package.json b/package.json index 05e127955..6aa9ed2a7 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "engines": { "node": ">=20" }, - "version": "8.3.5", + "version": "8.3.6", "description": "Common utilities for the S3 project components", "main": "build/index.js", "repository": {