-
Notifications
You must be signed in to change notification settings - Fork 701
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* changelog-d moved to codeberg (cherry picked from commit 067967e) * Add required-fields to changelog.d config (cherry picked from commit 5168b01) # Conflicts: # changelog.d/issue-8680 # changelog.d/issue-9098-lexbraces # changelog.d/issue-9678 # changelog.d/issue-9736 # changelog.d/pkgconfig-once --------- Co-authored-by: Francesco Gazzetta <[email protected]> Co-authored-by: Artem Pelenitsyn <[email protected]> Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
- Loading branch information
1 parent
1eb4252
commit a06f4e9
Showing
7 changed files
with
75 additions
and
14 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
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,2 +1,3 @@ | ||
organization: haskell | ||
repository: cabal | ||
required-fields: packages prs |
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: `cabal init` should not suggest Cabal < 2.0 | ||
packages: Cabal | ||
issues: #8680 | ||
prs: #8700 | ||
|
||
description: { | ||
|
||
'cabal init' no longer suggests users to set cabal-version to less than 2.0 | ||
|
||
} |
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,19 @@ | ||
synopsis: Add LexBraces lexer warning | ||
packages: Cabal-syntax | ||
issues: #9098 | ||
prs: #9099 | ||
|
||
description: { | ||
|
||
LexBraces warning is issued when brace delimiting syntax is used. | ||
This way, using `readFields'`, a low-lever consumer may decide | ||
whether braces were used. | ||
|
||
(Looking for a brace character in the input is imprecise, as braces can occur inside field content). | ||
|
||
This warning is not propagated to parser warnings, | ||
so e.g. readGenericPackageDescription doesn't warn about it. | ||
This is because all parser warnings prevent uploads to Hackage, | ||
and using braces (or not) is opinionated choice. | ||
|
||
} |
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,17 @@ | ||
synopsis: Clarify the semantics of the -package-db flag | ||
packages: cabal-install | ||
prs: | ||
issues: #9678 | ||
prs: #9683 | ||
|
||
description: { | ||
|
||
The `--package-db` flag now only applies to the default | ||
immutable initial package stack rather than also applying to the store | ||
package database. | ||
|
||
This fixes an assertion failure which was triggered when using -package-db and also | ||
clarifies how it should interact with `--store-dir` and `--dist-dir` flags. | ||
|
||
} | ||
|
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,12 @@ | ||
synopsis: Add support for `GHC2024` | ||
packages: Cabal cabal-install | ||
issues: #9736 | ||
prs: #9791 | ||
|
||
description: { | ||
|
||
Support for the `GHC2024` language edition, introduced by GHC 9.10, has been | ||
added. It can now be used in the `default-language` and `other-languages` | ||
fields, and will be offered as an option by `cabal init`. | ||
|
||
} |
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,9 @@ | ||
synopsis: PkgConfig individual calls | ||
prs: #9134 | ||
packages: cabal-install-solver | ||
|
||
description: { | ||
|
||
- `cabal` invokes `pkg-config` individually for each lib if querying for all doesn't return the expected result | ||
|
||
} |