Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion fmt/fmt
Submodule fmt updated 57 files
+6 −0 .clang-format
+5 −3 .github/workflows/cifuzz.yml
+1 −1 .github/workflows/doc.yml
+8 −35 .github/workflows/lint.yml
+15 −13 .github/workflows/linux.yml
+6 −2 .github/workflows/macos.yml
+4 −4 .github/workflows/scorecard.yml
+4 −9 .github/workflows/windows.yml
+24 −14 CMakeLists.txt
+326 −0 ChangeLog.md
+10 −9 README.md
+48 −25 doc/api.md
+1 −1 doc/get-started.md
+2 −2 doc/index.md
+4 −5 doc/syntax.md
+20 −28 include/fmt/args.h
+1,904 −2,004 include/fmt/base.h
+376 −470 include/fmt/chrono.h
+20 −22 include/fmt/color.h
+46 −24 include/fmt/compile.h
+97 −52 include/fmt/format-inl.h
+1,098 −1,283 include/fmt/format.h
+43 −55 include/fmt/os.h
+43 −88 include/fmt/ostream.h
+107 −130 include/fmt/printf.h
+99 −131 include/fmt/ranges.h
+74 −47 include/fmt/std.h
+97 −46 include/fmt/xchar.h
+19 −1 src/fmt.cc
+4 −1 src/format.cc
+6 −11 src/os.cc
+43 −0 support/check-commits
+35 −3 support/mkdocs
+311 −290 support/python/mkdocstrings_handlers/cxx/__init__.py
+31 −61 support/release.py
+8 −20 test/CMakeLists.txt
+14 −0 test/args-test.cc
+146 −141 test/base-test.cc
+40 −15 test/chrono-test.cc
+1 −27 test/compile-error-test/CMakeLists.txt
+39 −12 test/compile-test.cc
+2 −2 test/format-impl-test.cc
+189 −26 test/format-test.cc
+19 −11 test/gtest/gmock-gtest-all.cc
+24 −10 test/gtest/gmock/gmock.h
+4 −3 test/gtest/gtest/gtest.h
+24 −0 test/no-builtin-types-test.cc
+1 −1 test/os-test.cc
+25 −0 test/perf-sanity.cc
+45 −26 test/ranges-test.cc
+3 −3 test/scan-test.cc
+10 −7 test/scan.h
+29 −3 test/std-test.cc
+1 −1 test/test-assert.h
+1 −1 test/unicode-test.cc
+4 −5 test/util.cc
+23 −105 test/xchar-test.cc
2 changes: 1 addition & 1 deletion fmt/idf_component.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: "11.0.1"
version: "11.1.3"
description: Formatting library providing a fast and safe alternative to C stdio and C++ iostreams.
url: https://github.com/espressif/idf-extra-components/tree/master/fmt
dependencies:
Expand Down
4 changes: 2 additions & 2 deletions fmt/sbom_fmt.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: fmt
version: 11.0.1
version: 11.1.3
cpe: cpe:2.3:a:fmt:fmt:{}:*:*:*:*:*:*:*
supplier: 'Organization: fmt <https://fmt.dev/latest/index.html>'
supplier: "Organization: fmt <https://fmt.dev/latest/index.html>"
description: A modern formatting library
url: https://github.com/fmtlib/fmt/
hash: b50e685db996c167e6c831dcef582aba6e14276a
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@euripedesrocha I think this hash has to be updated to the new commit of the submodule.

Loading