All Versions
14
Latest Version
Avg Release Cycle
26 days
Latest Release
2746 days ago
Changelog History
Page 2
Changelog History
Page 2
-
v0.9.0 Changes
October 19, 2016โ Added
react/react-source
is the suggested way to include ReactJS sources now. Simply requirereact/react-source
immediately before therequire "reactrb"
in your Opal code will make it work.
๐ Deprecated
- โ
react-latest
&react-v1x
is deprecated. Usereact/react-source
instead.
โ Removed
- ๐
opal-browser
is removed from runtime dependency. (#133) You will have to addgem 'opal-browser'
to your gemfile (recommended) or remove all references to opal-browser from your manifest files.
๐ Fixed
$window#on
inopal-jquery
is broken. (#166)Element#render
trigger unnecessary re-mounts when called multiple times. (#170)- โก๏ธ Gets rid of react warnings about updating state during render (#155)
- Multiple HAML classes (i.e. div.foo.bar) was not working (regression introduced in 0.8.8)
- Don't send nil (null) to form components as the value string (#157)
- ๐จ Process
params
(props) correctly when usingElement#on
orElement#render
(#158) - ๐ Deprecate shallow param compare (#156)
-
v0.8.8 Changes
July 13, 2016โ Added
- More helpful error messages on render failures (#152)
Element#on('<my_event_name>')
subscribes tomy_event_name
(#153)
๐ Changed
Element#on(:event)
subscribes toon_event
for reactrb components andonEvent
for native components. (#153)
๐ Deprecated
- ๐
Element#on(:event)
subscription to_onEvent
is deprecated. Once you have changed params named_on...
toon_...
you canrequire 'reactrb/new-event-name-convention.rb'
to avoid spurious react warning messages. (#153)
๐ Fixed
- The
Element['#container'].render...
method generates a spurious react error (#154)
-
v0.8.7 Changes
July 08, 2016๐ Fixed
- Opal 0.10.x compatibility
-
v0.8.6 Changes
June 30, 2016๐ Fixed
- Method missing within a component was being reported as
incorrect const name
(#151)
- Method missing within a component was being reported as