Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Dec 17, 2025

This PR contains the following updates:

Package Update Change
gabime/spdlog minor 1.8.5 -> 1.16.0

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

gabime/spdlog (gabime/spdlog)

v1.16.0: version 1.16.0

Compare Source

Full Changelog: gabime/spdlog@v1.15.3...v1.16.0

Special thanks to @​tt4g for assisting with community questions and issues.

v1.15.3: Version 1.15.3

Compare Source

Full Changelog: gabime/spdlog@v1.15.2...v1.15.3

Special thanks to @​tt4g for assisting with community questions and issues.

v1.15.2: Version 1.15.2

Compare Source

Full Changelog: gabime/spdlog@v1.15.1...v1.15.2

Special thanks to @​tt4g for assisting with community questions and issues.

v1.15.1: Version 1.15.1

Compare Source

Full Changelog: gabime/spdlog@v1.15.0...v1.15.1

Special thanks to @​tt4g for helping with community questions and issues

v1.15.0: Version 1.15.0

Compare Source

What's Changed

Full changelog: gabime/spdlog@v1.14.1...v1.15.0

Special thanks to @​tt4g for helping with community questions and issues

v1.14.1: Version 1.14.1

Compare Source

  • Fixed compatibility issue between c++17 and c++11 (#​3081).
  • Fixed creating folders under windows when full path with drive letter is given (#​3079).
  • Added mdc sample. Note: mdc is not supported in async loggers.

v1.14.0: Version 1.14.0

Compare Source

  • Updated bundled fmt to version 10.2.1.
  • Mapped Diagnostic Context (MDC) support by @​massimiliano96 in #​2907.
    MDC is a simple map of key->string values stored in thread local storage whose content will be printed by the loggers.
    Usage example:
#include "spdlog/mdc.h"
..
spdlog::mdc::put("mdc_key_1", "mdc_value_1");
spdlog::info("Hello, {}", "World!");  // => [2024-04-26 02:08:05.040] [info] [mdc_key_1:mdc_value_1] Hello, World!

Full Changelog: gabime/spdlog@v1.13.0...v1.14.0

Special thanks to @​tt4g for helping with community questions and issues.

v1.13.0: Version 1.13.0

Compare Source

Release Notes

Enhancements
Bug Fixes
Maintenance
  • Added and updated various tests for circular_q.
  • Removed obsolete part from CMake configuration files (#​2871). Thanks to @​albert-github.
  • Removed policy_max from cmake_minimum_required(..).
  • Updated clang-format to google style and updated various formatting scripts.
  • Bumped catch2

Special thanks to @​tt4g for helping with community questions and issues.

v1.12.0: Version 1.12.0

Compare Source

Special thanks to @​tt4g for helping with community questions and issues.

v1.11.0: Version 1.11.0

Compare Source

Special thanks to @​tt4g for helping with community questions and issues.

v1.10.0: Version 1.10.0

Compare Source

  • Bump fmt to version 8.1.1.
  • Added file event handlers #​2165, #​2169 Thanks @​seker.
    You can get callbacks from spdlog before/after log file has been opened or closed.
    This is useful for cleanup procedures or for adding something to the start/end of the log files. Example:
  void file_events_example()
  {
    // pass the spdlog::file_event_handlers to file sinks for open/close log file notifications
    spdlog::file_event_handlers handlers;
    handlers.before_open = [](spdlog::filename_t filename) { spdlog::info("Before opening {}", filename); };
    handlers.after_open = [](spdlog::filename_t filename, std::FILE *fstream) { fputs("After opening\n", fstream); };
    handlers.before_close = [](spdlog::filename_t filename, std::FILE *fstream) { fputs("Before closing\n", fstream); };
    handlers.after_close = [](spdlog::filename_t filename) { spdlog::info("After closing {}", filename); };
    auto my_logger = spdlog::basic_logger_st("some_logger", "logs/events-sample.txt", true, handlers);        
  }

Special thanks to @​tt4g for his support in answering community questions and issues.

v1.9.2: Version 1.9.2

Compare Source

v1.9.1: Version 1.9.1

Compare Source

  • Support for {fmt}'s compile time validation of format strings (#​2008). Thanks @​dkavolis !
    In C++20:

    spdlog::info("{:d}", "bad format_arg"); // should not compile

    In C++14/17 - format string can be validated at compile time using FMT_STRING:

    spdlog::info(FMT_STRING("{:d}"), "bad format_arg");  // should not compile
  • Fixed compilation error in Clang 13 with C++20 (#​2011, #​2013) Thanks @​sjanel !

v1.9.0: Version 1.9.0

Compare Source

What's new
Fixes and Improvements

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate
Copy link
Contributor Author

renovate bot commented Dec 17, 2025

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants