Skip to content

Tags: aspnet/AspNetWebStack

Tags

v3.2.9

Toggle v3.2.9's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge tag 'v3.2.8' into 'main' (#320)

- redo merge to restore the complete history
- no files changed because I accidentally squashed the commits in #319

v3.2.8

Toggle v3.2.8's commit message
Merge in 'release/3.2.8' changes

v3.2.7

Toggle v3.2.7's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Flesh out `ByteRangeStream` methods to make it always limit reads (#213)

* Flesh out `ByteRangeStream` methods to make it always limit reads
- #206
- `Seek(...)` was a no-op, `Position` was incorrect if `_lowerbounds != 0`, `ReadAsync(...)` read entire inner `Stream`
  - rewrite `ByteRangeStreamTest` to cover new `ByteRangeStream` members and hold fewer resources
- remove `DelegatingStream.CopyToAsync(...)` override because it copied entire inner `Stream` and was not needed
  - base implementation invokes `ReadAsync(...)`

v3.2.6

Toggle v3.2.6's commit message

Verified

This commit was signed with the committer’s verified signature.
dougbu Doug Bunting
Move to 5.2.6 / 3.2.6 Preview1

- match combination of eb1bfe5 and 986889d i.e. the upgrade to 5.2.5 / 3.2.5 Preview1
- also change README.md to use "Web API 5.x" instead of "Web API 2.x"

v3.2.5

Toggle v3.2.5's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request #146 from Tasteful/response-desciptor

Initialize property ApiDescription.ResponseDescription in ctor

v3.2.5-preview1

Toggle v3.2.5-preview1's commit message

Verified

This commit was signed with the committer’s verified signature.
dougbu Doug Bunting
Do not include compiler-generated names in expression names

- #117
- see also aspnet/Mvc@a045324d3a and PR aspnet/Mvc#3027, the fix for aspnet/Mvc#2890

nits: copy some improved comments from aspnet/Mvc@a045324d3a

v3.2.4

Toggle v3.2.4's commit message
Update Web API product versions

v3.2.4-preview1

Toggle v3.2.4-preview1's commit message
Isolate `MediaTypeFormatterTests.MaxCollectionKeySize_RoundTrips`

- in recent CI run, another test failed because `MediaTypeFormatter.MaxHttpCollectionKeys == 1` temporarily
- also left `MediaTypeFormatter.MaxHttpCollectionKeys == 125` which could affect later tests

v3.2.3

Toggle v3.2.3's commit message
ElementalValueProvider performs incorrect ContainsPrefix check.