Skip to content

v2.0.0

Compare
Choose a tag to compare
@lukeed lukeed released this 26 Jul 19:26
· 40 commits to master since this release

Major Changes

  • BREAKING: Removed get option: 66cc1b2, 96465d3

    GAnalytics is now firing GET requests via new Image().src = url, which works natively in all browsers. AKA, no fetch polyfills or replacements are needed! Credit to @developit and @kristoferbaxter 🎉

  • BREAKING: Removed inline assign helper: 43f87b8, 275565e

    GAnalytics now ships with Object.assign by default. This means that there is no Internet Explorer support by default.

    However, Babel users may install babel-plugin-transform-object-assign to quickly regain IE compatibility! This is possible because the plugin will replace instances of Object.assign with _extends, an injected Babel helper.

Patches