Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

quill 3.4.0 #153363

Merged
merged 2 commits into from
Nov 5, 2023
Merged

quill 3.4.0 #153363

merged 2 commits into from
Nov 5, 2023

Conversation

p-linnane
Copy link
Member

Created by brew bump


Created with brew bump-formula-pr.

release notes
- Resolved `bad_variant_access` error occurring when using Quill as a pre-compiled library with a distinct queue
  type. ([#276](https://github.com/odygrd/quill/pull/276))
  • Resolved a bug in RotatingFileHandler associated with logfiles located outside the working directory,
    specifically when used with open_mode a. (#340)

  • Added a name() method to the Logger class which provides the logger name. (#345)

  • Fixed library and include paths in the pkg-config configuration. (#352)

  • Move get_root_logger() definition from cpp to the header file (#348)

  • Introduced support for logging character arrays. You can now log character arrays, even when they don't contain a null-terminating character. Additionally, character arrays with null characters in the middle are supported, and the logger will capture the content until the null character is encountered. (#353)

    For example

        union
      {
        char no_0[2];
        char mid_0[6]{'1', '2', '3', '4', '\0', 6};
      } char_arrays;
    
      // only output "12" even if there's no '\0' at the end
      LOG_INFO(logger, R"(This is a log info example for char array without '\0': {})", char_arrays.no_0);
    
      // output "1234" until the '\0'
      LOG_INFO(logger, R"(This is a log info example for char array with '\0' in middle: {})",
               char_arrays.mid_0);
  • Minor improvements in BoundedQueue and UnboundedQueue . Throughput is slightly improved.
    Previous: 2.21 million msgs/sec average, total time elapsed: 1809 ms for 4000000 log messages.
    New: 2.24 million msgs/sec average, total time elapsed: 1787 ms for 4000000 log messages.

  • Disable fmt::join(data, "") at compile time. (#356)

  • Fix compile error in Apple Clang 12. (#360)

  • Add guards for redefined preprocessor variables.

  • Fix uint64_t to time_t implicit conversion error in Clang 18.

  • Update bundled libfmt to v10.1.1

@github-actions github-actions bot added the bump-formula-pr PR was created using `brew bump-formula-pr` label Nov 5, 2023
Copy link
Contributor

github-actions bot commented Nov 5, 2023

🤖 An automated task has requested bottles to be published to this PR.

@github-actions github-actions bot added the CI-published-bottle-commits The commits for the built bottles have been pushed to the PR branch. label Nov 5, 2023
@BrewTestBot BrewTestBot added this pull request to the merge queue Nov 5, 2023
Merged via the queue into Homebrew:master with commit 4d07c5c Nov 5, 2023
12 checks passed
@p-linnane p-linnane deleted the bump-quill-3.4.0 branch November 5, 2023 04:34
@github-actions github-actions bot added the outdated PR was locked due to age label Dec 6, 2023
@github-actions github-actions bot locked as resolved and limited conversation to collaborators Dec 6, 2023
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
bump-formula-pr PR was created using `brew bump-formula-pr` CI-published-bottle-commits The commits for the built bottles have been pushed to the PR branch. outdated PR was locked due to age
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants