Releases: fastify/busboy
Releases · fastify/busboy
v3.0.0
What's Changed
- perf: refactor parts of StreamSearch by @gurgunday in #148
- build(deps-dev): bump tsd from 0.30.7 to 0.31.0 by @dependabot in #151
- More automated tests by @puskin94 in #152
- Improve test coverage by @Gesma94 in #153
- Merge
next
intomaster
by @jsumners in #160
New Contributors
- @puskin94 made their first contribution in #152
- @Gesma94 made their first contribution in #153
- @jsumners made their first contribution in #160
Full Changelog: v2.1.1...v3.0.0
v2.1.1
What's Changed
- chore: fix status badge by @Eomm in #136
- chore: remove unused error by @gurgunday in #138
- build(deps-dev): bump tsd from 0.29.0 to 0.30.0 by @dependabot in #140
- docs(readme): fix broken link by @Fdawgs in #141
- docs(readme): repoint disclosure badge to fastify security policy by @Fdawgs in #142
- chore(package): fix repository url by @Fdawgs in #143
- add testcase for decodeText module by @rommelandrea in #144
- chore(.gitignore): add .tap/ dir by @Fdawgs in #145
- fix: dont use undocumented(?) internal _events attribute by @Uzlopak in #146
New Contributors
- @Eomm made their first contribution in #136
- @rommelandrea made their first contribution in #144
Full Changelog: v2.1.0...v2.1.1
v2.1.0
What's Changed
- chore: replace mocha and chai with tap by @Uzlopak in #123
- build(deps): bump actions/checkout from 3 to 4 by @dependabot in #128
- Perf parse params decode text by @Uzlopak in #109
- chore: add missing
use strict
directives by @Fdawgs in #132 - chore(bench): optimize split param by @Fdawgs in #133
- chore(package): explicitly declare js module type by @Fdawgs in #134
- build(deps): bump actions/setup-node from 3 to 4 by @dependabot in #135
Full Changelog: 2.0.0...v2.1.0
v2.0.0
What's Changed
- chore(.gitignore): add bun lockfile by @Fdawgs in #111
- build(deps-dev): bump tsd from 0.25.0 to 0.26.0 by @dependabot in #112
- build(deps-dev): bump tsd from 0.26.1 to 0.27.0 by @dependabot in #113
- build(deps-dev): bump tsd from 0.27.0 to 0.28.0 by @dependabot in #115
- build(deps-dev): bump typescript from 4.9.5 to 5.0.2 by @dependabot in #114
- ci: only trigger on pushes to main branches by @Fdawgs in #116
- build(deps-dev): bump @types/node from 18.16.5 to 20.1.0 by @dependabot in #117
- build(deps-dev): bump eslint-plugin-n from 15.7.0 to 16.0.0 by @dependabot in #118
- fix: busboy cannot be initialized with
new
by @gurgunday in #119 - remove text-decoding by @KhafraDev in #120
- throw when there's no boundary by @gurgunday in #122
- build(deps-dev): bump tsd from 0.28.1 to 0.29.0 by @dependabot in #124
- perf: use
node:
prefix to bypass require.cache call for builtins by @Fdawgs in #125
New Contributors
- @gurgunday made their first contribution in #119
- @KhafraDev made their first contribution in #120
Full Changelog: v1.2.1...v2.0.0
2.0.0
-
fix: busboy is not a constructor (#119)
-
remove text-decoding (#120)
-
throw when there's no boundary (#122)
-
chore(.gitignore): add bun lockfile (#111)
-
build(deps-dev): bump tsd from 0.25.0 to 0.26.0 (#112)
-
build(deps-dev): bump tsd from 0.26.1 to 0.27.0 (#113)
-
build(deps-dev): bump tsd from 0.27.0 to 0.28.0 (#115)
-
build(deps-dev): bump tsd from 0.28.1 to 0.29.0 (#124)
-
build(deps-dev): bump typescript from 4.9.5 to 5.0.2 (#114)
-
build(deps-dev): bump @types/node from 18.16.5 to 20.1.0 (#117)
-
build(deps-dev): bump eslint-plugin-n from 15.7.0 to 16.0.0 (#118)
v1.2.1
v1.2.0
What's Changed
- Update engines field by @LinusU in #91
- handle unpipeing, cancelling or destroying of busboy accordingly by @Uzlopak in #81
- chore(.gitignore): use updated skeleton template by @Fdawgs in #92
- build(deps-dev): bump tsd from 0.20.0 to 0.21.0 by @dependabot in #93
- build(deps-dev): bump @types/node from 17.0.45 to 18.0.0 by @dependabot in #94
- build(deps-dev): bump tsd from 0.21.0 to 0.22.0 by @dependabot in #95
- ci: enable license checking by @Fdawgs in #96
- build(deps-dev): bump tsd from 0.22.0 to 0.23.0 by @dependabot in #97
- build(deps-dev): replace eslint-plugin-node with eslint-plugin-n by @Fdawgs in #98
- build(deps-dev): bump tsd from 0.23.0 to 0.24.1 by @dependabot in #99
- build(deps-dev): bump tsd from 0.24.1 to 0.25.0 by @dependabot in #103
- fix: Remove dicer dependency to libs/utils.js by @Uzlopak in #105
New Contributors
Full Changelog: 1.1.0...v1.2.0
1.1.0
1.0.0
1.0.0 - 04 December, 2021
- Prevent malformed headers from crashing the web server (#34)
- Prevent empty parts from hanging the process (#55)
- Use non-deprecated Buffer creation (#8, #10)
- Include TypeScript types in the package itself (#13)
- Make
busboy
importable both as ESM and as CJS module (#61) - Improve performance (#21, #32, #36)
- Set
autoDestroy
tofalse
by default in order to avoid regressions when upgrading from Node.js 12 to Node.js 14 (#9) - Add option
isPartAFile
, to make the file-detection configurable (#53) - Add property
bytesRead
on FileStreams (#51) - Add and expose headerSize limit (#64)
- Throw an error on non-number limit (#7)
- Use the native TextDecoder and the package
text-decoding
for fallback if Node.js does not support the requested encoding (#50) - Integrate
dicer
dependency intobusboy
itself (#14) - Convert tests to Mocha (#11, #12, #22, #23)
- Implement better benchmarks (#40, #54)
- Use JavaScript Standard style (#44, #45)