Releases: commercialhaskell/stack
v1.6.1
See https://haskellstack.org for installation and upgrade instructions.
Note: we are releasing a bit earlier than planned due to #3624. As such, not all the binaries have been built yet, but the commonly used 64-bit binaries of Linux static, macOS, and Windows are available.
In addition, the Windows installer and binary has not been codesigned (we are awaiting validation of a new codesign certificate), and you may see a "Windows Defender SmartScreen prevented an unrecognized app from starting" warning when you try to run them. If so, click on More info, and then click on the Run anyway button that appears.
Changes since v1.5.1
Major changes:
- Complete overhaul of how snapshots are defined, the
packages
and
extra-deps
fields, and a number of related items. For full
details, please see
the writeup on these changes. PR #3249,
see the PR description for a number of related issues. - Upgraded to version 2.0 of the Cabal library.
Behavior changes:
- The
--install-ghc
flag is now on by default. For example, if you
runstack build
in a directory requiring a GHC that you do not
currently have, Stack will automatically download and install that
GHC. You can explicitly setinstall-ghc: false
or pass the flag
--no-install-ghc
to regain the previous behavior. stack ghci
no longer loads modules grouped by package. This is
always an improvement for plain ghci - it makes loading faster and
less noisy. For intero, this has the side-effect that it will no
longer load multiple packages that depend on TH loading relative
paths. TH relative paths will still work when loading a single
package into intero. See
#3309- Setting GHC options for a package via
ghc-options:
in your
stack.yaml
will promote it to a local package, providing for more
consistency with flags and better reproducibility. See:
#849 - The
package-indices
setting with Hackage no longer works with the
00-index.tar.gz
tarball, but must use the01-index.tar.gz
file
to allow revised packages to be found. - Options passsed via
--ghci-options
are now passed to the end of the
invocation of ghci, instead of the middle. This allows using+RTS
without an accompanying-RTS
. - When auto-detecting
--ghc-build
,tinfo6
is now preferred over
standard
if both versions of libtinfo are installed - Addition of
stack build --copy-compiler-tool
, to allow tools like
intero to be installed globally for a particular compiler.
#2643 - Stack will ask before saving hackage credentials to file. This new
prompt can be avoided by using thesave-hackage-creds
setting. Please
see #2159. - The
GHCRTS
environment variable will no longer be passed through to
every program stack runs. Instead, it will only be passed through
commands likeexec
,runghc
,script
,ghci
, etc.
See #3444. ghc-options:
for specific packages will now come after the options
specified for all packages / particular sets of packages. See
#3573.- The
pvp-bounds
feature is no longer fully functional, due to some
issues with the Cabal library's printer. See
#3550.
Other enhancements:
- The
with-hpack
configuration option specifies an Hpack executable to use
instead of the Hpack bundled with Stack. Please
see #3179. - It's now possible to skip tests and benchmarks using
--skip
flag GitSHA1
is nowStaticSHA256
and is implemented using theStaticSize 64 ByteString
for improved performance.
See #3006- Dependencies via HTTP(S) archives have been generalized to allow
local file path archives, as well as to support setting a
cryptographic hash (SHA256) of the contents for better
reproducibility. - Allow specifying
--git-branch
when upgrading - When running
stack upgrade
from a file which is different from the
default executable path (e.g., on POSIX systems,
~/.local/bin/stack
), it will now additionally copy the new
executable over the currently runningstack
executable. If
permission is denied (such as in/usr/local/bin/stack
), the user
will be prompted to try again usingsudo
. This is intended to
assist with the user experience when thePATH
environment variable
has not been properly configured, see
#3232. stack setup
for ghcjs will now installalex
andhappy
if
they are not present. See
#3109.- Added
stack ghci --only-main
flag, to skip loading / importing
all but main modules. See the ghci documentation page
for further info. - Allow GHC's colored output to show through. GHC colors output
starting with version 8.2.1, for older GHC this does nothing.
Sometimes GHC's heuristics would work fine even before this change,
for example instack ghci
, but this override's GHC's heuristics
when they're broken by our collecting and processing GHC's output. - Extended the
ghc-options
field to support$locals
,$targets
,
and$everything
. See:
#3329 - Better error message for case that
stack ghci
file targets are
combined with invalid package targets. See:
#3342 - For profiling now uses
-fprof-auto -fprof-cafs
instead of
the deprecated-auto-all -caf-all
. See:
#3360 - Better descriptions are now available for
stack upgrade --help
. See:
#3070 - When using Nix, nix-shell now depends always on gcc to prevent build errors
when using the FFI. As ghc depends on gcc anyway, this doesn't increase the
dependency footprint. --cwd DIR
can now be passed tostack exec
in order to execute the
program in a different directory. See:
#3264- Plan construction will detect if you add an executable-only package
as a library dependency, resulting in much clearer error
messages. See:
#2195. - Addition of
--ghc-options
tostack script
to pass options directly
to GHC. See:
#3454 - Add hpack
package.yaml
to build Stack itself - Add
ignore-revision-mismatch
setting. See:
#3520. - Log when each individual test suite finishes. See:
#3552. - Avoid spurious rebuilds when using
--file-watch
by not watching files for
executable, test and benchmark components that aren't a target. See:
#3483. - Stack will now try to detect the width of the running terminal
(only on POSIX for the moment) and use that to better display
output messages. Work is ongoing, so some messages will not
be optimal yet. The terminal width can be overriden with the
new--terminal-width
command-line option (this works even on
non-POSIX). - Passing non local packages as targets to
stack ghci
will now
cause them to be used as-package
args along with package
hiding. - Detect when user changed .cabal file instead of package.yaml. This
was implemented upstream in hpack. See
#3383. - Automatically run
autoreconf -i
as necessary when aconfigure
script is missing. See
#3534 - GHC bindists can now be identified by their SHA256 checksum in addition to
their SHA1 checksum, allowing for more security in download. - For filesystem setup-info paths, it's no longer assumed that the
directory is writable, instead a temp dir is used. See
#3188.
Bug fixes:
stack hoogle
correctly generates Hoogle databases. See:
#3362stack --docker-help
is now clearer about --docker implying
system-ghc: true, rather than both --docker and --no-docker.stack haddock
now includes package names for all modules in the
Haddock index page. See:
#2886- Fixed an issue where Stack wouldn't detect missing Docker images
properly with newer Docker versions.
#3171 - Previously, cabal files with just test-suite could cause build to fail
(#2862) - If an invalid snapshot file has been detected (usually due to
mismatched hashes), Stack will delete the downloaded file and
recommend either retrying or filing an issue upstream. See
#3319. - Modified the flag parser within Stack to match the behavior of
Cabal's flag parser, which allows multiple sequential dashes. See
[#3345](https://gi...
v1.6.0.20171202
This is the first release candidate for v1.6.1.
Changes since the last v1.6 pre-release (v1.6.0.20171022):
Behavior changes:
- The
package-indices
setting with Hackage no longer works with the
00-index.tar.gz
tarball, but must use the01-index.tar.gz
file
to allow revised packages to be found. - The
GHCRTS
environment variable will no longer be passed through to
every program stack runs. Instead, it will only be passed through
commands likeexec
,runghc
,script
,ghci
, etc.
See #3444. ghc-options:
for specific packages will now come after the options
specified for all packages / particular sets of packages. See
#3573.- The
pvp-bounds
feature is no longer fully functional, due to some
issues with the Cabal library's printer. See
#3550.
Other enhancements:
- Plan construction will detect if you add an executable-only package
as a library dependency, resulting in much clearer error
messages. See:
#2195. - Addition of
--ghc-options
tostack script
to pass options directly
to GHC. See:
#3454 - Add hpack
package.yaml
to build Stack itself - Add
ignore-revision-mismatch
setting. See:
#3520. - Log when each individual test suite finishes. See:
#3552. - Avoid spurious rebuilds when using
--file-watch
by not watching files for
executable, test and benchmark components that aren't a target. See:
#3483. - Stack will now try to detect the width of the running terminal
(only on POSIX for the moment) and use that to better display
output messages. Work is ongoing, so some messages will not
be optimal yet. The terminal width can be overriden with the
new--terminal-width
command-line option (this works even on
non-POSIX). - Passing non local packages as targets to
stack ghci
will now
cause them to be used as-package
args along with package
hiding. - Detect when user changed .cabal file instead of package.yaml. This
was implemented upstream in hpack. See
#3383. - Automatically run
autoreconf -i
as necessary when aconfigure
script is missing. See
#3534 - GHC bindists can now be identified by their SHA256 checksum in addition to
their SHA1 checksum, allowing for more security in download. - For filesystem setup-info paths, it's no longer assumed that the
directory is writable, instead a temp dir is used. See
#3188.
Bug fixes:
- When
--pvp-bounds
is enabled for sdist or upload, internal
dependencies could cause errors when uploaded to hackage. This is
fixed, see #3290 - Fixes a bug where nonexistent hackage versions would cause stack to
suggest the same package name, without giving version info. See
#3562 - Fixes a bug that has existed since 1.5.0, where
stack setup --upgrade-cabal
would say that Cabal is already the latest
version, when it wasn't. - Ensure that an
extra-dep
from a local directory is not treated as
a$locals
for GHC options purposes. See
#3574. - Building all executables only happens once instead of every
time. See
#3229 for
more info.
v1.6.0.20171022
This is a pre-release for testing
Changes since v1.5.1
Major changes:
- Complete overhaul of how snapshots are defined, the
packages
and
extra-deps
fields, and a number of related items. For full
details, please see
the writeup on these changes. PR #3249,
see the PR description for a number of related issues. - Upgraded to version 2.0 of the Cabal library.
Behavior changes:
- The
--install-ghc
flag is now on by default. For example, if you
runstack build
in a directory requiring a GHC that you do not
currently have, Stack will automatically download and install that
GHC. You can explicitly setinstall-ghc: false
or pass the flag
--no-install-ghc
to regain the previous behavior. stack ghci
no longer loads modules grouped by package. This is
always an improvement for plain ghci - it makes loading faster and
less noisy. For intero, this has the side-effect that it will no
longer load multiple packages that depend on TH loading relative
paths. TH relative paths will still work when loading a single
package into intero. See
#3309- Setting GHC options for a package via
ghc-options:
in your
stack.yaml
will promote it to a local package, providing for more
consistency with flags and better reproducibility. See:
#849 - Options passsed via
--ghci-options
are now passed to the end of the
invocation of ghci, instead of the middle. This allows using+RTS
without an accompanying-RTS
. - When auto-detecting
--ghc-build
,tinfo6
is now preferred over
standard
if both versions of libtinfo are installed - Addition of
stack build --copy-compiler-tool
, to allow tools like
intero to be installed globally for a particular compiler.
#2643 - Stack will now try to detect the width of the running terminal
(only on POSIX for the moment) and use that to better display
output messages. Work is ongoing, so some messages will not
be optimal yet. The terminal width can be overriden with the
new--terminal-width
command-line option (this works even on
non-POSIX). - Stack will ask before saving hackage credentials to file. This new
prompt can be avoided by using thesave-hackage-creds
setting. Please
see #2159.
Other enhancements:
- The
with-hpack
configuration option specifies an Hpack executable to use
instead of the Hpack bundled with Stack. Please
see #3179. - It's now possible to skip tests and benchmarks using
--skip
flag GitSHA1
is nowStaticSHA256
and is implemented using theStaticSize 64 ByteString
for improved performance.
See #3006- Dependencies via HTTP(S) archives have been generalized to allow
local file path archives, as well as to support setting a
cryptographic hash (SHA256) of the contents for better
reproducibility. - Allow specifying
--git-branch
when upgrading - When running
stack upgrade
from a file which is different from the
default executable path (e.g., on POSIX systems,
~/.local/bin/stack
), it will now additionally copy the new
executable over the currently runningstack
executable. If
permission is denied (such as in/usr/local/bin/stack
), the user
will be prompted to try again usingsudo
. This is intended to
assist with the user experience when thePATH
environment variable
has not been properly configured, see
#3232. stack setup
for ghcjs will now installalex
andhappy
if
they are not present. See
#3109.--ghc-options
and--ghcjs-boot-options
now parse their input, so
multiple arguments can be passed in one option.
See #3315- Added
stack ghci --only-main
flag, to skip loading / importing
all but main modules. See the ghci documentation page
for further info. - Allow GHC's colored output to show through. GHC colors output
starting with version 8.2.1, for older GHC this does nothing.
Sometimes GHC's heuristics would work fine even before this change,
for example instack ghci
, but this override's GHC's heuristics
when they're broken by our collecting and processing GHC's output. - Extended the
ghc-options
field to support$locals
,$targets
,
and$everything
. See:
#3329 - Better error message for case that
stack ghci
file targets are
combined with invalid package targets. See:
#3342 - For profiling now uses
-fprof-auto -fprof-cafs
instead of
the deprecated-auto-all -caf-all
. See:
#3360 - Better descriptions are now available for
stack upgrade --help
. See:
#3070 - When using Nix, nix-shell now depends always on gcc to prevent build errors
when using the FFI. As ghc depends on gcc anyway, this doesn't increase the
dependency footprint. --cwd DIR
can now be passed tostack exec
in order to execute the
program in a different directory. See:
#3264
Bug fixes:
stack hoogle
correctly generates Hoogle databases. See:
#3362stack --docker-help
is now clearer about --docker implying
system-ghc: true, rather than both --docker and --no-docker.stack haddock
now includes package names for all modules in the
Haddock index page. See:
#2886- Fixed an issue where Stack wouldn't detect missing Docker images
properly with newer Docker versions.
#3171 - Previously, cabal files with just test-suite could cause build to fail
(#2862) - If an invalid snapshot file has been detected (usually due to
mismatched hashes), Stack will delete the downloaded file and
recommend either retrying or filing an issue upstream. See
#3319. - Modified the flag parser within Stack to match the behavior of
Cabal's flag parser, which allows multiple sequential dashes. See
#3345 - Now clears the hackage index cache if it is older than the
downloaded index. Fixes potential issue if stack was interrupted when
updating index.
See #3033 - The Stack install script now respects the
-d
option.
See #3366. stack script
can now handle relative paths to source files.
See #3372.- Fixes explanation of why a target is needed by the build plan, when the
target is an extra dependency from the commandline.
See #3378. - Previously, if you delete a yaml file from ~/.stack/build-plan, it would
trust the etag and not re-download. Fixed in this version. - Invoking
stack --docker
in parallel now correctly locks the sqlite database.
See #3400. - docs.haskellstack.org RTD documentation search is replaced by the mkdocs
search. Please see
#3376. stack clean
now works with nix. See
#3468.stack build --only-dependencies
no longer builds local project packages
that are depended on. See
#3476.- Properly handle relative paths stored in the precompiled cache files. See
#3431. - In some cases, Cabal does not realize that it needs to reconfigure, and must
be told to do so automatically. This would manifest as a "shadowed
dependency" error message. We now force a reconfigure whenever a dependency is
built, even if the package ID remained the same. See
#2781.
v1.5.1
See https://haskellstack.org for installation and upgrade instructions.
Bug fixes:
- Stack eagerly tries to parse all cabal files related to a
snapshot. Starting with Stackage Nightly 2017-07-31, snapshots are
using GHC 8.2.1, and theghc.cabal
file implicitly referenced uses
the (not yet supported) Cabal 2.0 file format. Future releases of
Stack will both be less eager about cabal file parsing and support
Cabal 2.0. This patch simply bypasses the error for invalid parsing.
v1.5.0
See https://haskellstack.org for installation and upgrade instructions.
Behavior changes:
stack profile
andstack trace
now add their extra RTS arguments for
benchmarks and tests to the beginning of the args, instead of the end.
See #2399- Support for Git-based indices has been removed.
Other enhancements:
stack setup
allow to control options passed to ghcjs-boot with
--ghcjs-boot-options
(one word at a time) and--[no-]ghcjs-boot-clean
stack setup
now accepts a--install-cabal VERSION
option which
will install a specific version of the Cabal library globally.- Updates to store-0.4.1, which has improved performance and better error
reporting for version tags. A side-effect of this is that all of
stack's binary caches will be invalidated. stack solver
will now warn about unexpected cabal-install versions.
See #3044- Upstream packages unpacked to a temp dir are now deleted as soon as
possible to avoid running out of space in/tmp
.
See #3018 - Add short synonyms for
test-arguments
andbenchmark-arguments
options. - Adds
STACK_WORK
environment variable, to specify work dir.
See #3063 - Can now use relative paths for
extra-include-dirs
andextra-lib-dirs
.
See #2830 - Improved bash completion for many options, including
--ghc-options
,
--flag
, targets, and project executables forexec
. --haddock-arguments
is actually used now whenhaddock
is invoked
during documentation generation.--[no-]haddock-hyperlink-source
flag added which allows toggling
of sources being included in Haddock output.
See #3099stack ghci
will now skip building all local targets, even if they have
downstream deps, as long as it's registered in the DB.- The pvp-bounds feature now supports adding
-revision
to the end of
each value, e.g.pvp-bounds: both-revision
. This means that, when
uploading to Hackage, Stack will first upload your tarball with an
unmodified.cabal
file, and then upload a cabal file revision with
the PVP bounds added. This can be useful—especially combined
with the
Stackage no-revisions feature—as
a method to ensure PVP compliance without having to proactively fix
bounds issues for Stackage maintenance. - Expose a
save-hackage-creds
configuration option - On GHC <= 7.8, filters out spurious linker warnings on windows
See #3127 - Better error messages when creating or building packages which alias
wired-in packages. See
#3172. - MinGW bin folder now is searched for dynamic libraries. See #3126
- When using Nix, nix-shell now depends always on git to prevent runtime errors
while fetching metadata - The
stack unpack
command now accepts a form where an explicit
Hackage revision hash is specified, e.g.stack unpack foo-1.2.3@gitsha1:deadbeef
. Note that this should be considered
experimental, Stack will likely move towards a different hash
format in the future. - Binary "stack upgrade" will now warn if the installed executable is not
on the PATH or shadowed by another entry. - Allow running tests on tarball created by sdist and upload
#717.
Bug fixes:
- Fixes case where
stack build --profile
might not cause executables /
tests / benchmarks to be rebuilt.
See #2984 stack ghci file.hs
now loads the file even if it isn't part of
your project.stack clean --full
now works when docker is enabled.
See #2010- Fixes an issue where cyclic deps can cause benchmarks or tests to be run
before they are built.
See #2153 - Fixes
stack build --file-watch
in cases where a directory is removed
See #1838 - Fixes
stack dot
andstack list-dependencies
to use info from the
package database for wired-in-packages (ghc, base, etc).
See #3084 - Fixes
stack --docker build
when user is part of libvirt/libvirtd
groups on Ubuntu Yakkety (16.10).
See #3092 - Switching a package between extra-dep and local package now forces
rebuild (previously it wouldn't if versions were the same).
See #2147 stack upload
no longer reveals your password when you type it on
MinTTY-based Windows shells, such as Cygwin and MSYS2.
See #3142stack script
's import parser will now properly parse files that
have Windows-style line endings (CRLF)
Thanks to all our contributors for this release:
- Aayush Kapoor
- Albert Netymk
- Alexey Kuleshevich
- Anders Kaseorg
- Arash Rouhani
- Bryan Richter
- Dawei LIU
- Dmitry Nikulin
- Domen Kožar
- Emanuel Borsboom
- Felix Yan
- Ivan Lazar Miljenovic
- James Hamilton
- Luke Murphy
- Marcin Tolysz
- Martin Kolinek
- Mateusz Kowalczyk
- Michael Sloan
- Michael Snoyman
- Niklas Hambüchen
- Noah Doersing
- Omari Norman
- Paolo G. Giarrusso
- Peter Stuart
- Ryan Scott
- Sergey Vinokurov
- Sibi Prabakaran
- Tej Chajed
- Tim Dysinger
- Tomáš Janoušek
- Vassil Keremidchiev
v1.4.0
See https://haskellstack.org for installation and upgrade instructions.
Release notes:
- Docker images:
fpco/stack-full and
fpco/stack-run
are no longer being built for LTS 8.0 and above.
fpco/stack-build
images continue to be built with a
simplified process.
#624
Major changes:
- A new command,
script
, has been added, intended to make the script
interpreter workflow more reliable, easier to use, and more
efficient. This command forces the user to provide a--resolver
value, ignores all config files for more reproducible results, and
optimizes the existing package check to make the common case of all
packages already being present much faster. This mode does require
that all packages be present in a snapshot, however.
#2805
Behavior changes:
-
The default package metadata backend has been changed from Git to
the 01-index.tar.gz file, from the hackage-security project. This is
intended to address some download speed issues from Github for
people in certain geographic regions. There is now full support for
checking out specific cabal file revisions from downloaded tarballs
as well. If you manually specify a package index with only a Git
URL, Git will still be used. See
#2780 -
When you provide the
--resolver
argument to thestack unpack
command, any packages passed in by name only will be looked up in
the given snapshot instead of taking the latest version. For
example,stack --resolver lts-7.14 unpack mtl
will get version
2.2.1 ofmtl
, regardless of the latest version available in the
package indices. This will also force the same cabal file revision
to be used as is specified in the snapshot.Unpacking via a package identifier (e.g.
stack --resolver lts-7.14 unpack mtl-2.2.1
) will ignore any settings in the snapshot and take
the most recent revision.For backwards compatibility with tools relying on the presence of a
00-index.tar
, Stack will copy the01-index.tar
file to
00-index.tar
. Note, however, that these files are different; most
importantly, 00-index contains only the newest revisions of cabal
files, while 01-index contains all versions. You may still need to
update your tooling. -
Passing
--(no-)nix-*
options now no longer implies--nix
, except for
--nix-pure
, so that the user preference whether or not to use Nix is
honored even in the presence of options that change the Nix behavior.
Other enhancements:
- Internal cleanup: configuration types are now based much more on lenses
stack build
and related commands now allow the user to disable debug symbol stripping
with new--no-strip
,--no-library-stripping
, and--no-executable-shipping
flags,
closing #877.
Also turned error message for missing targets more readable (#2384)stack haddock
now shows index.html paths when documentation is already up to
date. Resolved #781- Respects the
custom-setup
field introduced in Cabal 1.24. This
supercedes anyexplicit-setup-deps
settings in yourstack.yaml
and trusts the package's.cabal
file to explicitly state all its
dependencies. - If system package installation fails,
get-stack.sh
will fail as well. Also
shows warning suggesting to runapt-get update
or similar, depending on the
OS.
(#2898) - When
stack ghci
is run with a config with no packages (e.g. global project),
it will now look for source files in the current work dir.
(#2878) - Bump to hpack 0.17.0 to allow
custom-setup
and!include "..."
inpackage.yaml
. - The script interpreter will now output error logging. In particular,
this means it will output info about plan construction errors.
(#2879) stack ghci
now takes--flag
and--ghc-options
again (inadverently
removed in 1.3.0).
(#2986)stack exec
now takes--rts-options
which passes the given arguments inside of
+RTS ... args .. -RTS
to the executable. This works around stack itself consuming
the RTS flags on Windows. (#2986)- Upgraded
http-client-tls
version, which now offers support for the
socks5://
andsocks5h://
values in thehttp_proxy
andhttps_proxy
environment variables.
Bug fixes:
- Bump to hpack 0.16.0 to avoid character encoding issues when reading and
writing on non-UTF8 systems. stack ghci
will no longer ignore hsSourceDirs that contain..
. (#2895)stack list-dependencies --license
now works for wired-in-packages,
like base. (#2871)stack setup
now correctly indicates when it uses system ghc
(#2963)- Fix to
stack config set
, in 1.3.2 it always applied to
the global project.
(#2709) - Previously, cabal files without exe or lib would fail on the "copy" step.
(#2862) stack upgrade --git
now works properly. Workaround for affected
versions (>= 1.3.0) is to instead runstack upgrade --git --source-only
.
(#2977)- Added support for GHC 8's slightly different warning format for
dumping warnings from logs. - Work around a bug in Cabal/GHC in which package IDs are not unique
for different source code, leading to Stack not always rebuilding
packages depending on local packages which have
changed. (#2904)
Thanks to all our contributors for this release:
- Aditya Siram
- Alexey Zabelin
- Alexis Williams
- Andreas Klebinger
- Dale Wijnand
- Echo Nolan
- Emanuel Borsboom
- Franz Thoma
- Giovanni
- Ian Sullivan
- Jens Petersen
- Justus Adam
- Luke Murphy
- Marcin Tolysz
- Matt Gambogi
- Michael Sloan
- Michael Snoyman
- Michiel Derhaeg
- Piotr Bogdan
- Randall Britten
- Ryan Scott
- Shlomo Zaks
- Simon Jakobi
- spikefoo
- Steven Syrek
- tallen-imvu
- Thomas Allen
- Tom Feron
- Tomas Janousek
- Tommaso Piazza
- Vincent Hanquez
- YPares
- Yuriy Syrovetskiy
- Yves Parès (Ywen)
v1.3.2
See https://haskellstack.org for installation and upgrade instructions.
This is a small bug fix release.
Bug fixes:
stack config set
can now be used without a compiler installed
#2852.get-stack.sh
now installs correct binary on ARM for generic linux and raspbian,
closing #2856.- Correct the testing of whether a package database exists by checking
for thepackage.cache
file itself instead of the containing
directory. - Revert a change in the previous release which made it impossible to
set local extra-dep packages as targets. This was overkill; we
really only wanted to disable their test suites, which was already
handled by a later
patch. #2849 stack new
always treats templates as being UTF-8 encoding,
ignoring locale settings on a local machine. See
Yesod mailing list discussion
Thanks to our contributors for this release:
- Alexander Kjeldaas
- Emanuel Borsboom
- Marcin Tolysz
- Michael Sloan
- Michael Snoyman
v1.3.0
See https://haskellstack.org for installation and upgrade instructions.
Release notes:
- For the next stack release after this one, we are planning
changes to our Linux releases, including dropping our Ubuntu,
Debian, CentOS, and Fedora package repositories and switching to
statically linked binaries. See
#2534.
Note that upgrading without a package manager has gotten easier
with new binary upgrade support instack upgrade
(see the Major
Changes section below for more information). In addition, the
get.haskellstack.org script no longer installs from Ubuntu,
Debian, CentOS, or Fedora package repositories. Instead it places
a generic binary in /usr/local/bin.
Major changes:
-
Stack will now always use its own GHC installation, even when a suitable GHC
installation is available on the PATH. To get the old behaviour, use
the--system-ghc
flag or runstack config set system-ghc --global true
.
Docker- and Nix-enabled projects continue to use the GHC installations
in their environment by default.NB: Scripts that previously used stack in combination with a system GHC
installation should now include astack setup
line or use the--install-ghc
flag.
#2221 -
stack ghci
now defaults to skipping the build of target packages, because
support has been added for invoking "initial build steps", which create
autogen files and run preprocessors. The--no-build
flag is now deprecated
because it should no longer be necessary. See
#1364 -
Stack is now capable of doing binary upgrades instead of always
recompiling a new version from source. Runningstack upgrade
will
now default to downloading a binary version of Stack from the most
recent release, if one is available. Seestack upgrade --help
for
more options.
#1238
Behavior changes:
- Passing
--resolver X
with a Stack command which forces creation of a global
project config, will pass resolver X into the initial config.
See #2579. - Switch the "Run from outside project" messages to debug-level, to
avoid spamming users in the normal case of non-project usage - If a remote package is specified (such as a Git repo) without an explicit
extra-dep
setting, a warning is given to the user to provide one
explicitly.
Other enhancements:
stack haddock
now supports--haddock-internal
. See
#2229- Add support for
system-ghc
andinstall-ghc
fields tostack config set
command. - Add
ghc-build
option to override autodetected GHC build to use (e.g. gmp4,
tinfo6, nopie) on Linux. stack setup
detects systems where gcc enables PIE by default (such as Ubuntu
16.10 and Hardened Gentoo) and adjusts the GHCconfigure
options accordingly.
#2542- Upload to Hackage with HTTP digest instead of HTTP basic.
- Make
stack list-dependencies
understand all of thestack dot
options too. - Add the ability for
stack list-dependencies
to list dependency licenses by
passing the--license
flag. - Dump logs that contain warnings for any local non-dependency packages
#2545 - Add the
dump-logs
config option and--dump-logs
command line
option to get full build output on the
console. #426 - Add the
--open
option to "stack hpc report" command, causing the report to
be opened in the browser. - The
stack config set
command now accepts a--global
flag for suitable fields
which causes it to modify the global user configuration (~/.stack/config.yaml
)
instead of the project configuration.
#2675 - Information on the latest available snapshots is now downloaded from S3 instead of
stackage.org, increasing reliability in case of stackage.org outages.
#2653 stack dot
andstack list-dependencies
now take targets and flags.
#1919- Deprecate
stack setup --stack-setup-yaml
for--setup-info-yaml
based
on discussion in #2647. - The
--main-is
flag for GHCI now implies the TARGET, fixing
#1845. stack ghci
no longer takes all build options, as many weren't useful
#2199--no-time-in-log
option, to make verbose logs more diffable
#2727--color
option added to override auto-detection of ANSI support
#2725- Missing extra-deps are now warned about, adding a degree of typo detection
#1521 - No longer warns about missing build-tools if they are on the PATH.
#2235 - Replace enclosed-exceptions with safe-exceptions.
#2768 - The install location for GHC and other programs can now be configured with the
local-programs-path
option inconfig.yaml
.
#1644 - Added option to add nix dependencies as nix GC roots
- Proper pid 1 (init) process for
stack exec
with Docker - Dump build logs if they contain warnings.
#2545 - Docker: redirect stdout of
docker pull
to stderr so that
it will not interfere with output of other commands. - Nix & docker can be activated at the same time, in order to run stack in a nix-shell
in a container, preferably from an image already containing the nix dependencies
in its /nix/store - Stack/nix: Dependencies can be added as nix GC roots, so they are not removed
when runningnix-collect-garbage
Bug fixes:
- Fixed a gnarly bug where programs and package tarballs sometimes have
corrupted downloads. See
#2657. - Add proper support for non-ASCII characters in file paths for the
sdist
command.
See #2549 - Never treat
extra-dep
local packages as targets. This ensures
things like test suites are not run for these packages, and that
build output is not hidden due to their presence. - Fix a resource leak in
sinkProcessStderrStdout
which could affect
much of the codebase, in particular copying precompiled
packages. #1979 - Docker: ensure that interrupted extraction process does not cause corrupt file
when downloading a Docker-compatible Stack executable
#2568 - Fixed running
stack hpc report
on package targets.
#2664 - Fix a long-standing performance regression where stack would parse the .dump-hi
files of the library components of local packages twice.
#2658 - Fixed a regression in "stack ghci --no-load", where it would prompt for a main
module to load. #2603 - Build Setup.hs files with the threaded RTS, mirroring the behavior of
cabal-install and enabling more complex build systems in those files. - Fixed a bug in passing along
--ghc-options
to ghcjs. They were being
provided as--ghc-options
to Cabal, when it needs to be--ghcjs-options
.
#2714 - Launch Docker from the project root regardless of the working
directory Stack is invoked from. This means paths relative to the project root
(e.g. environment files) can be specified instack.yaml
's dockerrun-args
. stack setup --reinstall
now behaves as expected.
#2554
Thanks to all our contributors for this release:
- Alexis Williams
- devlinzed
- Echo Nolan
- Emanuel Borsboom
- Eric Thomas
- Felix Yan
- Francesco Mazzoli
- Geoffrey Noel
- Gábor Lipták
- Harendra Kumar
- ickc
- Keshav Kini
- Luke Murphy
- Marcin Tolysz
- Michael Sloan
- Michael Snoyman
- mrkkrp
- osbugs
- Paolo G. Giarrusso
- Reuben D'Netto
- Robbin C
- Ruud van Asseldonk
- Sam Doshi
- Simon Jakobi
- Tomasz Lewowski
- U-CIQDEV
- bazerman
- whatsthepoint
- Yves Parès (Ywen)
v1.2.0
See https://haskellstack.org for installation and upgrade instructions.
Release notes:
-
On many Un*x systems, Stack can now be installed with a simple
one-liner:wget -qO- https://get.haskellstack.org/ | sh
-
The fix for
#2175
entails that stack must perform a full clone of a large Git repo of
Hackage meta-information. The total download size is about 200 MB.
Please be aware of this when upgrading your stack installation. -
If you use Mac OS X, you may want to delay upgrading to macOS Sierra as there
are reports of GHC panics when building some packages (including Stack
itself). See #2577 -
This version of Stack does not build on ARM or PowerPC systems (see
store#37). Please stay with
version 1.1.2 for now on those architectures. This will be rectified soon! -
We are now releasing a
statically linked Stack binary for 64-bit Linux.
Please try it and let us know if you run into any trouble on your platform. -
We are planning some changes to our Linux releases, including dropping our
Ubuntu, Debian, CentOS, and Fedora package repositories and switching to
statically linked binaries. We would value your feedback in
#2534.
Major changes:
- Add
stack hoogle
command.
#55 - Support for absolute file path in
url
field ofsetup-info
or--ghc-bindist
- Add support for rendering GHCi scripts targeting different GHCi like
applications
#2457
Behavior changes:
- Remove
stack ide start
andstack ide load-targets
commands.
#2178 - Support .buildinfo files in
stack ghci
.
#2242 - Support -ferror-spans syntax in GHC error messages.
- Avoid unpacking ghc to
/tmp
#996 - The Linux
gmp4
GHC bindist is no longer considered a full-fledged GHC
variant and can no longer be specified using theghc-variant
option,
and instead is treated more like a slightly different platform.
Other enhancements:
- Use the
store
package for binary serialization of most caches. - Only require minor version match for Docker stack exe.
This way, we can make patch releases for version bounds and similar
build issues without needing to upload new binaries for Docker. - Stack/Nix: Passes the right ghc derivation as an argument to the
shell.nix
when a
customshell.nix
is used
See #2243 - Stack/Nix: Sets
LD_LIBRARY_PATH
so packages using C libs for Template Haskell can work
(See e.g. this HaskellR issue) - Parse CLI arguments and configuration files into less permissive types,
improving error messages for bad inputs.
#2267 - Add the ability to explictly specify a gcc executable.
#593 - Nix: No longer uses LTS mirroring in nixpkgs. Gives to nix-shell a derivation
likehaskell.compiler.ghc801
See #2259 - Perform some subprocesses during setup concurrently, slightly speeding up most
commands. #2346 stack setup
no longer unpacks to the system temp dir on posix systems.
#996stack setup
detects libtinfo6 and ncurses6 and can download alternate GHC
bindists #257
#2302.stack setup
detects Linux ARMv7 downloads appropriate GHC bindist
#2103- Custom
stack
binaries list dependency versions in output for--version
.
See #2222
and #2450. - Use a pretty printer to output dependency resolution errors.
#1912 - Remove the
--os
flag
#2227 - Add 'netbase' and 'ca-certificates' as dependency for .deb packages.
#2293. - Add
stack ide targets
command. - Enhance debug logging with subprocess timings.
- Pretty-print YAML parse errors
#2374 - Clarify confusing
stack setup
output
#2314 - Delete
Stack.Types
multimodule to improve build times
#2405 - Remove spurious newlines in build logs
#2418 - Interpreter: Provide a way to hide implicit packages
#1208 - Check executability in exec lookup
#2489
Bug fixes:
- Fix cabal warning about use of a deprecated cabal flag
#2350 - Support most executable extensions on Windows
#2225 - Detect resolver change in
stack solver
#2252 - Fix a bug in docker image creation where the wrong base image was
selected
#2376 - Ignore special entries when unpacking tarballs
#2361 - Fixes src directory pollution of
style.css
andhighlight.js
with GHC 8's
haddock #2429 - Handle filepaths with spaces in
stack ghci
#2266 - Apply ghc-options to snapshot packages
#2289 - stack sdist: Fix timestamp in tarball
#2394 - Allow global Stack arguments with a script
#2316 - Inconsistency between ToJSON and FromJSON instances of PackageLocation
#2412 - Perform Unicode normalization on filepaths
#1810 - Solver: always keep ghc wired-in as hard constraints
#2453 - Support OpenBSD's tar where possible, require GNU tar for xz support
#2283 - Fix using --coverage with Cabal-1.24
#2424 - When marking exe installed, remove old version
#2373 - Stop truncating all-cabal-hashes git repo
#2175 - Handle non-ASCII filenames on Windows
#2491 - Avoid using multiple versions of a package in script interpreter
by passing package-id to ghc/runghc
#1957 - Only pre-load compiler version when using nix integration
#2459 - Solver: parse cabal errors also on Windows
#2502 - Allow exec and ghci commands in interpreter mode.
Scripts can now automatically open in the repl by usingexec ghci
instead ofrunghc
in the shebang command.
#2510 - Now consider a package to be dirty when an extra-source-file is changed.
See #2040
Thanks to all our contributors for this release:
- Aaron Friel
- Andrew Cowie
- AndrewRademacher
- Anton Felix Lorenzen
- Brian McKenna
- Chris Done
- Dan Aloni
- danald
- Daniel Casanueva
- Denis
- Denis Kasak
- Emanuel Borsboom
- erewok
- Gabor Greif
- Gurkenglas
- Harendra Kumar
- hesiod
- Judah Jacobson
- Khan Thompson
- Mathieu Boespflug
- Michael Sloan
- Michael Snoyman
- Mohit Agarwal
- Moritz Angermann
- Oleg Grenrus
- Paolo G. Giarrusso
- Philipp Kant
- Ryan Desfosses
- Sid Kapur
- Sidharth Kapur
- Simon Jakobi
- Tim Dysinger
- Tim Düsterhus
- Tobias Markus
- YPares
- Yuriy Syrovetskiy
- Yves Parès (Ywen)
-
v1.1.2
See haskellstack.org for installation and upgrade instructions.
Release notes:
- Official FreeBSD binaries are
now available
(#1253).
Major changes:
- Extensible custom snapshots implemented. These allow you to define snapshots
which extend other snapshots. See
#863. Local file custom
snapshots can now be safely updated without changing their name. Remote custom
snapshots should still be treated as immutable.
Behavior changes:
stack path --compiler
was added in the last release, to yield a path to the
compiler. Unfortunately,--compiler
is a global option that is useful to use
withstack path
. The same functionality is now provided bystack path --compiler-exe
. See
#2123- For packages specified in terms of a git or hg repo, the hash used in the
location has changed. This means that existing downloads from older stack
versions won't be used. This is a side-effect of the fix to
#2133 stack upgrade
no longer pays attention to local stack.yaml files, just the
global config and CLI options.
#1392stack ghci
now uses:add
instead of:load
, making it potentially work
better with user scripts. See
#1888
Other enhancements:
- Grab Cabal files via Git SHA to avoid regressions from Hackage revisions
#2070 - Custom snapshots now support
ghc-options
. - Package git repos are now re-used rather than re-cloned. See
#1620 DESTDIR
is filtered from environment when installing GHC. See
#1460stack haddock
now supports--hadock-arguments
. See
#2144- Signing: warn if GPG_TTY is not set as per
man gpg-agent
Bug fixes:
- Now ignore project config when doing
stack init
orstack new
. See
#2110 - Packages specified by git repo can now have submodules. See
#2133 - Fix of hackage index fetch retry. See re-opening of
#1418 - HPack now picks up changes to filesystem other than package.yaml. See
#2051 - "stack solver" no longer suggests --omit-packages. See
#2031 - Fixed an issue with building Cabal's Setup.hs. See
#1356 - Package dirtiness now pays attention to deleted files. See
#1841 stack ghci
now usesextra-lib-dirs
andextra-include-dirs
. See
#1656- Relative paths outside of source dir added via
qAddDependentFile
are now
checked for dirtiness. See
#1982 - Signing: always use
--with-fingerprints
Thanks to all our contributors for this release:
- Benno Fünfstück @bennofs
- Emanuel Borsboom @borsboom
- Levi Notik @levinotik
- Michael Sloan @mgsloan
- Michael Snoyman @snoyberg
- Oleg Grenrus @phadej
- Sebastian Graf @sgraf812
- Simon Jakobi @sjakobi
- Tim Dysinger @dysinger
- Yann Esposito @yogsototh
- Yuji Yamamoto @igrep
And thanks also to the 150+ contributors to past releases!