Skip to content
This repository has been archived by the owner on Dec 20, 2023. It is now read-only.

Releases: C2FO/comb

v1.2.0

05 Dec 19:56
@jkc jkc
731e3d9
Compare
Choose a tag to compare
  • Fixed issue in comb.date.format not correctly returning an abbreviated weekday name for "EEE"
  • Removed periods from abbreviated month name list. Punctuation should be added in the format string to be more flexible.

Dependency fix

12 Feb 20:04
Compare
Choose a tag to compare
  • Porting 1.1.0 code back to 1.0.1 so we don't have to updated all the dependent apps.

Improvement to Logging

09 Feb 20:52
Compare
Choose a tag to compare
  • Adding the actual error to logging meta data.

Node 4-5 Support

05 Jan 18:19
Compare
Choose a tag to compare
  • Node 4 and 5 support
  • Updated to use jshint
  • Added grunt

v0.4.0

21 Jan 23:40
Compare
Choose a tag to compare
  • Update comb.number.round to default to new comb.number.roundHalfUp method.

v0.3.6

14 Aug 02:01
Compare
Choose a tag to compare
  • Added new timer function to comb.logger.

v0.3.5

11 Aug 23:53
Compare
Choose a tag to compare
  • Fixed issue where messages were not propagated down to appenders even if there level was set to accept them
  • Added error logging to rolling file appender if there was an issue rolling over.

v0.3.4

02 Aug 00:47
Compare
Choose a tag to compare
  • Update comb.string.format to handle signing numbers with padding properly
    • comb.string.format('%+07.2d', 10); //"+010.00"
    • comb.string.format('%+07.2d', -10); //"-010.00"
    • comb.string.format('%+ 7.2d', 10); //" +10.00"
    • comb.string.format('%+ 7.2d', -10); //" -10.00"

v0.3.3

01 Aug 23:40
Compare
Choose a tag to compare
  • Update comb.string.format to be support as a flag when signing a number
    • comb.string.format('% d', 10); //" 10"
    • comb.string.format('% d', -10); //"-10"

v0.3.2

01 Aug 18:31
Compare
Choose a tag to compare
  • Update comb.string.format to be able to specify precision with numbers.