-
Notifications
You must be signed in to change notification settings - Fork 118
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Base64 encode response body #158
Merged
Merged
Changes from all commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
5e1b692
Adding response_body_base64_std attribute to hold standard base64 enc…
bendbennett d1571f2
Updating CHANGELOG.md and docs (#157)
bendbennett fd8ca19
Renaming attribute from response_body_base64_std to response_body_bas…
bendbennett 363592e
Merge branch 'main' into bendbennett/issues-157
SBGoods d0d6ea9
Clean up imports from merge
SBGoods 8b49ab9
Add version check to x509cert test to skip Terraform `v0.14.0`
SBGoods f6aa193
Add Changie entries
SBGoods e6fd128
Add version check to `TestDataSource_ResponseBodyBinary` to skip TF `…
SBGoods da5a0e1
Update version checks to skip all TF versions `0.14.x`
SBGoods 3668d83
Update version checks to use tfversion variables
SBGoods 8806590
Rename `ResponseBodyBase64` field
SBGoods ff73127
Merge branch 'main' into bendbennett/issues-157
SBGoods e0dba99
Clean up `go.mod`
SBGoods File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
kind: ENHANCEMENTS | ||
body: 'data-source/http: `response_body_base64` has been added and contains a standard | ||
base64 encoding of the response body' | ||
time: 2023-06-13T13:33:35.77003-04:00 | ||
custom: | ||
Issue: "158" |
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,6 @@ | ||
kind: ENHANCEMENTS | ||
body: 'data-source/http: Replaced issuing warning on the basis of possible non-text | ||
`Content-Type` with issuing warning if response body does not contain valid UTF-8.' | ||
time: 2023-06-13T13:34:01.499384-04:00 | ||
custom: | ||
Issue: "158" |
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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@bendbennett what's the deal with the special characters instead of plain
\xXX
(hex) notation?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@mza08
response_body
contains the output from:When an invalid UTF-8 sequence is encountered, it is replaced by the Unicode replacement character �.