Reactrb v0.12.7 Release Notes
Release Date: 2017-06-03 // almost 8 years ago-
No data yet ๐
You can check the official repo
Previous changes from v0.11.0
-
๐ Changed
- 0๏ธโฃ The whole opal-activesuppport is not loaded by default now. This gave us about 18% size reduction on the built file. If your code rely on any of the module which is not required by hyper-react, you need to require it yourself. (#135)
๐ Deprecated
- Current
React.render
behavior is deprecated. Require"react/top_level_render"
to get the updated behavior. (#187) React.is_valid_element
is deprecated in favor ofReact.is_valid_element?
.expect(component).to render('<div />')
is now deprecated in favor ofexpect(component).to render_static_html('<div />')
, which is much clearer.
๐ Fixed
- ๐
ReferenceError: window is not defined
error in prerender context with react-rails v1.10.0. (#196) - โก๏ธ State might not be updated using
React::Observable
from a param. (#175) - Arity checking failed for
_react_param_conversion
&React::Element#initialize
(#167)