Releases: rangle/redux-beacon
v2.0.5
v2.0.3
google-analytics-gtag@1.0.2
Publish fix GA (gtag.js) target (#249)
v2.0.2
v2.0.1
v1.2.1
Patch
π³ Update the logger extension to work in React Native (#148). Thank you @KrzysztofP!
Install it from npm
npm install redux-beacon@1.2.1 --save
UMD builds
v1.2.0
Minor
π° The Google Analytics target now supports the Google Analytics Ecommerce Plugin. See the docs for more.
Install it from npm
npm install redux-beacon@1.2.0 --save
UMD builds
v1.1.0
Minor Changes
Redux Beacon now passes the next state to event definitions.
Before:
const eventDef = (
action,
prevState
) => ({
...
});
Now:
const eventDef = (
action,
prevState,
+ nextState
) => ({
...
});
Install it from npm
npm install redux-beacon@1.1.0 --save
UMD builds
v1.0.1
β οΈ Breaking Changes
Event definitions are now functions (#107). See:
Event maps no longer accept an array of event definitions (#107). But you can now return an array of events from a single event definition. See:
Other
π The segment.io target now throws a helpful error message if you forgot to add the segment snippet to your index.html. (#108). Thanks @zachrnolan!
Install it from npm
npm install redux-beacon@1.0.1 --save
UMD builds
v0.4.0
New Features
π Added an option to rename the dataLayer in the GTM target (#98). Thanks @sombreroEnPuntas!!
π Enhanced eventFields
to allow returning an array of events (#103). Thanks @coluccini!!
Other
π¦ Improved and streamlined webpack configs (#95)
β
Replaced typescript-definition-tester
with typings-tester
(#100)
π Added codecov githook (#101)
Install it from npm
npm install redux-beacon@0.4.0 --save