- Unreleased
- 1.7.2 (2021-06-02)
- Bug Fix: Add
ZonedDateTime::normalize()
, which must be called by the client code after calling aZonedDateTime
mutation function.- See ZonedDateTime Normalization.
- Increases flash usage by 222 bytes by making this single call on an AVR unfortunately.
- Migrate
PrintStr::getCstr()
in AceCommon <=1.4.4 to the shorterPrintStr::cstr()
in AceCommon >= 1.4.5. - Migrate to AceRoutine v1.3.1, which changes
AceRoutine::coroutineMillis()
into non-virtual. - Change
SystemClock
to instantiate fromSystemClockTemplate
, which allowsSystemClock::clockMillis()
to also become non-virtual. Saves 20-40 bytes of flash. No discernible changes in CPU time.
- Bug Fix: Add
- 1.7.1 (2021-04-02)
- Simplify calculation of
SystemClock::getSecondsSinceSyncAttempt()
andSystemClock::getSecondsToSyncAttempt()
, which substantially simplifies the implementation ofSystemClockLoop
andSystemClockCoroutine
. - Update
tests/auniter.ini
to be consistent with my other libraries. Add entries forenv:teensy32
(which had been supported for a while) andenv:mkr1000
(which I just received).
- Simplify calculation of
- 1.7 (2021-03-24, TZ DB version 2021a)
- AceTime now has a
GitHub Discussion.
- Use that for general questions and discussions.
- Reserve GitHub Issues for bugs and feature requests.
- Add
tools/compare_noda
to compare Noda Time against AceTime.- Add
--nzd_file
flag tocompare_noda
to allow custom NodaZoneData files. - Run the Noda Time
TzdbCompiler
manually to generate customtzdata$(TZ_VERSION).nzd
for the specific TZDB version specified in the Makefile. - Add
tests/validation/BasicNodaTest
which matches AceTime completely from year 2000 until 2050. - Add
tests/validation/ExtendedNodaTest
which maches AceTime completely from year 1974 until 2050. - Identical results to
BasicHinnantDateTest
andExtendedHinnantDateTest
.
- Add
- Add
ace_time::clock::Stm32F1Clock
andace_time::hw::Stm32F1Rtc
- Specialized classes for the STM32F1 chip, particularly the Blue Pill
board, using the
LSE_CLOCK
(low speed external clock).- Blue Pill already includes the external 32.768 kHz crystal on pins C14 and C15.
- Alternative to the
ace_time::clock::StmRtcClock
class, which uses the genericSTM32RTC
library, which does not fully work on the STM32F1.STM32RTC
forgets the date fields upon power reset, preserving only the time fields.
- These classes write directly into the 32-bit RTC register on the F1, allowing AceTime to preserve both date fields and time fields.
- Specialized classes for the STM32F1 chip, particularly the Blue Pill
board, using the
- Massive refactoring of
USER_GUIDE.md
andREADME.md
for clarity- Extract subsections of
USER_GUIDE.md
into separate docs, makingUSER_GUIDE.md
shorter and hopefully more digestable. - Rename most of
USER_GUIDE.md
intodocs/date_time_timezone.md
. - Extract
Clock
classes intodocs/clock_system_clock.md
- Extract Installation into
docs/installation.md
. - Extract Validation and Testing into
docs/validation.md
. - Extract Comparisons into
docs/comparisons.md
. - Add documentation for
StmRtcClock
andStm32F1Clock
.
- Extract subsections of
- Remove virtual destructor from
ace_time::clock::Clock
class.- Saves 618 bytes of flash on 8-bit AVR processors, 328 bytes on SAMD21, but only 50-60 bytes on other 32-bit processors.
- Finish a working implementation of
acetz.py
.- Includes support for
fold
. - Create
BasicAcetzTest
andExtendedAcetzTest
and verify all zones validate.
- Includes support for
- Time zone short names are printed with spaces instead of underscore.
- Various
printShortNameTo()
andprintShortTo()
methods now print the short names with the underscore replaced with a space. Example, instead of "Los_Angeles", it is now "Los Angeles". - It seems to be more reasonable for most time zones.
- The time zone full name continues to print the entire canonical timezone identifier, e.g. "America/Los_Angeles".
- Applications that need finer control will have to provide their own rendering logic.
- Various
SystemClock
- Fix
SystemClock::forceSync()
that crashes if the referenceClock is null.- Used mostly for debugging and testing, so I doubt anyone ran into this.
- Add methods to retrieve the sync status of
SystemClock
.getSecondsSinceSyncAttempt()
getSecondsToSyncAttempt()
- `getClockSlew()
getSyncStatusCode()
- See System Clock Status for details.
- Potentially Breaking: Move various internal constants in
SystemClockLoop
andSystemClockCoroutine
toprivate
.- Examples
kStatusReady
, kStatusSent,
kStatusOk`k - These were all related to the internal finite state machine which should not have been exposed publically.
- The sync status of
SystemClock
is now exposed through documented public methods described above.
- Examples
- Fix
NtpClock
- Add warning that calling
analogRead()
too often (e.g. using buttons on a resistor ladder using AceButton library) on ESP8266 causes the WiFi connection to drop after 5-10 seconds.
- Add warning that calling
- AceTime now has a
GitHub Discussion.
- 1.6 (2021-02-17, TZ DB version 2021a)
- Remove
TimeZone::kTypeBasicManaged
andTimeZone::kTypeExtendedManaged
and merge them into just regularTimeZone::kTypeBasic
andTimeZone::kTypeExtended
.- Significantly simplifies the implementation of
TimeZone
. TimeZone
no longer holds a reference to aZoneProcessorCache
, it holds only a reference toZoneProcessor
.- The binding of
TimeZone
to itsBasicZoneProcessor
orExtendedZoneProcessor
now happens early, inside theBasicZoneManager
or theExtendedZoneManager
, instead of delaying it to various methods inside theTimeZone
through theZoneProcessorCache
. - This change should be invisible to library clients.
- Significantly simplifies the implementation of
- Large internal refactoring of ZoneProcessor, no external change
- Fully templatize
BasicZoneProcessor
intoBasicZoneProcessorTemplate
, andExtendedZoneProcessor
toExtendedZoneProcessorTemplate
. - Remove sentinel static
ZoneEra
anchor record which prevented easy templatization. - Remove direct dependency to
const ZoneInfo*
, replacing it with genericuintptr_t zoneKey
. - Insert
BrokerFactory
indirection layer to provide mapping from a genericuintptr_t zoneKey
to the correspondingZoneInfoBroker
. - Templatized classes now depend only on their respective
Zone*Broker
classes. - This change should be invisible to library clients.
- Fully templatize
- Fix stale
ZoneProcessor
binding toTimeZone
.- A dereferenced
nullptr
could crash the program ifTimeZone::toTimeZoneData()
was called immediately after calling theTimeZone::forZoneInfo()
factory method. - Some accessor methods in
TimeZone
(getZoneId()
,printTo()
,printShortTo()
) could return incorrect values if the number of unique TimeZones used by an application is greater than the cacheSIZE
template parameter given to theZoneManager
.- The problem occurs because the
ZoneProcessorCache
will rebind a previously allocatedZoneProcessor
to anotherTimeZone
when it runs out of available processors in the cache.
- The problem occurs because the
- A dereferenced
- Unlikely Breaking Change: Move
ZoneRegistrar.h
intointernal/
.- Rename
BasicZoneRegistrar
tobasic::ZoneRegistrar
. - Rename
ExtendedZoneRegistrar
toextended::ZoneRegistrar
. - The class is an implementation detail which is used only by
BasicZoneManager
andExtendedZoneManager
. It was not exposed to the end user and should not cause any breaking changes.
- Rename
- Add support for Thin Links using optional
linkRegistry[]
parameter in the constructors ofBasicZoneManager
andExtendedZoneManager
.- The
zonedb/zone_registry.h
andzonedbx/zone_registry.h
files now contain akLinkRegistrySize
and aLinkEntry kLinkRegistry[]
array. Each record in the array contains a mapping oflinkId
to itszoneId
. - The
ZoneManager::createForZoneId()
method will search the Thin Link registry if azoneId
is not found in the Zone registry. - See Zones and Links section in the USER_GUIDE.md.
- The
- Breaking Change: Rename
ZoneManager::registrySize()
tozoneRegistrySize()
.- Add
ZoneManager::linkRegistrySize()
method. - A
ZoneManager
can now hold 2 different registries: the Zone (and Fat Link) registry, and the Thin Link registry. So we need to distinguish between the 2 registries. - See the Default Registries section in the USER_GUIDE.md for an explanation of the Zone and Link registries.
- Add
- Remove
- 1.5 (2021-01-26, TZDB 2021a)
- Use binary search for both
ZoneManager::createForZoneName()
andZoneManager::createForZoneId()
.- Previously, the
zone_registry.cpp
was sorted by zoneName, so only thecreateForZoneName()
could use the binary search. The new solution sorts thezone_registry.cpp
entries byzoneId
instead ofzoneName
. ThecreateForZoneId()
can use the binary search algorith. - The
createForZoneName()
can also use the binary search because thezoneName
is converted dynamically to itszoneId
using the same djb2 hash algorithm used by thetzcompiler.py
. If there is a match, a final verification against the exactzoneName
is performed to make sure that there was no hash collision. - Updated
AutoBenchmark.ino
to determine that a binary search on the 266 zones inzonedb/zone_registry.cpp
is 9-10X faster (on average) than a linear search through the same list. (Linear search takes ~190 iterations; binary search takes ~9 iterations.)
- Previously, the
- Upgrade Link entries to be Fat Links".
- Links become essentially identical to Zone entries, with references to
the same underlying
ZoneEra
records. - Add
kZoneAndLinkRegistry[]
array inzone_registry.h
that contains all Links as well as Zones. - Add "Zones and Links" section in
USER_GUIDE.md
.
- Links become essentially identical to Zone entries, with references to
the same underlying
- Implement zoneName compression using
ace_common::KString
.- Saves about 1500-2300 bytes for basic
zonedb
info files, and 2500-3400 bytes for extendedzonedbx
info files.
- Saves about 1500-2300 bytes for basic
- Potentially Breaking Change: Remove
transitionBufSize
fromZoneInfo
struct, and migrate tokZoneBufSize{xxx}
constants in thezone_infos.h
files.- This was used only in validation tests under
tests/validation
and only forExtended{xxx}
tests. Saves 1 byte per Zone on 8-bit processors, but none on 32-bit processors due to 4-byte alignment. - This should have no impact on client code since this field was used only for validation testing.
- This was used only in validation tests under
- API Breaking Change: Replace
BasicZone::name()
andshortName()
withprintNameTo()
andprintShortNameTo()
. Same withExtendedZone::name()
andshortName()
, replaced withprintNameTo()
andprintShortNameTo()
.- After implementing zoneName compression, it was no longer possible to
return a simple pointer to the
name
andshortName
without using static memory buffers. - I expect almost no one to be using the
BasicZone
andExtendedZone
classes, since they are mostly useful for internal algorithms. - Client code that needs the old functionality can use
BasicZone::printNameTo(Print&)
,BasicZone::printShortNameTo(Print&)
(similarly forExtendedZone
) to print to aace_common::PrintStr<>
object, then extract the c-string usingPrintStr::getCstr()
.
- After implementing zoneName compression, it was no longer possible to
return a simple pointer to the
- Update UnixHostDuino 0.4 to EpoxyDuino 0.5.
- Explicitly blacklist megaAVR boards, and SAMD21 boards using
arduino:samd
Core >= 1.8.10.- This allows a helpful message to be shown to the user, instead of the pages and pages of compiler errors.
- Update TZ Database to 2021a.
- https://mm.icann.org/pipermail/tz-announce/2021-January/000065.html
- "South Sudan changes from +03 to +02 on 2021-02-01 at 00:00."
- Officially support STM32 and STM32duino after testing on STM32 Blue Pill.
- Use binary search for both
- 1.4.1 (2020-12-30, TZDB version 2020f for real)
- Actually update
src/ace_time/zonedb
andsrc/ace_time/zonedbx
zone info files to 2020f. Oops.
- Actually update
- 1.4 (2020-12-30, TZ DB version 2020f)
- Add entry for
ManualZoneManager
in examples/MemoryBenchmark. It seems to need between 0'ish to 250 bytes of flash. - Add support for creating and handling a
TimePeriod
error object.- Add
kMaxPeriodSeconds
andkInvalidPeriodSeconds
constants. - Add
forError()
factory method. - Add error checking to
toSeconds()
andTimePeriod(seconds)
constructor. - Printing an error object prints
<Invalid TimePeriod>
.
- Add
- Add support for the STM32RTC clock on an STM32 through the
ace_time::clock::StmRtcClock
class.- Currently experimental and untested.
- I do not have any STM32 boards right now, so I cannot test this code.
- See #39 for details.
- Thanks to Anatoli Arkhipenko (arkhipenko@).
- Add convenience factory methods for creating manual
TimeZone
objects. Saves a lot of typing by avoiding theTimeOffset
objects:TimeZone::forHours()
TimeZone::forMinutes()
TimeZone::forHourMinute()
- Fix incorrect
kTypeXxx
constants inZoneManager.h
. Fortunately, the numerical values overlapped perfectly, so didn't cause any bugs in actual code. USER_GUIDE.md
- Add documentation about accessing the meta information about the
zonedb
andzonedbx
databases:zonedb::kTzDatabaseVersion
zonedb::kZoneContext.startYear
zonedb::kZoneContext.untilYear
zonedbx::kTzDatabaseVersion
zonedbx::kZoneContext.startYear
zonedbx::kZoneContext.untilYear
- Add documentation that the
ZonedDateTime
must always be withinstartYear
anduntilYear
. An error object will be returned outside of that range.
- Add documentation about accessing the meta information about the
- Update TZ Database from 2020d to version 2020f
- 2020e
- https://mm.icann.org/pipermail/tz-announce/2020-December/000063.html
- "Volgograd switches to Moscow time on 2020-12-27 at 02:00."
- 2020f
- https://mm.icann.org/pipermail/tz-announce/2020-December/000064.html
- "'make rearguard_tarballs' no longer generates a bad rearguard.zi, fixing a 2020e bug. (Problem reported by Deborah Goldsmith.)"
- AceTime skips 2020e
- 2020e
- Update
examples/AutoBenchmark
to allow auto-generation of ASCII tables, which allows auto-generation of theREADME.md
file. Update CPU benchmarks for v1.4 from v0.8, since it is much easier to update these numbers now. No significant performance change from v0.8. - Huge amounts of Python
tools
refactoring- Convert all remaining
%
string formatting to f-strings. - Convert all internal camelCase dictionary keys to snake_case for consistency.
- Finish adding typing info to pass strict mypy checking.
- Centralize most typing info into
data_types/at_types.py
. - Move various global constants into
data_types/at_types.py
. - Migrate most Arduino specific transformations into
artransformer.py
. - Move offsetCode, deltaCode, atTimeCode, untilTimeCode, rulesDeltaCode
calculations and various bit-packing rules (e.g.
at_time_modifier
,ntil_time_modifier
) intoartransformer.py
instead of theargenerator.py
. - Include general and platform specific transformations in
the JSON (
zonedb.json
orzonedbx.json
) files. - Make
argenerator.py
use only the JSON output instead of making its own transformations. - Produce both
LettersMap
andLettersPerPolicy
in the JSON file. - Unify
CommentsCollection
intoCommentsMap
using anIterable
inDict[str, Iterable[str]]
. - Unify all transformer results into
TransformerResult
. - Check hash collisions for Link names, in addition to Zone names.
- Rename test data generator executables to
generate_data.*
or some variations of it, to avoid confusion with unit tests which are often namedtest_xxx.py
. - Add
--input_dir
flag togenerate_data.cpp
to allow the TZ database directory to be specified. - Add
--ignore_buf_size_too_big
to workaround a mismatch between the estimated Transition buffer size calculated bybufestimator.py
and the actual buffer size required byExtendedZoneProcessor.cpp
. - Add
--skip_checkout
flag totzcompiler.py
to allow local modifications of the TZ database files to be used for code generation. - Add
--delta_granularity
flag totransformer.py
to decouple it from--offset_granularity
, so that theSAVE
andRULES
granularity can be controlled independently from theSTDOFF
granularity. The--until_at_granularity
continues to controlAT
andUNTIL
. - Make output of
zinfo.py --debug
to be more readable. - Remove
--generate_zone_strings
fromtzcompiler.py
which removes the ability to createzone_strings.{h,cpp}
. The storage and optimization of strings are implementation details which seem to be better handled later in the pipeline. - Increase the range of
zonedbpy
database from the default[2000,2050)
to[1974, 2050)
to allowzinfo.py
to handle a larger range of queries. - Merge
--action
and--language
flags fortzcompiler.py
; only--language
flag needed right now. - Rename
RulesMap
toPoliciesMap
,rules_map
topolicies_map
,rule_name
topolicy_name
etc. For consistency withZonesMap
,zones_map
, andzone_name
. - Add
ZoneId
hashes to JSON output files.
- Convert all remaining
- Add entry for
- 1.3 (2020-11-30, TZ DB version 2020d)
- Minor tweaks to silence clang++ warnings.
- Create new
ZoneManager
interface (pure virtual) which is now the non-templatized parent to bothBasicZoneManager
andExtendedZoneManager
. AllowsZoneManager
to be passed around poloymorphically as a pointer or reference. - Fix broken
ZoneManager::indexForZoneName()
andZoneManager::indexForZoneId()
caused by incorrect implementations inBasicZoneRegistrar
andExtendedZoneRegistrar
. - Generate compile-time zoneIds for all zones in the form of
zonedb::kZoneId{Zone_Name}
andzonedbx::kZoneId{Zone_Name}
(e.g.zonedb::kZoneIdAmerica_Los_Angeles
). Can be given directly toZoneManager::createForZoneId()
. - Add constructors to
TimeZoneData
to allow initializers to set union members. Useful for initializing arrays ofTimeZoneData
. - Add
ManualZoneManager
implementation ofZoneManager
which implements onlycreateForTimeZoneData()
. Useful in applications which support onlyTimeZone::kTypeManual
(fixed std and dst offsets) due to memory constaints. - Add documentation of
TimeZoneData
,TimeZone::toTimeZoneData()
, andZoneManager::createFromTimeZoneData()
toUSER_GUIDE.md
. Looks like I added the class in v0.5 but forgot to document it. - Implement
LocalDateTime::compareTo()
using only its components instead of internally converting to epochSeconds. Not allLocalDateTime
can be represented by an epochSeconds, so this change makes the algorithm more robust. The semantics of the method should remain unchanged. - Update the doxygen docs of the
compareTo()
methods ofLocalDateTime
,LocalTime
,LocalDate
,OffsetDateTime
andZonedDateTime
to clarify the semantics of those operations.
- 1.2.1 (2020-11-12, TZ DB version 2020d)
- No functional change in this release. Mostly documentation.
- Update
examples/MemoryBenchmark
numbers from v0.8 to v1.2 with new auto-generator scripts. - Add Table of Contents to
USER_GUIDE.md
to help navigate the long document.
- 1.2 (2020-10-31, TZ DB version 2020d)
- Potentially Breaking: AceTime library now depends on the AceCommon
library (https://github.com/bxparks/AceCommon) to avoid having to maintain
multiple copies of various utility functions and classes. The API for most
(if not all) public classes have not changed. A number of internal helper
classes have moved to the AceCommon library. If you happen to directly use
some of these, you need to use the AceCommon library instead.
- Add dependency to AceCommon to all Makefiles.
- Add a
depends
attribute tolibrary.properties
.
- Replace various utlity functions and class with those from AceCommon:
class TimingStats
incrementMod()
,incrementModOffset()
,printPad2To()
,printPad3To()
strcmp_PP()
strchr_P()
,strrchr_P()
for ESP8266 and ESP32PrintStr
- Move
common/CrcEeprom.h
to AceUtils (https://github.com/bxparks/AceUtils) library.
- Potentially Breaking: AceTime library now depends on the AceCommon
library (https://github.com/bxparks/AceCommon) to avoid having to maintain
multiple copies of various utility functions and classes. The API for most
(if not all) public classes have not changed. A number of internal helper
classes have moved to the AceCommon library. If you happen to directly use
some of these, you need to use the AceCommon library instead.
- 1.1.2 (2020-10-25, TZ DB version 2020d)
- Move examples/WorldClock, examples/OneZoneClock and examples/CommandLineClock to a new repo (https://github.com/bxparks/clocks).
- Update
src/ace_time/zonedb
andsrc/ace_time/zonedbx
to TZDB 2020d (https://mm.icann.org/pipermail/tz-announce/2020-October/000062.html).- "Palestine ends DST earlier than predicted, on 2020-10-24."
- 1.1.1 (2020-10-18, TZ DB version 2020c)
- Add documentation for using the
PrintStr<N>
class from the AceUtils library (https://github.com:bxparks/AceUtils) on the variousprintTo()
methods. The string content can be retrieved using thePrintStr::getCstr()
method which returns a normalconst char*
C-string. ThePrintStr<N>
class replaces an earlier, unreleased version that was calledCstrPrint<N>
. - Add 'Validation Tests' GitHub workflow for running
tests/validation/*Test
. - Create
blacklist.json
file for eachcompare_xxx
tools, to disable validation checks for DST or abbreviations due to bugs in the 3rd party libraries. - Add
ValidationScope
enum to provide better control over whether the DST or abbrev fields are validated. - Print better diagnostic messages when
tests/validation
fails inBasicTransitionTest
andExtendedTransitionTest
classes. - Upgrade target version numbers of 3rd party libraries used for tests/validation: pytz from 2019.3 to 2020.1, JDK 11.0.6 to 11.0.8.
- Upgrade to TZDB 2020c
(https://mm.icann.org/pipermail/tz-announce/2020-October/000060.html)
- "Fiji starts DST later than usual, on 2020-12-20."
- Restrict GitHub Actions workflow to run just BasicHinnantDateTest and ExtendedHinnantDateTest, because the other Python and Java tests break every time a new TZDB version comes out.
- Add
DEVELOPER.md
file containing notes mostly for myself.
- Add documentation for using the
- 1.1 (2020-04-25, TZ DB version 2020a)
- Fix broken links in
README.md
. - Fix typos in
USER_GUIDE.md
and update its version number to 1.0 as it should have been back in October. - Massive refactor of
./tools
processing pipeline and updatevalidation/tests
.- Add mypy strict type checking for Python scripts under
tools
. - Funnel
validation*.{h,cpp}
code generation through a single program using avalidation_data.json
intermediate file. - Funnel processing of TZDB output from
transformer.py
into a singletzdbcollector.py
which can produce atzdb.json
output. - Separate
validator.py
processing into a distinct section.
- Add mypy strict type checking for Python scripts under
- Add validation tests against Python
dateutil
library (similar topytz
). - Update TZ Database version to 2020a that was released on 2020-04-23.
- Fix broken links in
- 1.0 (2019-10-02, TZ DB version 2019c)
- Add initial support for GitHub actions to implement continuous integration using the unit tests that run under UnitHostDuino.
- Allow NtpClock to use an existing WiFi connection. Add
examples/HelloNtpClock/
to demonstrate this. (#24, thanks @denis-stepanov). - Fix compiler warning about duplicate
FPSTR()
macro for ESP32 Core version >=1.0.3. - Generate the zonedb files for the various
validation/*Test
integration tests on-demand, instead of using the zonedb files checked intosrc/ace_time/zonedb[x]
. This allows us to match the version of the TZ Database used by AceTime to the version used by Java 11, pytz, and Hinnant Date, independently of the version that is generated intosrc/ace_time/zonedb[x]
. - Update
src/ace_time/zonedb[x]
files to TZ version 2019c. - Graduate to version 1.0.
- 0.8.1 (2019-08-26, TZ DB version 2019b)
- Update
SystemClockCoroutine
to be compatible withCOROUTINE_DELAY_SECONDS()
API changed in AceRoutine v0.3. - Fix typos and grammar errors in
USER_GUIDE.md
andREADME.md
. - Remove
YearMonth
abstraction inBasicZoneProcessor
, saving 12 bytes of flash in WorldClock.
- Update
- 0.8 (2019-08-19, TZ DB version 2019b)
- Handle
Fri<=1
correctly in various python scripts. (#17) - Improve resolution of zonedb files and ZoneProcessor classes. (#18)
- Both BasicZoneProcessor and ExtendedZoneProcessor support 1-minute resolutions for the AT and UNTIL fields.
- BasicZoneProcessor (and zonedb files) support a 15-minute resolution for both STDOFF and DST offset fields.
- ExtendedZoneProcessor (and zonedbx files) support one-minute
resolution for STDOFF field and 15-minute resolution for DST offset
(with a range of -01:00 to 02:45). (4 bits of the
deltaCode
field were given to theoffsetCode
field to give it the 1-minute resolution.) - Regenerate zonedbx using 1-minute resolution.
- Fix broken BasicZoneProcessor on some timezones between 1975 and 2000. Did not handle transitions from fixed ZoneEra (RULES='-') to named ZoneEra (RULES=reference) or vise versa. Verified against pytz and Hinnant date from 1975 to 2050.
- Handle
- 0.7.2 (2019-08-14, TZ DB version 2019b)
- Support timezones whose FORMAT contains a '/' with a fixed RULES column. Seems to make BasicZoneProcessor slightly smaller (20-80 bytes) and ExtendedZoneProcessor slightly bigger (50-100 bytes).
- Split
--granularity
into--until_at_granularity
andoffset_granularity
. Current zonedb files use values of 60 and 900 respectively.
- 0.7.1 (2019-08-13, TZ DB version 2019b)
- Replace
TimeZone::printAbbrevTo()
with more flexible and usefulTimeZone::getAbbrev()
.
- Replace
- 0.7 (2019-08-13, TZ DB version 2019b)
- Change TimeZoneData to store mStdOffset and mDstOffset in units of one minute (instead of 15-minute increments, "code") in the off chance that the library supports timezones with one-minute shifts in the future.
- Implement TimeOffset using 2 bytes (
int16_t
) instead of one byte (int8_t
) to give it a resolution of one minute instead of 15 minutes. - Generate zoneinfo files containing AT and UNTIL timestamps with
one-minute resolution (instead of 15-minute resolution). ZoneInfo files
(
zonedb/
andzonedbx/
) remain identical in size. Flash memory consumption usually increases by 130 to 500 bytes, but sometimes decreases by 50-100 bytes. Timezones whose DST transitions occur at 00:01 (America/Goose_Bay, America/Moncton, America/St_Johns, Asia/Gaza, Asia/Hebron) no longer truncate to 00:00. - Rename
TimeOffset::forHour()
toforHours()
for consistency withforMinutes()
. - Make
ExtendedZoneProcessor
more memory efficient for 32-bit processors by packing internal fields to 4-byte boundaries. - Integrate C++11/14/17
Hinnant Date library by
creating additional
tests/validation
tests. - Upgrade
zonedb
andzonedbx
zoneinfo files to version 2019b, after validating against the Hinnant date library. - Upgrade to
pytz
version 2019.2 to pickup TZ Database 2019b.
- 0.6.1 (2019-08-07, TZ DB version 2019a)
- Create a second Jenkins continuous build pipeline file
tests/JenskinfileUnitHost
to use UnitHostDuino to run the unit tests natively on Linux. The entire set of unit tests builds and runs in 20 seconds under UnixHostduino, compared to about 8 minutes for the single Nano environemnt, and 32 minutes against 4 boards (Nano, ESP8266, ESP32, SAMD21). - Fix Doxygen PREPROCESSOR so that it picks up classes which are enabled only on some environments (e.g. ESP8266, ESP32).
- Add circuit schematics to OneZoneClock and WorldClock examples.
- Simplify logging::printf() used internally for debugging.
- No functional change from 0.6.
- Create a second Jenkins continuous build pipeline file
- 0.6 (2019-08-02, TZ DB version 2019a)
- Update tests to use
UnixHostDuino
. - Fix broken restore functionality in
CommandLineClock
. Make it work on Unix using UnixHostDuino. Make it work on ESP8266 and ESP32 again. - Update flash memory consumption numbers in
zonedb/zone_infos.cpp
andzonedbx/zone_infos.cpp
. - Lift
ace_time::common::DateStrings
to justace_time::DateStrings
because it was the only data/time class in thecommon::
namespace so it seemed inconsistent and out of place. - Breaking Change Large refactoring and simplification of the
ace_time::clock
classes. MergedTimeKeeper
andTimeProvider
into a singleClock
class hierarcy. MergedSystemClockSyncLoop
(separate class) intoSystemClockLoop
(subclass ofSystemClock
) andSystemClockSyncCoroutine
(separate class) intoSystemClockCoroutine
(subclass ofSystemClock
with mixin oface_routine::Coroutine
). MergedkeepAlive()
into::loop()
and::runCoroutine()
methods, so we don't need to worry about it separately anymore. MadeSystemClockLoop
use the non-blocking methods ofClock
, making it as responsive asSystemClockCoroutine
. - Add
UnixClock.h
which provides access to the internal Unix clock when using UnixHostDuino.
- Update tests to use
- 0.5.2 (2019-07-29, TZ DB Version 2019a)
- Create
HelloZoneManager
and add it to theREADME.md
. - Recommend using "Arduino MKR ZERO" board or "SparkFun SAMD21 Mini Breakout" board for the "SAMD21 M0 Mini" boards.
- Pack
basic::ZoneInfo
,extended:ZoneInfo
and related structs tighter on 32-bit processors, saving 2.5kB on the Basic zoneinfo files and 5.6kB on Extended zoneinfo files. - Pack
basic::Transition
andextended::Transition
tighter on 32-bit processors, saving 20-32 bytes onBasicZoneProcessor
andExtendedZoneProcessor
. - Test and support ATmega2560 AVR processor.
- Replace all uses of
Serial
withSERIAL_PORT_MONITOR
for compatibility with boards (e.g. SAMD boards) which useSerialUSB
as the serial monitor.
- Create
- 0.5.1 (2019-07-24, TZ DB version 2019a, beta)
- Add documentation about the ZoneManager into
USER_GUIDE.md
. - Move
DateStrings
string pointers into PROGMEM, saving 42 bytes of RAM. - Use
SERIAL_PORT_MONITOR
instead ofSerial
everywhere for portability across different Arduino boards. - Support SAMD21 boards except for EEPROM which SAMD21 does not support.
- Add documentation about the ZoneManager into
- 0.5 (2019-07-21, TZ DB version 2019a, beta)
- Remove over-engineered
SystemClockHeartbeatLoop
andSystemClockHeartbeatLoop
and replace with just a call toSystemClock::keepAlive()
. - Remove overly complex
ManualZoneProcessor
and merge most of its functionality directly into theTimeZone
usingkTypeManual
. We lose the manual abbreviations provided byManualZoneProcessor
but the simplification of using just theTimeZone
object without an extra object seems worth it. - Add a stable
zoneId
toZoneInfo
that identifies a zone. It is formed using a hash of the fully qualified zonename
. Thetzcompiler.py
generator script will detect hash collisions and create an alternate hash. - Rename old
ZoneManager
as theZoneRegistrar
, and repurposeZoneManager
as theTimeZone
factory, which keeps an internal cache ofZoneProcessor
.TimeZone
objects can be dynamically bound toZoneProcessor
objects usingcreateForZoneInfo()
,createForZoneName()
, `createForZoneId(). - Add
TimeZoneData
data struct to allow serialization of a TimeZone object as a zoneId so that it can be reconstructed usingZoneManger::createForTimeZoneData()
. - Rename
ZoneSpecifier
toZoneProcessor
to describe its functionality better.ZoneInfo
is now passed directly into the TimeZone object using theTimeZone::forZoneInfo()
factory method, with theZoneProcessor
acting as a helper object.
- Remove over-engineered
- 0.4 (2019-07-09, TZ DB version 2019a, beta)
- Support the less-than-or-equal syntax
{dayOfWeek}<={dayOfMonth}
appearing in version 2019b of the TZ Database which containsRule Zion, 2005 to 20012, IN Apr, ON Fri<=1
. - Add BasicZoneManager and ExtendedZoneManager to retrieve ZoneInfo from TZ Database string identifier (e.g. "America/Los_Angeles").
- Add configuration options (
ACE_TIME_USE_BASIC_PROGMEM
andACE_TIME_USE_EXTENDED_PROGMEM
) to place zoneinfo files into PROGMEM to save static RAM.
- Support the less-than-or-equal syntax
- 0.3.1 (2019-06-30, TZ DB version 2019a, beta)
- Add copyright notices on source files.
- Fix typos and formatting of
README.md
andUSER_GUIDE.md
. - No functional change from 0.3.
- 0.3 (2019-06-28, TZ DB version 2019a, beta)
- Support
Link
entries from TZ Database files as C++ references to correspondingZone
entries. - Add
backward
andetctera
files from TZ Database to the tzcompiler.py processing.ExtendedZoneProcessor
now supports every Zone and Link entry in the TZ Database (except those inbackzone
andsystemv
). - Add better zone and link name normalization. Convert
+
into_PLUS_
, all other non-alphanumeric (0-9a-zA-Z_) converted to underscore_
. - Move validation unit tests into separate
tests/validation
directory. Use Makefiles to generatevalidation_data.*
files dynamically at compile time.
- Support
- 0.2 (2019-06-26, TZ DB version 2019a, alpha)
- Reduce flash memory size of WorldClock by removing extra font.
- Split
USER_GUIDE.md
fromREADME.md
. - Rename
ace_time::provider
toace_time::clock
and renameSystemTimeProvider
toSystemClock
. - Add
HelloSystemClock
example code. - Add
isValidYear()
into variousforComponents()
methods to check int8_t range of year component. - Rename
DateStrings::weekDay*()
methods todayOfWeek*()
for consistency. - Change
ZonedDateTime::printTo()
format to match Java Time format. - Remove
friend
declarations not related to unit tests. - Remove redundant definitions of
kInvalidEpochSeconds
, standardize onLocalDate::kInvalidEpochSeconds
. - Make
timeOffset
a required parameter for constructors and factory methodsOffsetDateTime
instead of defaulting toTimeOffset()
. - Make
timeZone
a required parameter in constructors and factory methods ofZonedDateTime
. - Fix
BasicZoneProcessor::getOffsetDateTime()
to handle gaps and overlaps in a reasonable way, and perform some amount of normalization.
- 0.1 (2019-06-15, TZ DB version 2019a, alpha)
- Initial release on GitHub to establish a reference point.
- Upgraded to TZ Database version 2019a.
- (2018-08-20)
- Start of library in private repo.