Changelog¶
1.3.2¶
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 the
package.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
1.3.0¶
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 in
stack 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 a
stack 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. Running
stack 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 running
nix-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 in
stack.yaml
's dockerrun-args
. stack setup --reinstall
now behaves as expected. #2554
1.2.0¶
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
like
haskell.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 using
exec ghci
instead ofrunghc
in the shebang command. #2510 - Now consider a package to be dirty when an extra-source-file is changed. See #2040
1.1.2¶
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
1.1.0¶
Release notes:
- Added Ubuntu 16.04 LTS (xenial) Apt repo.
- No longer uploading new versions to Fedora 21 repo.
Behavior changes:
- Snapshot packages are no longer built with executable profiling. See #1179.
stack init
now ignores symlinks when searching for cabal files. It also now ignores any directory that begins with.
(as well asdist
dirs) - before it would only ignore.git
,.stack-work
, anddist
.- The stack executable is no longer built with
-rtsopts
. Before, when-rtsopts
was enabled, stack would process+RTS
options even when intended for some other program, such as when used withstack exec -- prog +RTS
. See #2022. - The
stack path --ghc-paths
option is deprecated and renamed to--programs
.--compiler
is added, which points directly at the compiler used in the current project.--compiler-bin
points to the compiler's bin dir. - For consistency with the
$STACK_ROOT
environment variable, thestack path --global-stack-root
flag and theglobal-stack-root
field in the output ofstack path
are being deprecated and replaced with thestack-root
flag and output field. Additionally, the stack root can now be specified via the--stack-root
command-line flag. See #1148. stack sig
GPG-related sub-commands were removed (folded intoupload
andsdist
)- GPG signing of packages while uploading to Hackage is now the default. Use
upload --no-signature
if you would rather not contribute your package signature. If you don't yet have a GPG keyset, read this blog post on GPG keys. We can add a stack.yaml config setting to disable signing if some people desire it. We hope that people will sign. Later we will be adding GPG signature verification options. stack build pkg-1.2.3
will now build even if the snapshot has a different package version - it is treated as an extra-dep.stack build local-pkg-1.2.3
is an error even if the version number matches the local package #2028.- Having a
nix:
section no longer implies enabling nix build. This allows the user to globally configure whether nix is used (unless the project overrides the default explicitly). See #1924. - Remove deprecated valid-wanted field.
- Docker: mount home directory in container #1949.
- Deprecate
--local-bin-path
instead--local-bin
. stack image
: allow absolute source paths foradd
.
Other enhancements:
stack haddock --open [PACKAGE]
opens the local haddocks in the browser.- Fix too much rebuilding when enabling/disabling profiling flags.
stack build pkg-1.0
will now buildpkg-1.0
even if the snapshot specifies a different version (it introduces a temporary extra-dep)- Experimental support for
--split-objs
added #1284. git
packages with submodules are supported by passing the--recursive
flag togit clone
.- When using hpack, only regenerate cabal files when hpack files change.
- hpack files can now be used in templates
stack ghci
now runs ghci as a separate process #1306- Retry when downloading snapshots and package indices
- Many build options are configurable now in
stack.yaml
:
build:
library-profiling: true
executable-profiling: true
haddock: true
haddock-deps: true
copy-bins: true
prefetch: true
force-dirty: true
keep-going: true
test: true
test-arguments:
rerun-tests: true
additional-args: ['-fprof']
coverage: true
no-run-tests: true
bench: true
benchmark-opts:
benchmark-arguments: -O2
no-run-benchmarks: true
reconfigure: true
cabal-verbose: true
- A number of URLs are now configurable, useful for firewalls. See #1794.
- Suggest causes when executables are missing.
- Allow
--omit-packages
even without--solver
. - Improve the generated stack.yaml.
- Improve ghci results after :load Main module collision with main file path.
- Only load the hackage index if necessary #1883, #1892.
- init: allow local packages to be deps of deps #1965.
- Always use full fingerprints from GPG #1952.
- Default to using
gpg2
and fall back togpg
#1976. - Add a flag for --verbosity silent.
- Add
haddock --open
flag #1396.
Bug fixes:
- Package tarballs would fail to unpack. #1884.
- Fixed errant warnings about missing modules, after deleted and removed from cabal file #921 #1805.
- Now considers a package to dirty when the hpack file is changed #1819.
- Nix: cancelling a stack build now exits properly rather than dropping into a nix-shell #1778.
allow-newer: true
now causes--exact-configuration
to be passed to Cabal. See #1579.stack solver
no longer fails withInvalidRelFile
for relative package paths including..
. See #1954.- Ignore emacs lock files when finding .cabal #1897.
- Use lenient UTF-8 decode for build output #1945.
- Clear index cache whenever index updated #1962.
- Fix: Building a container image drops a .stack-work dir in the current working (sub)directory #1975.
- Fix: Rebuilding when disabling profiling #2023.
1.0.4.3¶
Bug fixes:
- Don't delete contents of ~/.ssh when using
stack clean --full
with Docker enabled #2000
1.0.4.2¶
Build with path-io-1.0.0. There are no changes in behaviour from 1.0.4, so no binaries are released for this version.
1.0.4.1¶
Fixes build with aeson-0.11.0.0. There are no changes in behaviour from 1.0.4, so no binaries are released for this version.
1.0.4¶
Major changes:
- Some notable changes in
stack init
:- Overall it should now be able to initialize almost all existing cabal packages out of the box as long as the package itself is consistently defined.
- Choose the best possible snapshot and add extra dependencies on top of a snapshot resolver rather than a compiler resolver - #1583
- Automatically omit a package (
--omit-packages
) when it is compiler incompatible or when there are packages with conflicting dependency requirements - #1674. - Some more changes for a better user experience. Please refer to the doc guide for details.
- Add support for hpack, alternative package description format #1679
Other enhancements:
- Docker: pass ~/.ssh and SSH auth socket into container, so that git repos work #1358.
- Docker: strip suffix from docker --version. #1653
- Docker: pass USER and PWD environment variables into container.
- On each run, stack will test the stack root directory (~/.stack), and the
project and package work directories (.stack-work) for whether they are
owned by the current user and abort if they are not. This precaution can
be disabled with the
--allow-different-user
flag orallow-different-user
option in the global config (~/.stack/config.yaml). #471 - Added
stack clean --full
option for full working dir cleanup. - YAML config: support Zip archives.
- Redownload build plan if parsing fails #1702.
- Give mustache templates access to a 'year' tag #1716.
- Have "stack ghci" warn about module name aliasing.
- Add "stack ghci --load-local-deps".
- Build Setup.hs with -rtsopts #1687.
stack init
accepts a list of directories.- Add flag infos to DependencyPlanFailures (for better error output in case of flags) #713
stack new --bare
complains for overwrites, and add--force
option #1597.
Bug fixes:
- Previously,
stack ghci
would fail withcannot satisfy -package-id
when the implicit build step changes the package key of some dependency. - Fix: Building with ghcjs: "ghc-pkg: Prelude.chr: bad argument: 2980338" #1665.
- Fix running test / bench with
--profile
/--trace
. - Fix: build progress counter is no longer visible #1685.
- Use "-RTS" w/ profiling to allow extra args #1772.
- Fix withUnpackedTarball7z to find name of srcDir after unpacking
(fixes
stack setup
fails for ghcjs project on windows) #1774. - Add space before auto-generated bench opts (makes profiling options work uniformly for applications and benchmark suites) #1771.
- Don't try to find plugin if it resembles flag.
- Setup.hs changes cause package dirtiness #1711.
- Send "stack templates" output to stdout #1792.
1.0.2¶
Release notes:
- Arch Linux: Stack has been adopted into the official community repository, so we will no longer be updating the AUR with new versions. See the install/upgrade guide for current download instructions.
Major changes:
stack init
andsolver
overhaul #1583
Other enhancements:
- Disable locale/codepage hacks when GHC >=7.10.3 #1552
- Specify multiple images to build for
stack image container
docs - Specify which executables to include in images for
stack image container
docs - Docker: pass supplemantary groups and umask into container
- If git fetch fails wipe the directory and try again from scratch #1418
- Warn if newly installed executables won't be available on the PATH #1362
- stack.yaml: for
stack image container
, specify multiple images to generate, and which executables should be added to those images - GHCI: add interactive Main selection #1068
- Care less about the particular name of a GHCJS sdist folder #1622
- Unified Enable/disable help messaging #1613
Bug fixes:
- Don't share precompiled packages between GHC/platform variants and Docker #1551
- Properly redownload corrupted downloads with the correct file size. Mailing list discussion
- Gracefully handle invalid paths in error/warning messages #1561
- Nix: select the correct GHC version corresponding to the snapshot
even when an abstract resolver is passed via
--resolver
on the command-line. #1641 - Fix: Stack does not allow using an external package from ghci #1557
- Disable ambiguous global '--resolver' option for 'stack init' #1531
- Obey
--no-nix
flag - Fix: GHCJS Execute.hs: Non-exhaustive patterns in lambda #1591
- Send file-watch and sticky logger messages to stderr #1302 #1635
- Use globaldb path for querying Cabal version #1647
1.0.0¶
Release notes:
- We're calling this version 1.0.0 in preparation for Stackage LTS 4. Note, however, that this does not mean the code's API will be stable as this is primarily an end-user tool.
Enhancements:
- Added flag
--profile
flag: passed withstack build
, it will enable profiling, and for--bench
and--test
it will generate a profiling report by passing+RTS -p
to the executable(s). Great for using likestack build --bench --profile
(remember that enabling profile will slow down your benchmarks by >4x). Runstack build --bench
again to disable the profiling and get proper speeds - Added flag
--trace
flag: just like--profile
, it enables profiling, but instead of generating a report for--bench
and--test
, prints out a stack trace on exception. Great for using likestack build --test --trace
- Nix: all options can be overriden on command line #1483
- Nix: build environments (shells) are now pure by default.
- Make verbosity silent by default in script interpreter mode #1472
- Show a message when resetting git commit fails #1453
- Improve Unicode handling in project/package names #1337
- Fix ambiguity between a stack command and a filename to execute (prefer
stack
subcommands) #1471 - Support multi line interpreter directive comments #1394
- Handle space separated pids in ghc-pkg dump (for GHC HEAD) #1509
- Add ghci --no-package-hiding option #1517
stack new
can download templates from URL #1466
Bug fixes:
- Nix: stack exec options are passed properly to the stack sub process #1538
- Nix: specifying a shell-file works in any current working directory #1547
- Nix: use
--resolver
argument - Docker: fix missing image message and '--docker-auto-pull'
- No HTML escaping for "stack new" template params #1475
- Set permissions for generated .ghci script #1480
- Restrict commands allowed in interpreter mode #1504
- stack ghci doesn't see preprocessed files for executables #1347
- All test suites run even when only one is requested #1550
- Edge cases in broken templates give odd errors #1535
- Fix test coverage bug on windows
0.1.10.1¶
Bug fixes:
stack image container
did not actually build an image #1473
0.1.10.0¶
Release notes:
- The Stack home page is now at haskellstack.org, which shows the documentation rendered by readthedocs.org. Note: this has necessitated some changes to the links in the documentation's markdown source code, so please check the links on the website before submitting a PR to fix them.
- The locations of the
Ubuntu
and
Debian
package repositories have changed to have correct URL semantics according to
Debian's guidelines
#1378. The old
locations will continue to work for some months, but we suggest that you
adjust your
/etc/apt/sources.list.d/fpco.list
to the new location to avoid future disruption. - openSUSE and SUSE Linux Enterprise packages are now available, thanks to @mimi1vx. Note: there will be some lag before these pick up new versions, as they are based on Stackage LTS.
Major changes:
- Support for building inside a Nix-shell providing system dependencies #1285
- Add optional GPG signing on
stack upload --sign
or withstack sig sign ...
Other enhancements:
- Print latest applicable version of packages on conflicts #508
- Support for packages located in Mercurial repositories #1397
- Only run benchmarks specified as build targets #1412
- Support git-style executable fall-through (
stack something
executesstack-something
if present) #1433 - GHCi now loads intermediate dependencies #584
--work-dir
option for overriding.stack-work
#1178- Support
detailed-0.9
tests #1429 - Docker: improved POSIX signal proxying to containers #547
Bug fixes:
- Show absolute paths in error messages in multi-package builds #1348
- Docker-built binaries and libraries in different path #911 #1367
- Docker:
--resolver
argument didn't effect selected image tag - GHCi: Spaces in filepaths caused module loading issues #1401
- GHCi: cpp-options in cabal files weren't used #1419
- Benchmarks couldn't be run independently of eachother #1412
- Send output of building setup to stderr #1410
0.1.8.0¶
Major changes:
- GHCJS can now be used with stackage snapshots via the new
compiler
field. - Windows installers are now available: download them here #613
- Docker integration works with non-FPComplete generated images #531
Other enhancements:
- Added an
allow-newer
config option #922 #770 - When a Hackage revision invalidates a build plan in a snapshot, trust the snapshot #770
- Added a
stack config set resolver RESOLVER
command. Part of work on #115 stack setup
can now install GHCJS on windows. See #1145 and #749stack hpc report
command added, which generates reports for HPC tix filesstack ghci
now accepts all the flags accepted bystack build
. See #1186stack ghci
builds the project before launching GHCi. If the build fails, optimistically launch GHCi anyway. Usestack ghci --no-build
option to disable #1065stack ghci
now detects and warns about various circumstances where it is liable to fail. See #1270- Added
require-docker-version
configuration option - Packages will now usually be built along with their tests and benchmarks. See #1166
- Relative
local-bin-path
paths will be relative to the project's root directory, not the current working directory. #1340 stack clean
now takes an optional[PACKAGE]
argument for use in multi-package projects. See #583- Ignore cabal_macros.h as a dependency #1195
- Pad timestamps and show local time in --verbose output #1226
- GHCi: Import all modules after loading them #995
- Add subcommand aliases:
repl
forghci
, andrunhaskell
forrunghc
#1241 - Add typo recommendations for unknown package identifiers #158
- Add
stack path --local-hpc-root
option - Overhaul dependencies' haddocks copying #1231
- Support for extra-package-dbs in 'stack ghci' #1229
stack new
disallows package names with "words" consisting solely of numbers #1336stack build --fast
turns off optimizations- Show progress while downloading package index #1223.
Bug fixes:
- Fix: Haddocks not copied for dependencies #1105
- Fix: Global options did not work consistently after subcommand #519
- Fix: 'stack ghci' doesn't notice that a module got deleted #1180
- Rebuild when cabal file is changed
- Fix: Paths in GHC warnings not canonicalized, nor those for packages in subdirectories or outside the project root #1259
- Fix: unlisted files in tests and benchmarks trigger extraneous second build #838
0.1.6.0¶
Major changes:
stack setup
now supports building and booting GHCJS from source tarball.- On Windows, build directories no longer display "pretty" information (like x86_64-windows/Cabal-1.22.4.0), but rather a hash of that content. The reason is to avoid the 260 character path limitation on Windows. See #1027
- Rename config files and clarify their purposes #969
~/.stack/stack.yaml
-->~/.stack/config.yaml
~/.stack/global
-->~/.stack/global-project
/etc/stack/config
-->/etc/stack/config.yaml
- Old locations still supported, with deprecation warnings
- New command "stack eval CODE", which evaluates to "stack exec ghc -- -e CODE".
Other enhancements:
- No longer install
git
on Windows #1046. You can still get this behavior by running the following yourself:stack exec -- pacman -Sy --noconfirm git
. - Typing enter during --file-watch triggers a rebuild #1023
- Use Haddock's
--hyperlinked-source
(crosslinked source), if available #1070 - Use Stack-installed GHCs for
stack init --solver
#1072 - New experimental
stack query
command #1087 - By default, stack no longer rebuilds a package due to GHC options changes. This behavior can be tweaked with the
rebuild-ghc-options
setting. #1089 - By default, ghc-options are applied to all local packages, not just targets. This behavior can be tweaked with the
apply-ghc-options
setting. #1089 - Docker: download or override location of stack executable to re-run in container #974
- Docker: when Docker Engine is remote, don't run containerized processes as host's UID/GID #194
- Docker:
set-user
option to enable/disable running containerized processes as host's UID/GID #194 - Custom Setup.hs files are now precompiled instead of interpreted. This should be a major performance win for certain edge cases (biggest example: building Cabal itself) while being either neutral or a minor slowdown for more common cases.
stack test --coverage
now also generates a unified coverage report for multiple test-suites / packages. In the unified report, test-suites can contribute to the coverage of other packages.
Bug fixes:
- Ignore stack-built executables named
ghc
#1052 - Fix quoting of output failed command line arguments
- Mark executable-only packages as installed when copied from cache #1043
- Canonicalize temporary directory paths #1047
- Put code page fix inside the build function itself #1066
- Add
explicit-setup-deps
option #1110, and change the default to the old behavior of using any package in the global and snapshot database #1025 - Precompiled cache checks full package IDs on Cabal < 1.22 #1103
- Pass -package-id to ghci #867
- Ignore global packages when copying precompiled packages #1146
0.1.5.0¶
Major changes:
- On Windows, we now use a full MSYS2 installation in place of the previous PortableGit. This gives you access to the pacman package manager for more easily installing libraries.
- Support for custom GHC binary distributions #530
ghc-variant
option in stack.yaml to specify the variant (also--ghc-variant
command-line option)setup-info
in stack.yaml, to specify where to download custom binary distributions (also--ghc-bindist
command-line option)- Note: On systems with libgmp4 (aka
libgmp.so.3
), such as CentOS 6, you may need to re-runstack setup
due to the centos6 GHC bindist being treated like a variant
- A new
--pvp-bounds
flag to the sdist and upload commands allows automatic adding of PVP upper and/or lower bounds to your dependencies
Other enhancements:
- Adapt to upcoming Cabal installed package identifier format change #851
stack setup
takes a--stack-setup-yaml
argument--file-watch
is more discerning about which files to rebuild for #912stack path
now supports--global-pkg-db
and--ghc-package-path
--reconfigure
flag #914 #946- Cached data is written with a checksum of its structure #889
- Fully removed
--optimizations
flag - Added
--cabal-verbose
flag - Added
--file-watch-poll
flag for polling instead of using filesystem events (useful for running tests in a Docker container while modifying code in the host environment. When code is injected into the container via a volume, the container won't propagate filesystem events). - Give a preemptive error message when
-prof
is given as a GHC option #1015 - Locking is now optional, and will be turned on by setting the
STACK_LOCK
environment variable totrue
#950 - Create default stack.yaml with documentation comments and commented out options #226
- Out of memory warning if Cabal exits with -9 #947
Bug fixes:
- Hacky workaround for optparse-applicative issue with
stack exec --help
#806 - Build executables for local extra deps #920
- copyFile can't handle directories #942
- Support for spaces in Haddock interface files fpco/minghc#85
- Temporarily building against a "shadowing" local package? #992
- Fix Setup.exe name for --upgrade-cabal on Windows #1002
- Unlisted dependencies no longer trigger extraneous second build #838
0.1.4.1¶
Fix stack's own Haddocks. No changes to functionality (only comments updated).
0.1.4.0¶
Major changes:
- You now have more control over how GHC versions are matched, e.g. "use exactly this version," "use the specified minor version, but allow patches," or "use the given minor version or any later minor in the given major release." The default has switched from allowing newer later minor versions to a specific minor version allowing patches. For more information, see #736 and #784.
- Support added for compiling with GHCJS
- stack can now reuse prebuilt binaries between snapshots. That means that, if you build package foo in LTS-3.1, that binary version can be reused in LTS-3.2, assuming it uses the same dependencies and flags. #878
Other enhancements:
- Added the
--docker-env
argument, to set environment variables in Docker container. - Set locale environment variables to UTF-8 encoding for builds to avoid "commitBuffer: invalid argument" errors from GHC #793
- Enable translitation for encoding on stdout and stderr #824
- By default,
stack upgrade
automatically installs GHC as necessary #797 - Added the
ghc-options
field to stack.yaml #796 - Added the
extra-path
field to stack.yaml - Code page changes on Windows only apply to the build command (and its synonyms), and can be controlled via a command line flag (still defaults to on) #757
- Implicitly add packages to extra-deps when a flag for them is set #807
- Use a precompiled Setup.hs for simple build types #801
- Set --enable-tests and --enable-benchmarks optimistically #805
--only-configure
option added #820- Check for duplicate local package names
- Stop nagging people that call
stack test
#845 --file-watch
will ignore files that are in your VCS boring/ignore files #703- Add
--numeric-version
option
Bug fixes:
stack init --solver
fails ifGHC_PACKAGE_PATH
is present #860stack solver
andstack init --solver
check for test suite and benchmark dependencies #862- More intelligent logic for setting UTF-8 locale environment variables #856
- Create missing directories for
stack sdist
- Don't ignore .cabal files with extra periods #895
- Deprecate unused
--optimizations
flag - Truncated output on slow terminals #413
0.1.3.1¶
Bug fixes:
- Ignore disabled executables #763
0.1.3.0¶
Major changes:
- Detect when a module is compiled but not listed in the cabal file (#32)
- A warning is displayed for any modules that should be added to
other-modules
in the .cabal file - These modules are taken into account when determining whether a package needs to be built
- A warning is displayed for any modules that should be added to
- Respect TemplateHaskell addDependentFile dependency changes (#105)
- TH dependent files are taken into account when determining whether a package needs to be built.
- Overhauled target parsing, added
--test
and--bench
options #651- For details, see Build commands documentation
Other enhancements:
- Set the
HASKELL_DIST_DIR
environment variable #524 - Track build status of tests and benchmarks #525
--no-run-tests
#517- Targets outside of root dir don't build #366
- Upper limit on number of flag combinations to test #543
- Fuzzy matching support to give better error messages for close version numbers #504
--local-bin-path
global option. Use to change where binaries get placed on a--copy-bins
#342- Custom snapshots #111
- --force-dirty flag: Force treating all local packages as having dirty files (useful for cases where stack can't detect a file change)
- GHC error messages: display file paths as absolute instead of relative for better editor integration
- Add the
--copy-bins
option #569 - Give warnings on unexpected config keys #48
- Remove Docker
pass-host
option - Don't require cabal-install to upload #313
- Generate indexes for all deps and all installed snapshot packages #143
- Provide
--resolver global
option #645- Also supports
--resolver nightly
,--resolver lts
, and--resolver lts-X
- Also supports
- Make
stack build --flag
error when flag or package is unknown #617 - Preserve file permissions when unpacking sources #666
stack build
etc work outside of a projectlist-dependencies
command #638--upgrade-cabal
option tostack setup
#174--exec
option #651--only-dependencies
implemented correctly #387
Bug fixes:
- Extensions from the
other-extensions
field no longer enabled by default #449 - Fix: haddock forces rebuild of empty packages #452
- Don't copy over executables excluded by component selection #605
- Fix: stack fails on Windows with git package in stack.yaml and no git binary on path #712
- Fixed GHCi issue: Specifying explicit package versions (#678)
- Fixed GHCi issue: Specifying -odir and -hidir as .stack-work/odir (#529)
- Fixed GHCi issue: Specifying A instead of A.ext for modules (#498)
0.1.2.0¶
- Add
--prune
flag tostack dot
#487 - Add
--[no-]external
,--[no-]include-base
flags tostack dot
#437 - Add
--ignore-subdirs
flag to init command #435 - Handle attempt to use non-existing resolver #436
- Add
--force
flag toinit
command - exec style commands accept the
--package
option (see Reddit discussion) stack upload
without arguments doesn't do anything #439- Print latest version of packages on conflicts #450
- Flag to avoid rerunning tests that haven't changed #451
- stack can act as a script interpreter (see [Script interpreter] (https://github.com/commercialhaskell/stack/wiki/Script-interpreter) and Reddit discussion)
- Add the
--file-watch
flag to auto-rebuild on file changes #113 - Rename
stack docker exec
tostack exec --plain
- Add the
--skip-msys
flag #377 --keep-going
, turned on by default for tests and benchmarks #478concurrent-tests: BOOL
#492- Use hashes to check file dirtiness #502
- Install correct GHC build on systems with libgmp.so.3 #465
stack upgrade
checks version before upgrading #447
0.1.1.0¶
- Remove GHC uncompressed tar file after installation #376
- Put stackage snapshots JSON on S3 #380
- Specifying flags for multiple packages #335
- single test suite failure should show entire log #388
- valid-wanted is a confusing option name #386
- stack init in multi-package project should use local packages for dependency checking #384
- Display information on why a snapshot was rejected #381
- Give a reason for unregistering packages #389
stack exec
accepts the--no-ghc-package-path
parameter- Don't require build plan to upload #400
- Specifying test components only builds/runs those tests #398
STACK_EXE
environment variable- Add the
stack dot
command stack upgrade
added #237--stack-yaml
command line flag #378--skip-ghc-check
command line flag #423
Bug fixes:
- Haddock links to global packages no longer broken on Windows #375
- Make flags case-insensitive #397
- Mark packages uninstalled before rebuilding #365
0.1.0.0¶
- Fall back to cabal dependency solver when a snapshot can't be found
- Basic implementation of
stack new
#137 stack solver
command #364stack path
command #95- Haddocks #143:
- Build for dependencies
- Use relative links
- Generate module contents and index for all packages in project
0.0.3¶
--prefetch
#297upload
command ported from stackage-upload #225--only-snapshot
#310--resolver
#224stack init
#253--extra-include-dirs
and--extra-lib-dirs
#333- Specify intra-package target #201
0.0.2¶
- Fix some Windows specific bugs #216
- Improve output for package index updates #227
- Automatically update indices as necessary #227
- --verbose flag #217
- Remove packages (HTTPS and Git) #199
- Config values for system-ghc and install-ghc
- Merge
stack deps
functionality intostack build
install
command #153 and #272- overriding architecture value (useful to force 64-bit GHC on Windows, for example)
- Overhauled test running (allows cycles, avoids unnecessary recompilation, etc)
0.0.1¶
- First public release, beta quality