Skip to content
Merged
Changes from all commits
Commits
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
23 changes: 20 additions & 3 deletions HISTORY.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,26 @@ unreleased

2.0.0 / 2024-09-10
=========================
* Propagate changes from 1.20.3
* add brotli support #406
* Breaking Change: Node.js 18 is the minimum supported version

## Breaking Changes
* Node.js 18 is the minimum supported version
* `req.body` is no longer always initialized to `{}`
- it is left `undefined` unless a body is parsed
* Remove deprecated `bodyParser()` combination middleware
* ~`urlencoded` parser now defaults `extended` to `false`~ as released, this is not the case, fixed in 2.0.1
* `urlencoded` simple parser now uses `qs` module instead of `querystring` module

## Features
* Add brotli support #406
* urlencoded: Add option to customize the depth with a default value of 32
* urlencoded: Support iso-8859-1, utf8 sentinel, and numeric entities
* Use `on-finished` to determine when body read

## Dependencies
* deps: raw-body@^3.0.0
* deps: qs@6.12.3
* deps: debug@3.1.0
* deps: iconv-lite@0.5.2

2.0.0-beta.2 / 2023-02-23
=========================
Expand Down