Releases: snabb/httpreaderat
Releases · snabb/httpreaderat
Release list
v1.0.4
Changes since v1.0.3
- harden Content-Range parsing and reject malformed or inconsistent ranges without panics
- support empty resources and chunked partial responses, preserve partial read counts, and validate requests and offsets
- fix exact-limit handling and fallback byte preservation in LimitedStore
- add regression coverage for the corrected edge cases and format the example source
Commits
v1.0.3
Changes since v1.0.2
- add Codecov coverage reporting to CI and document it in the README
- add focused tests for store implementations and HTTPReaderAt edge cases to close major coverage gaps
- bump github.com/stretchr/testify from 1.9.0 to 1.10.0
Commits
v1.0.2
What's changed
- Add GitHub Actions CI pipeline (build, test with
-race, vet) across Go 1.21/1.22/1.23 - Add CI status badge to README; replace dead godoc.org badge with pkg.go.dev
- Replace deprecated
ioutil.TempFile→os.CreateTemp - Replace manual header clone with
http.Header.Clone() - Bump minimum Go version from 1.18 to 1.21
- Fix test name typos (
Intial→Initial,Parrallel→Parallel)