Releases: happo/happo.io
v3.23.1
Now that the happo-ci
script runs the "before" report last, we ended up being git-checked out on the previous sha. This made cleanup tasks running in CI fail when they were expecting to be in a different place in git history. This patch version fixes the issue by checking out the right commit right before we exit the script.
v3.23.0
This version has a change to make the happo-ci
script a little faster. Instead of running happo run
for the baseline commit first, it runs for the current/HEAD commit. In many cases, this will save one npm install
from running. Plus it might give enough time for a potential single happo run
on the master branch to finish before we get to generating the baseline report.
v3.22.2
v3.22.1
v3.22.0
v3.21.2
v3.21.1
v3.21.0
This release has a fix that makes it possible to run new happo (this repo/library) with legacy happo (https://github.com/Galooshi/happo). Since they both use the same name for the main binary (happo
) it's impossible to run both side-by-side. This release contains a fix that makes the happo-ci
script use the build/cli.js
script directly, instead of invoking it via $(npm bin)/happo
.
v3.20.0
This release adds support for asynchronous .happo.js
config files. Instead of exporting an object you can export a function that resolves with an object. Thanks to @AllenWilliamson for the work done in this release!