Skip to content

Releases: salsify/ember-debug-logger

v2.1.1

09 Apr 12:10
ebe4b38
Compare
Choose a tag to compare

This release fixes a bug introduced in v2.1.0debug@4 contains ES6 syntax that breaks compatibility with IE11. We now lock our debug dependency below version 4.

v2.1.0

09 Apr 12:09
7bdf7a1
Compare
Choose a tag to compare

This release moved to pulling debug directly from npm and bringing it into the host application via ember-auto-import rather than the AMD build of debug-dist.

v2.0.0

02 Oct 17:16
0d9c906
Compare
Choose a tag to compare

This release removes the automatic injection of the debug method on many container-owned objects. To migrate forward, you can either set debug: debugLogger() on those objects explicitly or reinstate the implicit injection in your own instance initializer:

export function initialize(instance) {
  instance.register('debug-logger:main', debugLogger(), { instantiate: false });

  // Do this for each type you want the injection on
  instance.inject('route', 'debug', 'debug-logger:main');
}

export default {
  name: 'debug-logger',
  initialize,
};