Skip to content
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

Use text-encoding npm package instead of integrated text-encoding dep. #50

Merged
merged 26 commits into from
Dec 4, 2021
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
0281fb4
replace encodings
Uzlopak Nov 30, 2021
284ef1c
use external TextDecoder as polyfill
Uzlopak Dec 1, 2021
454ba29
add information to changelog
Uzlopak Dec 1, 2021
1510bbe
move dependencies closer to devDependencies
Uzlopak Dec 1, 2021
218801c
add benchmark
Uzlopak Dec 1, 2021
0f6ca71
add missing \r\n\r\n to each part
Uzlopak Dec 1, 2021
304acce
create utf8 and latin1 specific benchmarks
Uzlopak Dec 1, 2021
7b47fe8
also encode the content of the parts
Uzlopak Dec 1, 2021
f6bc5c3
extracted createMultipartBufferForFormBench
Uzlopak Dec 1, 2021
46b2343
rename createMultipartBufferForEncodingBench to createMultipartBuffer…
Uzlopak Dec 1, 2021
bc2bebe
add unit test
Uzlopak Dec 1, 2021
b2d6b1c
Merge branch 'master' into replace-encoding
Uzlopak Dec 1, 2021
636f977
fix linting issues
Uzlopak Dec 1, 2021
0e22412
Merge branch 'replace-encoding' of https://github.com/Uzlopak/busboy …
Uzlopak Dec 1, 2021
5dca1dc
Merge branch 'master' into replace-encoding
Uzlopak Dec 2, 2021
4df8394
Add explicit charset
kibertoad Dec 2, 2021
05cc9a6
Merge branch 'master' into replace-encoding
Uzlopak Dec 3, 2021
6b97219
Merge branch 'replace-encoding' of https://github.com/Uzlopak/busboy …
Uzlopak Dec 3, 2021
9235d10
latin1 is the same as iso8859-1 but is like the unit test i wrote
Uzlopak Dec 3, 2021
7fb9bd4
use Map instead of Object,bind streamsearch onInfo directly
Uzlopak Dec 3, 2021
f36b7a3
fix linting
Uzlopak Dec 3, 2021
607ec43
fix benchmarks
Uzlopak Dec 3, 2021
97fadfe
revert unnecessary change for this PR
Uzlopak Dec 3, 2021
91756f4
Merge branch 'fastify:master' into replace-encoding
Uzlopak Dec 4, 2021
a0b1b77
Merge branch 'master' into replace-encoding
Uzlopak Dec 4, 2021
5a5b1a4
Minor cleanup
kibertoad Dec 4, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,4 @@ Major changes since the last busboy release (0.31):
* Error on non-number limit rather than ignoring (#7)
* Dicer is now part of the busboy itself and not an external dependency (#14)
* Tests were converted to Mocha (#11, #12, #22, #23)
* Using the native TextDecoder and the package 'text-decoding' for fallback if nodejs does not supporting the requested encoding (#50)
Loading