This project follows semVer, where:
- [major] is an API, or result-format change
- [minor] is a result change
- [patch] is a bugfix
- run mjs build through babel (#175)
- add
.toLocalDate()
- update zonefile to 2020
- add Famagusta and Yangon iana zones
- add
.decade()
- add
.century()
- add
.millenium()
- add
.json()
method - remove dst for Brazil
- fix .week() counting logic
- change overflow error-amount for #166
- fix typescript types
- add config for
dmy
british date parsing - support
18-feb-2019
format
- support for +14 timezones.
- remove 'informal' timezone parsing (like
.goto('south africa')
) - remove 'display' info from
.timezone()
like 'EST' (move to spacetime-informal) - throw error on an invalid timezone #150
- optimize
.week()
method
- add support for changing start/end of the week
- allow more flexible
.i18n()
inputs
- faster diff for large-number of months
- more support for esoteric iso formats
- add format('iso-month')
- change fallback behaviour for set failure edge-cases
- avoid setting dates/months/hours past maximums and minimums
.hour(24)
now changes date to tomorrow- faster diffs for large (decade-long) ranges
- [big] fix awkward diff/since issues ('dec 25->jan 5' should be 0 years)
- support typescript types by Jacob Craig
- use given timezone when given a spacetime object as an input
- adds
.every(unit, to)
method - set UTC as default fallback timezone
- support more time input formats
- fixes offset input issue #103
- added more iana timezones
- fixed zero-padding in iso offsets
- support half hour offsets in iso formats
next()
andlast()
methods- support for century and decades
- full-api tests and docs
- titlecase short-forms of months, days in
.format()
- support implicit date in
nov 2019
- support
tues March 5th 2018
inputs - pretty-dramatic speed optimizations (~50%)
- 🚨 all methods now immutable by default.🚨
-- existing code will now need to be
s = s.add(1,'day')
--- (instead ofs.add(1,'day')
) - move unix-formating out of
.format()
into.unixFmt()
- support new
{hour} oclock
-style format templates - change default
.format()
response to yyyy-mm-dd - uppercase month and day names in
.dayName()
- support city-names,
EST
,PDT
, etc as input - set default
silent: true
to avoid unwanted logging
- update a few TZ offsets in mostly eastern-Russia
- updates to 2019 Palestinian dst dates
- fixes for missing immutable setter methods
- big - swap interpretation of ISO date offsets
-0500 → +5 offset
#61
- assume current year with input
spacetime('July 5th')
- do larger
.diff()
operations (gt 1yr) in fast-mode - support BC formatting of input and in
s.format('year')
- bug fix for iso-format hour-offsets (#58)
- adds
.extend()
method for authoring plugins
- fix dayOfYear regression on 31st days
- support space in ISO-186 format
- update deps, use babel-env
- fix 'February 30th' regression
- remove denormalized
.valid
boolean on Spacetime class
- support
.from()
and.fromNow()
methods
format(iso)
now uses.
for millisecond separator:2016-11-04T09:00:59.122Z
- adds
.since()
method to calculate a human-readable diff - support string/number input to
.diff()
- support ordinal inputs, like
June 5th 2018
- isAwake() method
- alias for .plus() .minus() methods
.diff()
without a unit does a couple units together- update zonefile to proper dst-flip time
- update zonefile to 2018 dst dates
- dramatic speedup by optimizing walkTo method
- fallback to UTC, instead of PST if no
Intl
is present - support passing-in offsets as ISO_8601 date-strings
- add epoch-seconds warning msg
- allow getting/setting new timezones
- support unix/unicode time-formating basic-level
- add
.era()
get/set method - found 6 or 7 wrong offsets
- fix major southern-hemisphere issue
- re-structure
d.timezone()
response - add
.hemisphere()
method - use proper short-day forms
- fix for inf-loop regression on DST-switch
- adds
spacetime.i18n()
method - adds
spacetime.nearest()
method - support for
"quarterHour"
units - '4:15, 4:30, 4:45, 5:00' etc
- adds
spacetime.whereIts()
method - actually implement 😓 season by hemisphere
- adds isBetween() method