-
-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: use space character as the separator for user-agent header inste…
…ad of comma (#1156) * Use space character as the separator for user-agent header instead of comma * Update changelog * chore: revert changes to settings file More because I don't know what they will affect, due to not using Rider myself. * docs(changelog): attribute contributor * refactor: add remark on why user-agent header is treated differently * refactor: minor changes --------- Co-authored-by: FantasticFiasco <mattias@kindb.org>
- Loading branch information
1 parent
8596e6b
commit 85b6d17
Showing
17 changed files
with
56 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 1 addition & 0 deletions
1
...est-suite/get-header-value-multiple-user-agent/get-header-value-multiple-user-agent.authz
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
AWS4-HMAC-SHA256 Credential=AKIDEXAMPLE/20150830/us-east-1/service/aws4_request, SignedHeaders=host;my-header1;user-agent;x-amz-date, Signature=01fe72f4f4f40689e7868c6d448c29133334c2ad2e8f5f08ae5537155989cee0 |
10 changes: 10 additions & 0 deletions
10
...test-suite/get-header-value-multiple-user-agent/get-header-value-multiple-user-agent.creq
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
GET | ||
/ | ||
|
||
host:example.amazonaws.com | ||
my-header1:value3,value2 | ||
user-agent:value4 value1 | ||
x-amz-date:20150830T123600Z | ||
|
||
host;my-header1;user-agent;x-amz-date | ||
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 |
7 changes: 7 additions & 0 deletions
7
...-test-suite/get-header-value-multiple-user-agent/get-header-value-multiple-user-agent.req
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
GET / HTTP/1.1 | ||
Host:example.amazonaws.com | ||
User-Agent:value4 | ||
User-Agent:value1 | ||
My-Header1:value3 | ||
My-Header1:value2 | ||
X-Amz-Date:20150830T123600Z |
8 changes: 8 additions & 0 deletions
8
...test-suite/get-header-value-multiple-user-agent/get-header-value-multiple-user-agent.sreq
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
GET / HTTP/1.1 | ||
Host:example.amazonaws.com | ||
My-Header1:value3 | ||
My-Header1:value2 | ||
User-Agent:value4 | ||
User-Agent:value1 | ||
X-Amz-Date:20150830T123600Z | ||
Authorization: AWS4-HMAC-SHA256 Credential=AKIDEXAMPLE/20150830/us-east-1/service/aws4_request, SignedHeaders=host;my-header1;x-amz-date, Signature=08c7e5a9acfcfeb3ab6b2185e75ce8b1deb5e634ec47601a50643f830c755c01 |
4 changes: 4 additions & 0 deletions
4
...-test-suite/get-header-value-multiple-user-agent/get-header-value-multiple-user-agent.sts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
AWS4-HMAC-SHA256 | ||
20150830T123600Z | ||
20150830/us-east-1/service/aws4_request | ||
cdfe07e1b7f30c9fcc39be612b73a3a097454d4adea5b719884be5cb0f46f28e |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters