Skip to content
This repository has been archived by the owner on Aug 1, 2023. It is now read-only.

Releases: hhvm/fbexpect

Updated difflib dependency

25 Sep 16:09
Compare
Choose a tag to compare

This release now depends on difflib 1.0 instead of 0.2

Use HackTest v1.0, don't install tests/ or .hhconfig when installed via composer

21 Sep 19:20
Compare
Choose a tag to compare

Better output for failed string identity assertions

13 Sep 18:03
99f0296
Compare
Choose a tag to compare

This release special-cases toBeSame() when both the expected and actual values are strings to provide more useful output.

Before

Failed asserting that two strings are identical.

Now

Failed asserting that two strings are the same:
@@ -1,4 +1,4 @@
 a
 b
-c
+d

Require HHVM 3.28+

27 Aug 18:49
Compare
Choose a tag to compare
v2.1.0

Require HHVM 3.28

Use HackTest instead of PHPUnit

17 Aug 16:06
5309a9c
Compare
Choose a tag to compare

This release of fbexpect requires HackTest instead of PHPUnit.

Deprecate PHP equality checks, only take a single argument

11 Jun 22:05
5671bb1
Compare
Choose a tag to compare
  • multi-argument form is unused, and removes type safety
  • PHP equality is not type safe; use toBeSame and toNotBeSame instead. Deprecation messages provide suggestions.

Relicense, support current nightly builds of HHVM

09 May 17:32
Compare
Choose a tag to compare
  • this release is available under the MIT license
  • this release supports current nightly builds of HHVM

Renumbered to 1.x as it has been stable for some time.

Support additional typechecker restrictions

09 Feb 16:23
Compare
Choose a tag to compare

This release supports:

  • safe_array=true and safe_vector_array=true
  • enable_experimental_tc_features=no_fallback_in_namespaces (nightlies, expected in 3.25)

Support HHVM 3.24, require HHVM 3.23+

05 Jan 21:31
Compare
Choose a tag to compare
Pre-release
v0.4

Support 3.24, require 3.23

Allow extending ExpectObj

20 Sep 18:29
Compare
Choose a tag to compare
Pre-release

This allows project- or organization-specific extensions to expectobj, without having to wrap everything.