Skip to content

Commit 065af79

Browse files
authored
Merge pull request #5362 from commercialhaskell/merge-stable
Merge stable
2 parents 94ec44a + 02070c4 commit 065af79

File tree

6 files changed

+20
-13
lines changed

6 files changed

+20
-13
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ about: Report a bug in Stack
55

66
Please follow the steps below for reporting a bug:
77

8-
Make sure that you are using the latest release (currently stack-2.3.1).
8+
Make sure that you are using the latest release (currently stack-2.3.3).
99
See the [upgrade instructions](http://docs.haskellstack.org/en/stable/install_and_upgrade/#upgrade) to upgrade.
1010

1111
Please use the following schema for your bug report:

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Feature Request
33
about: Request a feature be added to Stack, or discuss such a feature
44
---
55

6-
Make sure that you are using the latest release (currently stack-2.3.1).
6+
Make sure that you are using the latest release (currently stack-2.3.3).
77
See the [upgrade instructions](http://docs.haskellstack.org/en/stable/install_and_upgrade/#upgrade) to upgrade.
88

99
Please state as clearly as possible what feature you are recommending,

.github/workflows/integration-tests.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,7 @@ jobs:
1818
- os: ubuntu-latest
1919
release-args: "--alpine"
2020
- os: windows-latest
21-
# Issues with symlinks cause things to appear dirty
22-
# FIXME: we probably need to fix this so we get good output on stack --version
23-
release-args: "--allow-dirty"
21+
release-args: ""
2422
- os: macos-latest
2523
release-args: ""
2624
steps:
@@ -36,6 +34,10 @@ jobs:
3634
run: |
3735
set -ex
3836
37+
# Work around 'git status' always showing symlinks modified on Windows; see
38+
# https://github.com/git-for-windows/git/issues/2653#issuecomment-640234081
39+
git config --global core.fscache false
40+
3941
stack upgrade || curl -sSL https://get.haskellstack.org/ | sh -s - -f
4042
4143
if [[ "${{ matrix.os }}" == "ubuntu-latest" ]]

ChangeLog.md

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
Release notes:
77

8-
**Changes since v2.3.1**
8+
**Changes since v2.3.3**
99

1010
Major changes:
1111
* Add the `snapshot-location-base` yaml configuration option, which allows to override the default location of
@@ -27,6 +27,18 @@ Other enhancements:
2727
[#5280](https://github.com/commercialhaskell/stack/issues/5280)
2828
* Build failures now show a hint to scroll up to the corresponding section
2929
[#5279](https://github.com/commercialhaskell/stack/issues/5279)
30+
31+
Bug fixes:
32+
33+
* Fix `stack test --coverage` when using Cabal 3
34+
35+
36+
## v2.3.3
37+
38+
**Changes since v2.3.1**
39+
40+
Other enhancements:
41+
3042
* Add the `stack-developer-mode` flag
3143

3244
Bug fixes:
@@ -35,16 +47,13 @@ Bug fixes:
3547
* Fix the problem of `stack repl foo:test:bar` failing without a project
3648
build before that. See
3749
[#5213](https://github.com/commercialhaskell/stack/issues/5213)
38-
3950
* Fix `stack sdist` introducing unneded sublibrary syntax when using
4051
pvp-bounds. See
4152
[#5289](https://github.com/commercialhaskell/stack/issues/5289)
4253
* Fix modified time busting caches by always calculating sha256 digest
4354
during the build process.
4455
[#5125](https://github.com/commercialhaskell/stack/issues/5125)
4556

46-
* Fix `stack test --coverage` when using Cabal 3
47-
4857
## v2.3.1
4958

5059
Release notes:

stack-ghc-810.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@ nix:
1414
- unzip
1515
flags:
1616
stack:
17-
hide-dependency-versions: true
18-
supported-build: true
1917
developer-mode: true
2018

2119
ghc-options:

stack-ghc-88.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@ nix:
1414
- unzip
1515
flags:
1616
stack:
17-
hide-dependency-versions: true
18-
supported-build: true
1917
developer-mode: true
2018

2119
ghc-options:

0 commit comments

Comments
 (0)