All Versions
24
Latest Version
Avg Release Cycle
18 days
Latest Release
-
Changelog History
Page 1
Changelog History
Page 1
-
v1.7.2 Changes
๐ Improvements/Fixes
- ๐ Fix compile error when C++20 is used on windows (#162)
-
v1.7.1 Changes
๐ Improvements/Fixes
- ๐ Fix support for wide characters on Windows (#168)
- ๐ Fix compilation error when
Quill::Logger*
is stored as a class member in templated classes - โ Add
FilenameAppend::DateTime
as an option when creating a file handler
-
v1.7.0 Changes
๐ New Features
- Add a new function
quill::get_all_loggers()
that returns all the existing loggers. (#114) - โ Add
%(level_id)
to pattern formatter. (#136) - ๐ Users can now specialise
copy_loggable<T>
to mark user defined types as safe to copy. (#132)
๐ Improvements/Fixes
- ๐ Fix initializations for C++17.
- ๐ Fix compiler warning in
check_format()
function. - Replace
QUILL_DUAL_QUEUE_MODE
withQUILL_DISABLE_DUAL_QUEUE_MODE
. - โก๏ธ Update bundled fmt to 8.1.1
- ๐ Minor performance and accuracy improvements to rdtsc clock used by the backend thread.
- ๐ Fix compile error when C++20 is used. (#162)
- Fix
get_page_size()
to only call sysconf once. (#160) - ๐ Fix incorrect timestamps in the log file when the system clock is updated. (#127)
- ๐ฆ Previously if
quill:start(true)
was called more than once in the application, the signal handlers would get initialised again. Now any subsequent calls toquill:start(true)
will now have no effect (#167) - Previously when the max limit of rotated files in
RotatingFileHandler
was reached, quill would stop rotating and instead keep logging everything into the last log file. Now when the maximum limit of files is reached, quill will now keep rotating by replacing the oldest logs. (#157) - ๐ Improve the backend logging thread responsiveness when variables are logged in loops without any delay from multiple threads. (#116)
- ๐ Fix some undefined behaviour issues reported via the AddressSantizer on the backend logging thread. (#166)
- Add a new function
-
v1.6.4 Changes
๐ New Features
- Add a new function
quill::get_all_loggers()
that returns all the existing loggers. (#114) - โ Add
%(level_id)
to pattern formatter. (#136)
๐ Improvements/Fixes
- ๐ Fix initializations for C++17.
- ๐ Fix compiler warning in check_format function.
- Replace
QUILL_DUAL_QUEUE_MODE
withQUILL_DISABLE_DUAL_QUEUE_MODE
. - โก๏ธ Update bundled fmt to 8.1.1
- ๐ Minor performance and accuracy improvements to rdtsc clock used by the backend thread.
- ๐ Fix compile error when C++20 is used. (#162)
- Fix
get_page_size()
to only call sysconf once. (#160) - ๐ Fix incorrect timestamps in the log file when the system clock is updated. (#127)
- Add a new function
-
v1.6.1 Changes
๐ Improvements/Fixes
- ๐ Fix windows C++20 build. (#83)
- ๐ Fix ARM build on windows.
- ๐ Fix
example_backtrace
and minor bug when destructing with empty backtrace.
-
v1.6.0 Changes
December 03, 2020New Features
- ๐ Dual queue mode offering even lower latencies on hot paths. See Dual Queue Mode.
- โ Added a signal handler for linux and windows. The signal handler flushes the log when the app crashes or exits. (#1)
- โ Added support for custom handlers. (#75)
- Quill now compiles and runs on Cygwin.
๐ Improvements/Fixes
- ๐ท The queue from the caller to the backend worker thread has been reworked. The new queue generates slightly better assembly than the previous one. Quill does no longer depend on mapping the same region of physical memory twice.
- Replaced an assertion check that could trigger incorrectly. (#68)
- ๐ Fixed build on
ARM_ARCH < 6
. (#78) - Fixed compile errors when
QUILL_NOEXCEPTIONS
,CMAKE_CXX_STANDARD 20
,QUILL_USE_BOUNDED_QUEUE
are set. - ๐ The unit tests have been moved to a separate binary with their own
main()
. This increased build times when building the tests, but the failures are now easier to debug on different CI platforms and the tests can also run faster in parallel. - ๐ Fixed minor compiler warnings on windows.
- โฌ๏ธ Upgraded bundled libfmt to
7.1.3
- โก๏ธ Updated readme benchmarks section for v.1.6.0
Note
- If a custom queue capacity is defined using
#define QUILL_QUEUE_CAPACITY
after1.6.0
the whole library needs to be recompiled.
-
v1.5.3 Changes
-
v1.5.2 Changes
November 07, 2020- โ Removed the use of
fmt::format()
inFileUtilities.cpp
as a workaround to the link errors in fmt v7. Use the header only version of libfmt when external libfmt is defiend is no longer required.
- โ Removed the use of