Skip to content

Releases: hhvm/hacktest

v2.4.0

06 Jun 18:43
Compare
Choose a tag to compare

What's Changed

  • Require hhvm 4.128 and support autoloading with ext_watchman by @lexidor in #111
  • Add aliasses for noreturn functions with nothing by @lexidor in #109
  • Fix lint error by @Atry in #113
  • Fix "Could not parse file" error by @Atry in #112
  • Assume tests/ when no SOURCE_PATH is specified by @lexidor in #110

Full Changelog: v2.3.0...v2.4.0

v2.3.0

17 Nov 21:57
c8dd77a
Compare
Choose a tag to compare

What's Changed

New Contributors

  • @Atry made their first contribution in #107

Full Changelog: v2.2.3...v2.3.0

2.2.3: support HSL-IO v0.3

14 Dec 21:57
Compare
Choose a tag to compare
v2.2.3

permit HSL IO v0.3

v2.2.2: support future release of hsl-experimental, fix more calls that could lead to truncated output

11 Dec 22:13
Compare
Choose a tag to compare
Replace 'writeAsync' with 'writeAllAsync' in more places

Prevents truncated output, and fixes support for future
hsl-experimental release

2.2.1: support current HHVM nightly builds, fix truncated output

09 Dec 20:34
Compare
Choose a tag to compare

This release:

  • supports current nightly builds of HHVM and is expected to support HHVM 4.88
  • continues to support HHVM 4.60 and above
  • fixes a bug that can lead to truncated output in recent versions of HSL IO

Support HSL-IO v0.2, hsl-experimental-v4.58

01 Jul 22:33
Compare
Choose a tag to compare

This release contains no user-visible changes - however, due to changes in HSL-IO, it can not run its' own tests on earlier versions of HSL Experimental, so the new version is now required.

2.2.0rc1: support/require hsl-experimental v4.58.0

30 Jun 20:01
Compare
Choose a tag to compare
v2.2.0rc1

Support (and require) HSL IO 0.2

2.1.3: support HHVM 4.62 and current nightlies - expected to support HHVM 4.63

22 Jun 19:32
Compare
Choose a tag to compare

2.1.2: support type-assert v4

21 May 15:49
Compare
Choose a tag to compare
Update dependencies

- explicitly depend on HSL-IO v0.1 API
- permit type-assert v4

v2.1.1: compatibility with hsl-experimental master.

28 Apr 15:51
Compare
Choose a tag to compare
[easy] make VerboseCLIOutput forward compatible with future HSL IO ch…

…ange

HSL IO is changing `writeAsync()` to return `Awaitable<int>`, but the
function here is `Awaitable<void>` - `return await` is no longer
compatible.

Tangentially, I'm a little surprised that explicit return values are OK
in `Awaitable` functions :/