File tree Expand file tree Collapse file tree 4 files changed +21
-2
lines changed Expand file tree Collapse file tree 4 files changed +21
-2
lines changed Original file line number Diff line number Diff line change
1
+ -- Possible fields for changelog entry
2
+ -- synopsis: Brief description of the change. Often just the PR title.
3
+ -- description: Longer description, with a list of sub-changes. Not needed for small/atomic changes.
4
+ -- packages: Packages affected by the change. Omit if it's an overarching or non-package change.
5
+ -- prs: Space-separated hash-prefixed pull request numbers containing the change (usually just one).
6
+ -- issues: Space-separated hash-prefixed issue numbers that the change fixes/closes/affects.
7
+ -- significance: Set to significant if the change is significant, that is if it warrants being put near the top of the changelog.
8
+ organization: haskell-servant
9
+ repository: servant
10
+ required-fields: synopsis description prs
11
+ packages: servant servant-server servant-client-core servant-client servant-quickcheck servant
Original file line number Diff line number Diff line change
1
+ synopsis: Remove -XStrictData from servant{,-server}'s cabal files
2
+ packages: servant servant-server
3
+ prs: #1781
4
+ issues: #1780
5
+ significance: significant
6
+ description: {
7
+ The addition of -XStrictData to servant.cabal and servant-server.cabal reduced the laziness
8
+ of routing, which would trigger unimplemented endpoints using `error` or `undefined`,
9
+ despite the fact that these endpoints themselves were not queried.
10
+ }
Original file line number Diff line number Diff line change @@ -70,7 +70,6 @@ common extensions
70
70
RankNTypes
71
71
RecordWildCards
72
72
ScopedTypeVariables
73
- StrictData
74
73
TupleSections
75
74
TypeApplications
76
75
TypeFamilies
Original file line number Diff line number Diff line change @@ -58,7 +58,6 @@ common extensions
58
58
RankNTypes
59
59
RecordWildCards
60
60
ScopedTypeVariables
61
- StrictData
62
61
TupleSections
63
62
TypeApplications
64
63
TypeFamilies
You can’t perform that action at this time.
0 commit comments