You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(http-client): resolve HTTParty encoding compatibility issue with multipart requests
Fixes#528
- Resolves 'incompatible character encodings: ASCII-8BIT and UTF-8' error when sending multipart requests
- Normalizes all multipart payload strings to consistent ASCII-8BIT encoding for HTTParty compatibility
- Maintains backward compatibility while preventing encoding conflicts during multipart body generation
- Updates test expectations to reflect new encoding behavior
Copy file name to clipboardExpand all lines: CHANGELOG.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,7 @@
4
4
* Added support for `single_level` query parameter in Folders API for Microsoft accounts
5
5
* Added support for `include_hidden_folders` query parameter in folders list endpoint for Microsoft accounts to control whether hidden folders are included in the response
6
6
* Replace Tempfile with StringIO for multipart uploads to eliminate filesystem dependencies and improve compatibility with read-only containers and AWS Lambda environments
7
+
* Fixed HTTParty encoding compatibility issue with multipart requests (#528)
7
8
8
9
### 6.5.0 / 2025-06-13
9
10
* Replaced `rest-client` dependency with `httparty` for improved maintainability and security
0 commit comments