Skip to content

Commit

Permalink
Release v0.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
elia committed May 25, 2017
1 parent ab91965 commit 8cf27c9
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 7 deletions.
26 changes: 20 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,23 @@
## 0.6.1 - 2017-05-25

- Fixed compatibility with Rake 12

- Open up to opal 0.11 (not officially supported yet)


## 0.6.0 - 2016-08-29

- Support for Opal 0.8/0.9 removed

- Opal 0.10 support

- Arity checking enabled by default

- Dropped support for PhantomJS < 2.0

- Removed `Kernel#caller` monkey patch so test file/line metadata is only available if supplied via test metadata or for failures. Should improve performance since an exception isn't thrown for every test to gather the data


## 0.5.0 - 2015-12-08

- By default, any subject, it example block, before(:each), after(:each), and around that returns a promise will be executed asynchronously. Async is NOT yet supported for context level hooks. Async approach from < 0.4.3 will still work.
Expand All @@ -19,14 +31,14 @@
- Remove copy of source from opal-rspec git repo (and just rely on git submodule fetch)

- Rake task improvements:
* supports passing a test pattern (include and exclude) and FileLists besides 'spec/**/*_spec.rb
* colors, formatter, and additional requires can be supplied from the command line via the SPEC_OPTS environment variable
- supports passing a test pattern (include and exclude) and FileLists besides 'spec/**/*_spec.rb
- colors, formatter, and additional requires can be supplied from the command line via the SPEC_OPTS environment variable

- Formatters:
* Fixed issues with RSpec's BaseTextFormatter and made ProgressFormatter the default when run via the Rake task
* Fix redundant messages with expectation fails
* Browser formatter now works w/ progress bar and has a 'Dump to console' link that will put a clickable stack trace for a failed example in the browser console
* JSON formatter supported
- Fixed issues with RSpec's BaseTextFormatter and made ProgressFormatter the default when run via the Rake task
- Fix redundant messages with expectation fails
- Browser formatter now works w/ progress bar and has a 'Dump to console' link that will put a clickable stack trace for a failed example in the browser console
- JSON formatter supported

- Fixed issues with constants/example group naming

Expand All @@ -43,10 +55,12 @@
- Fix some threading issues
- Avoid some other calls to mutable-strings methods


## 0.4.2 - 2015-03-28

- Avoid phantomjs warning messages


## 0.4.1 - 2015-02-25

- Remove predicate matcher fixes as Opal supports $1..$9 special gvars.
Expand Down
2 changes: 1 addition & 1 deletion lib/opal/rspec/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module Opal
module RSpec
VERSION = '0.6.0'
VERSION = '0.6.1'
end
end

0 comments on commit 8cf27c9

Please sign in to comment.