1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143
|
# Hypothesis for Ruby 0.7.1 (2021-03-27)
This patch fixes some internal typos. There is no user-visible change.
# Hypothesis for Ruby 0.7.0 (2021-03-12)
Moves rake from being a a runtime dependency to being a development dependency. Rake is used to run tests but is not required for consumers of hypothesis-ruby.
# Hypothesis for Ruby 0.6.1 (2021-02-01)
This patch contains minor performance improvements for `HypothesisCoreIntegers` class instantiation.
# Hypothesis for Ruby 0.6.0 (2021-01-27)
Adds support for skipping shrinking. While shrinking is extremely helpful and important in general, it has the potential to be quite time consuming. It can be useful to observe a raw failure before choosing to allow the engine to try to shrink. [hypothesis-python](https://hypothesis.readthedocs.io/en/latest/settings.html#phases) already provides the ability to skip shrinking, so there is precedent for this being useful. While `hypothesis-ruby` does not have the concept of other "Phases" yet, we can still start off the API by using this concept.
Usage:
```
hypothesis(phases: Phase.excluding(:shrink)) do
# Failures here will be displayed directly and shrinking will be avoided
end
```
# Hypothesis for Ruby 0.5.0 (2021-01-25)
Adds support for skipping shrinking. While shrinking is extremely helpful and important in general, it has the potential to be quite time consuming. It can be useful to observe a raw failure before choosing to allow the engine to try to shrink. [hypothesis-python](https://hypothesis.readthedocs.io/en/latest/settings.html#phases) already provides the ability to skip shrinking, so there is precedent for this being useful. While `hypothesis-ruby` does not have the concept of other "Phases" yet, we can still start off the API by using this concept.
Usage:
```
hypothesis(phases: Phase.excluding(:shrink)) do
# Failures here will be displayed directly and shrinking will be avoided
end
```
# Hypothesis for Ruby 0.4.0 (2021-01-12)
This removes hypothesis-ruby's dependence on RSpec. Now, it can be used with any Ruby test runner.
# Hypothesis for Ruby 0.3.0 (2021-01-08)
This release converts Hypothesis for Ruby to use [RuTie](https://github.com/danielpclark/rutie)
instead of the deprecated [Helix](https://github.com/tildeio/helix), restoring compatibility
with recent versions of Rust. Thanks to Alex Weisberger for taking this on!
# Hypothesis for Ruby 0.2.0 (2018-10-24)
This release adds an example database to Hypothesis for Ruby. This means that when a test fails,
it will automatically reuse the previously shown example when you rerun it, without having to
manually pass a seed.
# Hypothesis for Ruby 0.1.2 (2018-09-24)
This release makes the code usable via a direct require.
I.e. no need for rubygems or any special LOAD_PATH.
For example, if the base directory were in /opt, you'd just say:
require "/opt/hypothesis/hypothesis-ruby/lib/hypothesis"
# Hypothesis for Ruby 0.1.1 (2018-08-31)
This release fixes minor documentation issues.
Thanks to Tessa Bradbury for this contribution.
# Hypothesis for Ruby 0.1.0 (2018-07-16)
This release adds support for reporting multiple exceptions when Hypothesis
finds more than one way for the test to fail.
# Hypothesis for Ruby 0.0.15 (2018-06-25)
This release fixes an occasional `RuntimeError` that could occur
when shrinking a failing test.
# Hypothesis for Ruby 0.0.14 (2018-06-25)
This release updates the release date to the correct date, as part of fixing a
bug which caused the last couple of releases (0.0.11, 0.0.12, and 0.0.13) to
have an incorrect date.
# Hypothesis for Ruby 0.0.13 (2018-06-25)
This release moves the core Rust engine into the separate Conjecture crate. It
should have no user visible effect.
# Hypothesis for Ruby 0.0.12 (2018-06-23)
This release is the beginning of splitting out the Rust core of Hypothesis
Ruby into a separate `conjecture` crate for the non-Ruby-specific components
of it.
It should have no user visible impact.
# Hypothesis for Ruby 0.0.11 (2018-06-22)
This release has no user-visible changes other than updating the gemspec's
homepage attribute.
## Hypothesis for Ruby 0.0.10 (2018-04-26)
This release is another update to shrinking:
* Cases where the value may be simplified without necessarily
becoming smaller will have better results.
* Duplicated values can now sometimes be simultaneously shrunk.
## Hypothesis for Ruby 0.0.9 (2018-04-20)
This improves Hypothesis for Ruby's shrinking to be much closer
to Hypothesis for Python's. It's still far from complete, and even
in cases where it has the same level of quality it will often be
significantly slower, but examples should now be much more consistent,
especially in cases where you are using e.g. `built_as`.
## Hypothesis for Ruby 0.0.8 (2018-02-20)
This release fixes the dependency on Rake to be in a more sensible range.
## Hypothesis for Ruby 0.0.7 (2018-02-19)
This release updates an error in the README.
## Hypothesis for Ruby 0.0.6 (2018-02-19)
This release just updates the gem description.
## Hypothesis for Ruby 0.0.5 (2018-02-19)
This is a trivial release to test the release automation.
It should have no user visible impact.
## Hypothesis for Ruby 0.0.3 (2018-02-19)
This is an initial developer preview of Hypothesis for Ruby.
It's ready to use, but isn't yet stable and has significant
limitations. It is mostly released so that people can easily give
feedback on the API and implementation, and is likely to change
substantially before a stable release.
Note that while there were some earlier release numbers internally,
these were pulled. This is the first official release.
|