- Fixed: elm-tooling now works with curl 8.6.0 (#128).
ℹ️ If you use macOS ARM (Apple Silicon) and have used
elm-tooling
1.11.0–1.14.1 before, you need to clear previously downloaded binaries in order to get the newest macOS ARM binary. Otherwise you’ll keep using the one from 1.11.0.# Remove downloaded binaries: rm -R ~/.elm/elm-tooling/elm/0.19.1/ # Install new binaries: cd your-project npx elm-tooling install
- Changed: Different macOS ARM (Apple Silicon) binary for elm 0.19.1.
The previous macOS ARM binary could sometimes segfault while installing Elm packages. This was fixed by Evan upgrading the Elm compiler to a newer GHC version. He then uploaded a macOS ARM binary to official Elm 0.19.1 release. This version of elm-tooling
downloads a copy of that binary.
- Fixed: The TypeScript type definitions shipped in the npm package are now more correct. Previously they used
export default
, but apparentlyexport =
is the correct syntax to use for packages that export a single function, which can be used both in CJS and MJS. (Read more about Incorrect default export). It should now be possible to doconst elmToolingCli = require("elm-tooling")
in a@ts-checked
ed JS file without TypeScript complaining.
- Added: elm-format 0.8.7.
- Fixed: elm-format 0.8.6 now works on Windows.
Note: This version has been deprecated, since it contains a broken elm-format 0.8.6 Windows binary link. Use 1.13.1 or later instead.
- Added: elm-format 0.8.6.
ℹ️ If you use macOS ARM (Apple Silicon) and have used
elm-tooling
1.11.0 before, you need to clear previously downloaded binaries in order to get the newest macOS ARM binary. Otherwise you’ll keep using the one from 1.11.0.# Remove downloaded binaries: rm -R ~/.elm/elm-tooling/elm/0.19.1/ # Install new binaries: cd your-project npx elm-tooling install
- Changed: Different macOS ARM (Apple Silicon) binary for elm 0.19.1.
- Changed: Different Linux ARM 64-bit binary for elm 0.19.1.
Why replace the ARM 64 binaries? The ones in this release are compiled from the same commit as the official x86_64 binaries. The ones in 1.11.0 were compiled from a later commit.
The ones in 1.11.0 still work, but can result in surprises. There are some unreleased Elm compiler commits that result in ever so slightly different compiled JavaScript. Many build systems hash outputs for cache busting. If you run a binary compiled from a later commit locally but an official one on a build server, you might be confused why you get different hashes locally and on the build server for example. There’s also a risk that something compiles on your local computer, but not on the build server, or someone else’s computer (who doesn’t use ARM 64).
Thanks to Mario Rogic for compiling the binaries!
ℹ️ If you use macOS ARM (Apple Silicon) and have used
elm-tooling
before, you need to clear previously downloaded binaries in order to get macOS ARM binaries. Otherwise you’ll keep using Rosetta.# Remove downloaded binaries: rm -R ~/.elm/elm-tooling/ # Install new binaries: cd your-project npx elm-tooling installSimilarly, if you have tried
elm-tooling
on Linux ARM before, you also need to clear previously downloaded, non-working x86_64 binaries.
- Added: macOS ARM (Apple Silicon) binary for elm 0.19.1. Thanks to Mario Rogic for compiling it!
- Added: Linux ARM 64-bit binary for elm 0.19.1. Thanks to Mario Rogic for compiling it!
- Added: Linux ARM 32-bit binary (Raspberry Pi) for elm 0.19.1. Thanks to dmy for compiling it!
- Added: Linux ARM 32-bit binary (Raspberry Pi) for elm-format 0.8.2. Thanks to dmy for compiling it!
- Added: Linux ARM binaries for all elm-json versions, that work on both 64-bit and 32-bit platforms.
- Added: macOS ARM (Apple Silicon) binaries for elm-json 0.2.10 and 0.2.13.
- Added: macOS ARM (Apple Silicon) binaries for all elm-test-rs versions.
- Added: Linux ARM 64-bit binaries for all elm-test-rs versions except 1.0.0.
- Added: Linux ARM 32-bit binaries for all elm-test-rs versions except 1.0.0.
- Changed:
elm-tooling
can now be run on any platform. (Previously it exited early on unsupported platforms.) - Changed:
elm-tooling install
prints a message for tools that have no binary for the current platform. (It does not fail the command.)
- Added: elm-json 0.2.13.
- Added: elm-test-rs 3.0.0.
- Added: elm-test-rs 2.0.1.
- Added: elm-test-rs 2.0.0.
- Removed:
elm-tooling init
no longer creates"entrypoints"
in elm-tooling.json. The Elm Language Server no longer needs it, and that was the only tool using it."entrypoints"
has also been removed from the spec. - Removed: the
elm-tooling validate
command. Since"entrypoints"
was removed, the only remaining field is"tools"
. Ifelm-tooling install
succeeds your elm-tooling.json is valid, so there’s no need for theelm-tooling validate
command anymore. The spec explains why it won’t be needed in the future either. Note: To avoid a breaking change,elm-tooling validate
is now a hidden command that always exits with code 0, keeping the same API as before. (The human readable output is different – it’s now just a message saying that thevalidate
command no longer exists.)
- Added: elm-test-rs 1.2.2.
- Added: elm-test-rs 1.2.1.
- Fixed: The package build improvements in 1.4.0 accidentally broke the package exports. (
exports['default'] = elmToolingCli;
was shipped instead of the correctmodule.exports = elmToolingCli;
.) This is fixed in 1.4.1, and I’ve added a regression test so it won’t happen again.
🚨 Note: The package exports of this version are broken, so this version is deprecated. Update to 1.4.1.
-
Fixed: Some people configure
curl
to output an extra newline. The wayelm-tooling
usescurl
, that results in an extra newline added to downloaded executables. While an extra newline doesn’t seem to break executables, it failselm-tooling
’s SHA256 verification, causingelm-tooling
to abort with an error message like this:elm 0.19.1 < https://github.com/elm/compiler/releases/download/0.19.1/binary-for-linux-64-bit.gz > /home/you/.elm/elm-tooling/elm/0.19.1/elm The downloaded file does not have the expected hash! Expected: e44af52bb27f725a973478e589d990a6428e115fe1bb14f03833134d6c0f155c Actual: e8b796172746fc7e2cd4edfd2e5a72d49ae38ddd89624caf16c6fa7226cb43c3
It’s usually a good thing that the user’s
curl
config file (~/.curlrc
) is respected, because it allows people to configure a proxy. But in this case it’s bad.To solve this problem,
elm-tooling
now overrides the option (-w
,--write-out
) that lets you add a newline (or anything, really) to the output. Thanks to Zach Rose (@windmountain) for reporting initially, and to Jakub Waszczuk (@kawu) and Tomáš Látal (kraklin) for re-reporting and figuring out what the problem was! -
Improved: If something like the above happens in the future, the error message is better:
elm 0.19.1 < https://github.com/elm/compiler/releases/download/0.19.1/binary-for-linux-64-bit.gz > /home/you/.elm/elm-tooling/elm/0.19.1/elm The downloaded file does not have the expected number of bytes! Expected: 6034617 Actual: 6034616 - Probably, something in your environment messes with the download. - Worst case, someone has replaced the executable with something malicious! This happened when executing: curl -#fLw "" https://github.com/elm/compiler/releases/download/0.19.1/binary-for-mac-64-bit.gz Do you have a config file or environment variables set for curl?
There are a number of improvements here:
elm-tooling
now not only verifies the SHA256 hash, but first also the number of bytes. That’s much easier to debug than a hash mismatch. And potentially more secure: An attacker would not just need to find a hash collision, but a hash collision using this exact number of bytes.- There’s some extra text trying to explain what a byte/hash mismatch means.
- The exact command ran is shown, which is great for troubleshooting.
- And there’s a hint about looking for old config files you’ve forgotten about.
wget
,tar
and Node.js nativehttps.get()
calls have been similarly improved. -
Improved: The output of
elm-tooling install
is now less noisy in CI. Previously, if you downloadedelm
,elm-format
andelm-json
at the same time,elm-tooling
would print the progress of all three any time just one of them received some more bytes! That resulted in many duplicate lines. Now, only the tool that got an update is printed, resulting in a plain old log. As a bonus, this made the interactive output ever so slightly more efficient, too! -
Improved: The npm package now contains just 3 JS files, instead of 12. This results in a slightly smaller and (in theory) faster package!
-
Improved: I’ve done some internal refactoring to make the code more type safe. Always a confidence boost!
- Added: elm-test-rs 1.0.0.
- Fixed:
elm-tooling install
now works in Git Bash on Windows. Travis CI uses Git Bash by default in their Windows environment.
- Added: elm-format 0.8.5.
- Added: elm-json 0.2.10.
- Improved:
elm-tooling
now prints progress more efficiently, resulting in better performance and nicer logs in CI.
- Fixed:
elm-tooling install
no longer findsnode_modules/
up the directory tree. Links to tools are now always created innode_modules/.bin/
in the same directory aselm-tooling.json
.elm-tooling.json
only affects the current project, soelm-tooling install
shouldn’t touch stuff outside the project. #23 - Removed:
elm-tooling validate
no longer checks for anelm.json
next toelm-tooling.json
, since there are legitimate use cases for only having anelm-tooling.json
. #24
- Improved:
--help
now shows the help text even if there are other arguments passed. - Improved: Each option of
elmToolingCli
is now optional and has its own default. Previously, you had to pass either no options or all options.
- Improved:
elm-tooling init
now looks atelm.json
to figure out which Elm version to use.
- Added: Node.js 10 support. This is useful for npm packages that need to run tests on Node.js 10 and use
elm-tooling
to installelm
andelm-format
. - Updated: Links to documentation and to the specification, since the repo was reorganized a bit.
- Fixed:
"elm": "0.19.0"
accidentally resulted in Elm 0.19.1 being downloaded on Windows.
- Fixed:
getExecutable
now properly deals with prereleases. Previously,^1.0.0
would match1.1.0-beta.1
. Prereleases should only be matched if the range contains a prerelease and they both have the same three-digit base.
- Improved:
elm-tooling install
now removes old links created by earlier runs ofelm-tooling install
. - Fixed: A broken link in the npm package readme.
- Added:
elm-tooling tools
. Interactively add, remove and update tools. - Removed: The hidden
elm-tooling download
command is now removed for real. - Improved:
elm-tooling install
now has nicer output. - Improved: The output from most commands now suggest what command to run next.
- Improved:
elm-tooling init
now tries to find what tools you had installed locally usingnpm
before and uses those version in the"tools"
field. - Improved:
elm-tooling validate
now checks that entrypoints end with.elm
.
- Updated: Some links point to the
main
branch instead ofmaster
.
- Renamed:
elm-tooling postinstall
is now calledelm-tooling install
. - Removed:
elm-tooling download
. There’s no use case for it yet. Useelm-tooling install
instead. (Technically the command is still there but it’s not part of the public API and might be removed for real at any time.) - Added: Support for
elm-json
(latest version as of this writing). - Added:
getExecutable
for npm packages that want to depend onelm-json
(or other tools). - Improved:
elm-tooling validate
now checks that/
is used rather than\
in entrypoints. - Improved:
elm-tooling help
now shows the version ofelm-tooling
.
- Added: elm-format 0.8.4.
- Improved: Show known fields/tools/versions in validation errors.
- Added: It’s now possible to import the CLI and run it from JavaScript without
child_process.spawn
. - Fixed: Minor bugs.
- Fixed: The CLI now works on Windows.
- Improved: Lots of little things.
- Added: Allow turning
elm-tooling postinstall
into a no-op by setting theNO_ELM_TOOLING_POSTINSTALL
environment variable. - Improved: The tool now chooses between stdout and stderr more wisely, allowing you to pipe stdout to
/dev/null
for silent operation while still seeing unexpected errors on stderr. - Improved: Cleanup when download fails.
- Fixed: Extracting tar archives now works with GNU tar.
- Fixed: Progress is now correctly calculated in locales using
,
as decimal separator.
- Improved:
elm-tooling postinstall
now overwrites links likenpm
does.
- Fixed: Node.js 12 support.
- Fixed: Add shebang to CLI entrypoint.
- Initial release.