Skip to content

Releases: dharFr/badgee

Version 2.0.3

28 Aug 10:08
Compare
Choose a tag to compare
  • b188dd3 : chore(package): update rollup to version 0.49.0
  • 9887c95 : Update minify tasks with latest uglify v3.0 options syntax
  • ae7a273 : chore(package): update uglify-js to version 3.0.28
  • 1c9a596 : Update rollup.config.js with latest options naming
  • ec05b36 : chore(package): update rollup to version 0.48.2
  • eb7aed6 : chore(package): update sinon to version 3.0.0

Version 2.0.2

28 Aug 10:03
Compare
Choose a tag to compare
  • 5ef4387 Fix unit-tests :
    • Revert uglify-js to 2.8 because it break sourcemap support
    • Fix chai API change

Version 2.0.1

16 Jul 22:21
Compare
Choose a tag to compare
  • 40ee70e : Fix compatibility with Node environment

Version 2.0.0

16 Jul 22:19
Compare
Choose a tag to compare
  • Source code converted from CoffeeScript to ES2015+rollup
  • Many rewrites and size optimization => going under 1kB \o/
  • e3f7de9 [breaking] remove most default styles
  • 9b0c796 [breaking] remove support for less used console methods

Also [breaking], since badgee is now exposed as an ES2015 module by default, If you're using in a CommonJS environment, you will need to rewrite your require calls to handle ES2015 default export. See below 👇

// before
var badgee = require('badgee');

// after
var badgee = require('badgee').default;

Version 1.2.1

17 Feb 17:07
Compare
Choose a tag to compare
  • Fix #2 : breaking error on IE11.

Version 1.2.0

01 Nov 13:17
Compare
Choose a tag to compare

Add filters :

  • badgee.filter.include(match) : Include only matching badges into logs
  • badgee.filter.exclude(match) : Exclude matching badges from logs
  • badgee.filter.none() : remove already defined filters.

Version 1.1.0

16 Oct 16:03
Compare
Choose a tag to compare
  • Add badgee.defaultStyle() method to get/set default style
    properties
  • badgee.style(name) now returns the properties of an existing named
    style
  • Add a few built-in styles : black, blue, brown, gray, cyan, magenta,
    pink

Version 1.0.2

16 Oct 12:35
Compare
Choose a tag to compare

Build process :

  • Browserify build now always produces minified and unminified versions
  • badgee.js file isn't minified anymore.
  • badgee.min.js file doesn't link to missing sourcemap files anymore.

Unit-tests :

  • Add unit-tests for unstylable console methods

Bug fixes :

  • Fix : unstylable console methods may not be defined when a new badgee instance is created while logging is disabled in config.

Old browsers fix

21 Jul 21:32
Compare
Choose a tag to compare

Add fallback for old browsers that doesn't support using bind() method on console object

First release

21 Jul 21:32
Compare
Choose a tag to compare
1.0.0

Initial Commit