Skip to content

Commit

Permalink
fix: Aws Signing use query params in signing request (#684)
Browse files Browse the repository at this point in the history
  • Loading branch information
AnWeber committed May 5, 2024
1 parent 4572ac2 commit aa0890c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## [unrelaased]
### Fix
- Aws Signing use query params in signing request (#684)

## [6.13.2] ( 2024-05-01)
### Fix
- ensureUniqueId on merge (Anweber/vscode-httpyac#280)
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/http/awsAuthVariableReplacer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export async function awsAuthVariableReplacer(
method: request.method,
headers: request.headers,
host: url.host,
path: url.pathname,
path: `${url.pathname}${url.search}`,
region: match.groups.region,
service: match.groups.service,
body: Buffer.isBuffer(request.body) || utils.isString(request.body) ? request.body : undefined,
Expand Down

0 comments on commit aa0890c

Please sign in to comment.