-
-
Notifications
You must be signed in to change notification settings - Fork 413
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove strict data from servant{,-server}'s cabal files (#1781)
* Remove strict data from servant{,-server}'s cabal files This has triggered a regression in 0.20.2, and closes #1780 * Restore changelog-d configuration
- Loading branch information
Showing
4 changed files
with
21 additions
and
2 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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
-- Possible fields for changelog entry | ||
-- synopsis: Brief description of the change. Often just the PR title. | ||
-- description: Longer description, with a list of sub-changes. Not needed for small/atomic changes. | ||
-- packages: Packages affected by the change. Omit if it's an overarching or non-package change. | ||
-- prs: Space-separated hash-prefixed pull request numbers containing the change (usually just one). | ||
-- issues: Space-separated hash-prefixed issue numbers that the change fixes/closes/affects. | ||
-- significance: Set to significant if the change is significant, that is if it warrants being put near the top of the changelog. | ||
organization: haskell-servant | ||
repository: servant | ||
required-fields: synopsis description prs | ||
packages: servant servant-server servant-client-core servant-client servant-quickcheck servant |
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
synopsis: Remove -XStrictData from servant{,-server}'s cabal files | ||
packages: servant servant-server | ||
prs: #1781 | ||
issues: #1780 | ||
significance: significant | ||
description: { | ||
The addition of -XStrictData to servant.cabal and servant-server.cabal reduced the laziness | ||
of routing, which would trigger unimplemented endpoints using `error` or `undefined`, | ||
despite the fact that these endpoints themselves were not queried. | ||
} |
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