Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: expressjs/body-parser
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: thepeacockproject/body-parser
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Can’t automatically merge. Don’t worry, you can still create the pull request.
  • 9 commits
  • 27 files changed
  • 1 contributor

Commits on Jan 6, 2022

  1. Peacock fork

    RDIL committed Jan 6, 2022

    Unverified

    This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
    Copy the full SHA
    6e6ce7c View commit details
  2. Fix type defs

    RDIL committed Jan 6, 2022

    Unverified

    This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
    Copy the full SHA
    d93f2c1 View commit details

Commits on Apr 7, 2022

  1. Update to body-parser 1.20.0

    RDIL committed Apr 7, 2022

    Unverified

    This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
    Copy the full SHA
    170d016 View commit details
  2. Remove dependency on raw-body

    RDIL committed Apr 7, 2022

    Unverified

    This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
    Copy the full SHA
    027d55b View commit details

Commits on Apr 12, 2022

  1. Revert "Update to body-parser 1.20.0"

    This reverts commit 170d016.
    RDIL committed Apr 12, 2022

    Unverified

    This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
    Copy the full SHA
    af148ca View commit details

Commits on Apr 13, 2022

  1. Update yarn again

    RDIL committed Apr 13, 2022

    Unverified

    This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
    Copy the full SHA
    58739f7 View commit details
  2. Mini version bump

    RDIL committed Apr 13, 2022

    Unverified

    This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
    Copy the full SHA
    e2c1f40 View commit details

Commits on May 8, 2022

  1. Unverified

    This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
    Copy the full SHA
    84ff339 View commit details

Commits on Nov 4, 2023

  1. Bunch of changes

    RDIL committed Nov 4, 2023

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    RDIL Reece Dunham
    Copy the full SHA
    ae4c2fa View commit details
Showing with 957 additions and 4,767 deletions.
  1. +0 −2 .eslintignore
  2. +0 −11 .eslintrc.yml
  3. +0 −189 .github/workflows/ci.yml
  4. +5 −0 .gitignore
  5. +5 −0 .yarnrc.yml
  6. +0 −624 HISTORY.md
  7. +14 −452 README.md
  8. +27 −0 index.d.ts
  9. +3 −148 index.js
  10. +57 −0 lib/bomHandling.js
  11. +113 −0 lib/json.js
  12. +266 −0 lib/rawBody.js
  13. +103 −160 lib/read.js
  14. +0 −230 lib/types/json.js
  15. +0 −101 lib/types/raw.js
  16. +0 −121 lib/types/text.js
  17. +0 −284 lib/types/urlencoded.js
  18. +124 −0 lib/urlencoded.js
  19. +35 −50 package.json
  20. +0 −2 test/.eslintrc.yml
  21. +0 −155 test/body-parser.js
  22. +0 −675 test/json.js
  23. +0 −381 test/raw.js
  24. +0 −2 test/support/env.js
  25. +0 −439 test/text.js
  26. +0 −741 test/urlencoded.js
  27. +205 −0 yarn.lock
2 changes: 0 additions & 2 deletions .eslintignore

This file was deleted.

11 changes: 0 additions & 11 deletions .eslintrc.yml

This file was deleted.

189 changes: 0 additions & 189 deletions .github/workflows/ci.yml

This file was deleted.

5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -3,3 +3,8 @@ coverage/
node_modules/
npm-debug.log
package-lock.json
.pnp.cjs
.pnp.loader.mjs
.yarn/cache
.yarn/unplugged
.yarn/install-state.gz
5 changes: 5 additions & 0 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
compressionLevel: mixed

enableGlobalCache: false

nodeLinker: node-modules
Loading