-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #31 from haskell-servant/fix-content-type
Fix duplicate import of headers from raw request
- Loading branch information
Showing
6 changed files
with
57 additions
and
81 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,78 +1,86 @@ | ||
0.9.0 (2020-09-07) | ||
----- | ||
|
||
- **BREAKING** Removed `snapToApplication'`. Use `snapToApplication` instead | ||
- Fixed a bug that caused duplication of header values in the request data | ||
used to route requests. See this issue: | ||
[#27](https://github.com/haskell-servant/servant-snap/issues/27) | ||
|
||
0.8.5.0 | ||
----- | ||
|
||
Bump dependencies for ghc-8.8.2 | ||
- Bump dependencies for ghc-8.8.2 | ||
|
||
|
||
0.8.4.1 | ||
----- | ||
|
||
Drop servant-client and http-client dependencies from snap-greet | ||
- Drop servant-client and http-client dependencies from snap-greet | ||
|
||
|
||
0.8.4 | ||
----- | ||
|
||
Support servant 0.15 and 0.16, which have a new `Stream` combinator | ||
Drop support for servant < 0.15 | ||
Correct the way imperativelly added headers in request/response are managed (fixing CORS issue) | ||
More CORS test coverage | ||
- Support servant 0.15 and 0.16, which have a new `Stream` combinator | ||
- Drop support for servant < 0.15 | ||
- Correct the way imperativelly added headers in request/response are managed (fixing CORS issue) | ||
- More CORS test coverage | ||
|
||
|
||
0.8.3.2 | ||
----- | ||
|
||
Backport the response header fix from 0.8.4 (we can now use it with servant 0.14) | ||
- Backport the response header fix from 0.8.4 (we can now use it with servant 0.14) | ||
|
||
|
||
0.8.3 | ||
----- | ||
|
||
Add support for servant-0.14 | ||
Reorder handling of errors | ||
- Add support for servant-0.14 | ||
- Reorder handling of errors | ||
|
||
0.8.2 | ||
------ | ||
|
||
Add `HasServer` instances for `StreamGenerator` | ||
- Add `HasServer` instances for `StreamGenerator` | ||
|
||
|
||
0.8.0.1 | ||
------- | ||
|
||
Add headers from MonadSnap state response to the servant-snap computed response | ||
Add a commented-out snap-cors test to the test suite. It doesn't pass, although | ||
manual testing of snap-cors works. | ||
- Add headers from MonadSnap state response to the servant-snap computed response | ||
- Add a commented-out snap-cors test to the test suite. It doesn't pass, although | ||
manual testing of snap-cors works. | ||
|
||
0.8 | ||
------- | ||
|
||
Copy BasicAuth and Context from servant-server to support basic auth checking | ||
- Copy BasicAuth and Context from servant-server to support basic auth checking | ||
|
||
0.7.1 | ||
------- | ||
|
||
Call 'Snap.Core.pass' when routing an empty URI path. This allows an entire | ||
served API to fall through, which is more in line with the rest of snap routing, | ||
and allows multiple servant API's to be served under the same path context | ||
from 'Snap.Core.route'. | ||
- Call 'Snap.Core.pass' when routing an empty URI path. This allows an entire | ||
served API to fall through, which is more in line with the rest of snap routing, | ||
and allows multiple servant API's to be served under the same path context | ||
from 'Snap.Core.route'. | ||
|
||
0.7.0.5 | ||
------- | ||
|
||
Fix throwError bug ignoring ServantError headers | ||
- Fix throwError bug ignoring ServantError headers | ||
|
||
0.7.0.4 | ||
------- | ||
|
||
Fix throwError bug ignoring ServantError body | ||
- Fix throwError bug ignoring ServantError body | ||
|
||
0.7.0.3 | ||
------- | ||
|
||
Bump servant upper bound, allow 0.9 | ||
- Bump servant upper bound, allow 0.9 | ||
|
||
0.7 | ||
---- | ||
|
||
Initial release | ||
- Initial release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters