All Versions
59
Latest Version
Avg Release Cycle
54 days
Latest Release
1094 days ago
Changelog History
Page 1
Changelog History
Page 1
-
v0.26.1 Changes
September 29, 2020⬆️ Dependency Upgrades
- ⬆️ Bump handlebars from 4.1.2 to 4.5.3 (#1035)
- ⬆️ Bump elliptic from 6.4.0 to 6.5.3 (#1045)
- ⬆️ Bump eslint-utils from 1.3.1 to 1.4.3 (#1039)
- ⬆️ Bump tree-kill from 1.2.0 to 1.2.2 (#1046)
- ⬆️ Bump websocket-extensions from 0.1.1 to 0.1.4 (#1044)
- ⬆️ Bump fstream from 1.0.11 to 1.0.12 (#1038)
- ⬆️ Bump sshpk from 1.11.0 to 1.16.1 (#1037)
- ⬆️ Bump webpack-dev-server from 2.11.1 to 3.1.11 (#1036)
- ⬆️ Bump is-my-json-valid from 2.16.0 to 2.20.5 (#1048)
- ⬆️ Bump http-proxy from 1.16.2 to 1.18.1 (#1047)
🐛 Bug Fixes
- 🛠 Fix initial enhancer state for fn components (#1041)
-
v0.26.0 Changes
September 05, 2019🐛 Bug Fixes
- ➕ Add hook and forwardRef support (#1027)
💥 Breaking Changes
- Radium now requires [email protected]+ (#1027)
-
v0.25.2 Changes
June 08, 2019🐛 Bug Fixes
- ⬆️ Bump handlebars from 4.0.6 to 4.1.2 (#1026)
- 🛠 Fixed bug with undefined _extraRadiumStateKeys (#1025)
- ⚡️ Update unitless CSS property list and licensing (#1020)
-
v0.25.1 Changes
December 17, 2018🐛 Bug Fixes
- ⚡️ Pass
snapshot
argument to `componentDidUpdate (#1013)
Infra/Tooling
- 🛠 Fix console warnings when running examples (#1002)
- ⬆️ Upgrade karma to 3.0 (#1003)
- 🔨 Refactor enhancer for readability (#1004)
- Replace Isparta with Istanbul (#1011)
- Prettier (#1012)
- ⚡️ Pass
-
v0.25.0 Changes
September 17, 2018- 👉 Use
Reflect
to construct es native classes in a way that preserves the value ofthis
used in the constructor. (#999, #1001) - 🖐 Handle multiple animationName props (#909)
- 👉 Use
-
v0.24.1 Changes
July 10, 2018- 💅 Make
<StyleSheet>
manually update<style>
tag DOM, fixing media queries on component level flickering. (#626, #950)
- 💅 Make
-
v0.24.0 Changes
March 29, 2018- 🛠 Fix
render
methods that return array of children orReact.Fragment
. (#950) - ⬆️ Upgrade tests to React 16.2 (for
Fragment
support)
- 🛠 Fix
-
v0.23.0 Changes
March 15, 2018- 👌 Support ES7 arrow functions for React class methods. (#738)
-
v0.22.1 Changes
March 01, 2018- 🛠 Fix
keyframes
bug from prefixed inline styles. (#973)
- 🛠 Fix
-
v0.22.0 Changes
February 09, 2018💥 Breaking Changes
- 📦 Radium now exports defaults as
.default
, so for runtimes like Node.js for all files inlib/**
. We have changedpackage.json:main
to point to/index.js
instead of/lib/index.js
as a convenience wrapper to expose mostly what was there before so behavior ofconst Radium = require('radium');
works mostly as it did before. Caveats:- When using webpack2+ to build code with
require('radium')
in it you will need to change that to becomerequire('radium').default
. - Any imports of a default export from a file in lib like
const Enhancer = require('radium/lib/enhancer');
will need to be changed toconst Enhancer = require('radium/lib/enhancer').default;
. - We have a full examples repository of how imports work in all likely scenarios that should come up. https://github.com/FormidableLabs/radium-experiments-v0.22
- When using webpack2+ to build code with
🔋 Features
- ➕ Add
es
ESM module export files.
🛠 Fixes
- 🛠 Fix
package.json:scripts.postinstall
task to correctly work for git-based dependencies.
- 📦 Radium now exports defaults as