After a bit of a release hiatus, Merb is back with a release of version 1.0.15 that provides fixes to a few long standing bugs, and adds built-in support for the much improved 0.10.x series of Datamapper.
Changelog
Fixes to merb-core:
Fixes to merb-more:
Fixes to merb.thor:
Contributors
Special thanks to the contributors who helped with this release:
A minor spec 1.0 change.
A small fix was required within the spec10 directory. Even though its minor, we promised to document any changes to this directory. Within spec10/public/test/multipart_request_helper_spec.rb, we were using:
file_params[:tempfile].should be_a_kind_of(File)
in order to verify processing of multipart upload. These spec’s worked by accident because of a bug in a previous version of rSpec which incorrectly allowed for this to pass. Newer versions of rSpec rightly cause this assertion to fail. The spec has now been changed to the more accurate:
file_params[:tempfile].should be_a_kind_of(Tempfile)
Upwards and Onwards
Merb 1.1 development has heated up, and a release is tentatively scheduled for mid November (at RubyConf). Major changes will include built-in support for the new Bundler gem (github.com/wycats/bundler), support for ActiveORM, and many other fixes from the Merb lighthouse. Additional announcements coming soon....