|
1 |
| -## v0.5.0 (2024-09-02) |
2 |
| - |
3 |
| -### New Features |
4 |
| - |
5 |
| -- add warning for ESP-IDF actions if IDF_TOOLCHAIN is not set to clang |
6 |
| - |
7 |
| -## v0.4.2 (2023-10-16) |
8 |
| - |
9 |
| -### Fix |
10 |
| - |
11 |
| -- **idf_extension**: Don't override the clang_extra_args with empty string if not specified |
12 |
| - |
13 |
| -## v0.4.1 (2023-09-27) |
14 |
| - |
15 |
| -### Fix |
16 |
| - |
17 |
| -- check project files only by default |
18 |
| - |
19 |
| -## v0.4.0 (2023-09-22) |
20 |
| - |
21 |
| -### Feat |
22 |
| - |
23 |
| -- support default value run-clang-tidy as well |
24 |
| - |
25 |
| -### Fix |
26 |
| - |
27 |
| -- skip writing report.json and html reports when there's no issue |
28 |
| - |
29 |
| -## v0.3.0 (2023-07-31) |
30 |
| - |
31 |
| -### Feat |
32 |
| - |
33 |
| -- add support for '--exit-code' flag |
34 |
| - |
35 |
| -### Fix |
36 |
| - |
37 |
| -- call exe file directly |
38 |
| - |
39 |
| -## v0.2.3 (2023-02-17) |
40 |
| - |
41 |
| -### Fix |
42 |
| - |
43 |
| -- use real path when calling idf.py |
44 |
| - |
45 |
| -## v0.2.2 (2022-11-09) |
46 |
| - |
47 |
| -### Fix |
48 |
| - |
49 |
| -- update dependency for codereport related packages |
50 |
| -- run clang-tidy check at the src folder instead of build dir |
51 |
| -- stop using `shell=True` for subprocess.Popen |
52 |
| -- check if `run-clang-tidy.py` exists while calling, not raise ValueError if not found "Enabled checks" |
53 |
| - |
54 |
| -## v0.2.1 (2022-09-16) |
55 |
| - |
56 |
| -### Fix |
57 |
| - |
58 |
| -- prefix the call to run_clang_tidy.py with python |
59 |
| -- don't open temporary file twice |
60 |
| - |
61 |
| -## v0.2.0 (2022-04-14) |
62 |
| - |
63 |
| -### Fix |
64 |
| - |
65 |
| -- add jinja2 version constraint |
66 |
| -- fix error when running codereport with empty warnings file |
67 |
| -- remove duplicated cli option |
68 |
| - |
69 |
| -### Feat |
70 |
| - |
71 |
| -- remove color output when running clang-check |
72 |
| -- rename extras_require to "html" |
73 |
| -- duplicate clang-tidy output to sys.stdout and file output |
74 |
| -- add cli option "--include-paths" and "--exclude-paths" |
75 |
| -- add cli option '--all-related-files', run clang-tidy with project dir only by default |
76 |
| - |
77 |
| -## v0.1.2 (2021-11-15) |
78 |
| - |
79 |
| -### Fix |
80 |
| - |
81 |
| -- add idf_path as prefix in codereport |
82 |
| -- remove html report folder if exists |
83 |
| -- use realpath for `run_clang_tidy_py` if exists, respect files under $PATH |
84 |
| -- add error message when missing pyyaml in idf_clang_tidy |
85 |
| -- remove asci color in warnings.txt when generating html report |
86 |
| - |
87 |
| -### Feat |
88 |
| - |
89 |
| -- add cli argument `files` for file paths regex |
90 |
| -- extract chain method `remove_color_output` |
91 |
| -- rename idf_clang -> idf_clang_tidy |
92 |
| -- remove gcc flags |
93 |
| - |
94 |
| -## v0.1.1 (2021-11-08) |
95 |
| - |
96 |
| -### Fix |
97 |
| - |
98 |
| -- remove pyyaml requirement |
99 |
| - |
100 |
| -## v0.1.0 (2021-11-08) |
101 |
| - |
102 |
| -### Feat |
103 |
| - |
104 |
| -- add idf.py extension |
105 |
| -- add idf_clang to cli |
| 1 | +## v0.6.0 (2024-12-02) |
| 2 | + |
| 3 | +### New Features |
| 4 | + |
| 5 | +- drop support for ESP-IDF v4.4 and Python 3.6 |
| 6 | + |
| 7 | +### Bug Fixes |
| 8 | + |
| 9 | +- Windows - run-clang-tidy.py not found in your PATH |
| 10 | +- update codereport version to allow usage of pygments 2.12+ |
| 11 | + |
| 12 | +## v0.5.0 (2024-09-02) |
| 13 | + |
| 14 | +### New Features |
| 15 | + |
| 16 | +- add warning for ESP-IDF actions if IDF_TOOLCHAIN is not set to clang |
| 17 | + |
| 18 | +## v0.4.2 (2023-10-16) |
| 19 | + |
| 20 | +### Fix |
| 21 | + |
| 22 | +- **idf_extension**: Don't override the clang_extra_args with empty string if not specified |
| 23 | + |
| 24 | +## v0.4.1 (2023-09-27) |
| 25 | + |
| 26 | +### Fix |
| 27 | + |
| 28 | +- check project files only by default |
| 29 | + |
| 30 | +## v0.4.0 (2023-09-22) |
| 31 | + |
| 32 | +### Feat |
| 33 | + |
| 34 | +- support default value run-clang-tidy as well |
| 35 | + |
| 36 | +### Fix |
| 37 | + |
| 38 | +- skip writing report.json and html reports when there's no issue |
| 39 | + |
| 40 | +## v0.3.0 (2023-07-31) |
| 41 | + |
| 42 | +### Feat |
| 43 | + |
| 44 | +- add support for '--exit-code' flag |
| 45 | + |
| 46 | +### Fix |
| 47 | + |
| 48 | +- call exe file directly |
| 49 | + |
| 50 | +## v0.2.3 (2023-02-17) |
| 51 | + |
| 52 | +### Fix |
| 53 | + |
| 54 | +- use real path when calling idf.py |
| 55 | + |
| 56 | +## v0.2.2 (2022-11-09) |
| 57 | + |
| 58 | +### Fix |
| 59 | + |
| 60 | +- update dependency for codereport related packages |
| 61 | +- run clang-tidy check at the src folder instead of build dir |
| 62 | +- stop using `shell=True` for subprocess.Popen |
| 63 | +- check if `run-clang-tidy.py` exists while calling, not raise ValueError if not found "Enabled checks" |
| 64 | + |
| 65 | +## v0.2.1 (2022-09-16) |
| 66 | + |
| 67 | +### Fix |
| 68 | + |
| 69 | +- prefix the call to run_clang_tidy.py with python |
| 70 | +- don't open temporary file twice |
| 71 | + |
| 72 | +## v0.2.0 (2022-04-14) |
| 73 | + |
| 74 | +### Fix |
| 75 | + |
| 76 | +- add jinja2 version constraint |
| 77 | +- fix error when running codereport with empty warnings file |
| 78 | +- remove duplicated cli option |
| 79 | + |
| 80 | +### Feat |
| 81 | + |
| 82 | +- remove color output when running clang-check |
| 83 | +- rename extras_require to "html" |
| 84 | +- duplicate clang-tidy output to sys.stdout and file output |
| 85 | +- add cli option "--include-paths" and "--exclude-paths" |
| 86 | +- add cli option '--all-related-files', run clang-tidy with project dir only by default |
| 87 | + |
| 88 | +## v0.1.2 (2021-11-15) |
| 89 | + |
| 90 | +### Fix |
| 91 | + |
| 92 | +- add idf_path as prefix in codereport |
| 93 | +- remove html report folder if exists |
| 94 | +- use realpath for `run_clang_tidy_py` if exists, respect files under $PATH |
| 95 | +- add error message when missing pyyaml in idf_clang_tidy |
| 96 | +- remove asci color in warnings.txt when generating html report |
| 97 | + |
| 98 | +### Feat |
| 99 | + |
| 100 | +- add cli argument `files` for file paths regex |
| 101 | +- extract chain method `remove_color_output` |
| 102 | +- rename idf_clang -> idf_clang_tidy |
| 103 | +- remove gcc flags |
| 104 | + |
| 105 | +## v0.1.1 (2021-11-08) |
| 106 | + |
| 107 | +### Fix |
| 108 | + |
| 109 | +- remove pyyaml requirement |
| 110 | + |
| 111 | +## v0.1.0 (2021-11-08) |
| 112 | + |
| 113 | +### Feat |
| 114 | + |
| 115 | +- add idf.py extension |
| 116 | +- add idf_clang to cli |
0 commit comments