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: seanmonstar/httparse
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.5.1
Choose a base ref
...
head repository: seanmonstar/httparse
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.6.0
Choose a head ref
  • 5 commits
  • 5 files changed
  • 5 contributors

Commits on Sep 23, 2021

  1. Configuration menu
    Copy the full SHA
    333d555 View commit details
    Browse the repository at this point in the history

Commits on Jan 14, 2022

  1. Print Header value as string if it's UTF-8

    Rather then looking at a slice of bytes is easier (for most humans) to
    read a string. Since most, but not all, header values are strings
    attempt to create a string from the header value and print that, falling
    back to printing it a slice of bytes if the value is not a valid UTF-8
    string.
    Thomasdezeeuw authored and seanmonstar committed Jan 14, 2022
    Configuration menu
    Copy the full SHA
    507f582 View commit details
    Browse the repository at this point in the history
  2. Fix SIMD header value check on char >= 0x80

    The SIMD intrinsics *_cmpgt_epi8 are for signed chars.
    This change correctly performs the unsigned comparison.
    eaufavor authored and seanmonstar committed Jan 14, 2022
    Configuration menu
    Copy the full SHA
    454efce View commit details
    Browse the repository at this point in the history

Commits on Jan 28, 2022

  1. Implement obsolete header line folding

    This provides a configuration option to enable obs-folded headers. It defaults to off. If enabled, the header value will include all the newlines, and thus will need to be replaced with a space afterwards.
    
    Closes #37
    Closes #68
    nox authored Jan 28, 2022
    Configuration menu
    Copy the full SHA
    6915b23 View commit details
    Browse the repository at this point in the history

Commits on Feb 8, 2022

  1. v1.6.0

    seanmonstar committed Feb 8, 2022
    Configuration menu
    Copy the full SHA
    284923a View commit details
    Browse the repository at this point in the history
Loading