|
1 | 1 | # Changelog
|
2 | 2 |
|
| 3 | +## [10.1.2] - 2023-12-14 |
| 4 | + |
| 5 | +### Changed |
| 6 | + |
| 7 | +- Change Cli parser from StructOpt to Clap ([GH-199]) |
| 8 | +- `crox`: Remove malformed serde attribute ([GH-205]) |
| 9 | +- `decodeme`: Allow whitespace control chars in EventId texts ([GH-208]) |
| 10 | +- `measureme`: bump parking_lot to 0.12 to sync with rustc ([GH-209]) |
| 11 | +- Allow copying example shell scripts ([GH-211]) |
| 12 | + |
3 | 13 | ## [10.1.1] - 2023-02-08
|
4 | 14 |
|
5 | 15 | ### Changed
|
| 16 | + |
6 | 17 | - `measureme`: Update `perf-event-open-sys` to 3.0 ([GH-198])
|
7 | 18 | - Move profile data analysis into analyzeme from summarizeme ([GH-200])
|
8 | 19 | - `summarize`: Update `prettytable` dependency to avoid segfaults on large profiles ([GH-202])
|
9 | 20 |
|
10 | 21 | ## [10.1.0] - 2022-06-24
|
11 | 22 |
|
12 | 23 | ### Changed
|
| 24 | + |
13 | 25 | - Change install instructions to use stable branch ([GH-189])
|
14 | 26 | - `analyzeme`: Remove some unused dependencies ([GH-192])
|
15 | 27 | - `decodeme`: Generate nicer panic messages for incomplete data files ([GH-193])
|
|
19 | 31 | ## [10.0.0] - 2021-10-06
|
20 | 32 |
|
21 | 33 | ### Changed
|
| 34 | + |
22 | 35 | - `analyzeme`: Version-specific parts split out into `decodeme` crate. ([GH-181])
|
23 | 36 | - `analyzeme`: The crate now supports loading both v7 and v8 of the file format. ([GH-181])
|
24 | 37 |
|
25 | 38 | ## [9.2.0] - 2021-09-13
|
| 39 | + |
26 | 40 | ### Changed
|
| 41 | + |
27 | 42 | - `analyzeme`: Makes a couple of methods in ProfilingData public. ([GH-180])
|
28 | 43 |
|
29 | 44 | ## [9.1.2] - 2021-05-21
|
| 45 | + |
30 | 46 | ### Added
|
| 47 | + |
31 | 48 | - `measureme`: Allow recording interval events without using the drop guard ([GH-159])
|
32 | 49 |
|
33 | 50 | ## [9.1.1] - 2021-04-23
|
| 51 | + |
34 | 52 | ### Changed
|
| 53 | + |
35 | 54 | - `crox`: Update the `--dir` flag to look for the correct file extension for traces ([GH-155])
|
36 | 55 | - `measureme`: Update the `memmap` dependency to `memmap2` which is actively maintained ([GH-156])
|
37 | 56 |
|
38 | 57 | ## [9.1.0] - 2021-02-19
|
| 58 | + |
39 | 59 | ### Added
|
| 60 | + |
40 | 61 | - `measureme`: Add support for using hardware performance counters instead of wall-clock times. ([GH-143])
|
41 | 62 | - `summarize`: Add `aggregate` sub-command for analyzing sets of profiles ([GH-129])
|
42 | 63 |
|
43 | 64 | ### Changed
|
| 65 | + |
44 | 66 | - `analyzeme`: Provide functions to decode paged buffer data from memory ([GH-142])
|
45 | 67 | - `analyzeme`: Fix blocked events not being counted in total invocation count ([GH-148])
|
46 | 68 | - `analyzeme`: Return error instead of panicking if the input file is too small ([GH-151])
|
47 | 69 | - Cleanup intra-doc links ([GH-146])
|
48 | 70 |
|
49 | 71 | ## [9.0.0] - 2020-10-07
|
| 72 | + |
50 | 73 | ### Added
|
| 74 | + |
51 | 75 | - `measureme`: Added a function to create `EventId`s with multiple arguments ([GH-138])
|
52 | 76 |
|
53 | 77 | ### Changed
|
| 78 | + |
54 | 79 | - We now use the standard semantic versioning system. As this is the 9th breaking change, we're adopting `9.0` as the version number
|
55 | 80 | - `measureme`: Allow recording up to 4gb of string data instead of the old limit of 1gb ([GH-137])
|
56 | 81 |
|
57 | 82 | ## [0.8.0] - 2020-10-01
|
| 83 | + |
58 | 84 | ### Added
|
| 85 | + |
59 | 86 | - `analyzeme`: Profiling data can now be constructed directly from memory without having to touch the filesystem ([GH-123])
|
60 | 87 | - `summarize`: A new "Time" column shows the total amount of time spent executing the query including sub-queries ([GH-109])
|
61 | 88 |
|
62 | 89 | ### Changed
|
| 90 | + |
63 | 91 | - `crox`: Event argument data is now included in the output file ([GH-108])
|
64 | 92 | - `measureme`: Trace data is now recorded into a single file instead of three files ([GH-132])
|
65 | 93 | - `mmview`: Do not panic when there are no events ([GH-119])
|
|
68 | 96 | - `summarize`: Only show the "Cache hits", "Blocked Time" and "Incremental load time" columns if that data is present in the trace ([GH-116])
|
69 | 97 |
|
70 | 98 | ## [0.7.1] - 2020-01-02
|
| 99 | + |
71 | 100 | ### Changed
|
| 101 | + |
72 | 102 | - `measureme`: Fix compilation error on big endian systems ([GH-103])
|
73 | 103 |
|
74 | 104 | ## [0.7.0] - 2019-12-18
|
| 105 | + |
75 | 106 | ### Changed
|
| 107 | + |
76 | 108 | - `measureme`: Events can now have "arguments" which record additional data about the event ([GH-101])
|
77 | 109 |
|
78 | 110 | ## [0.6.0] - 2019-12-11
|
| 111 | + |
79 | 112 | ### Added
|
| 113 | + |
80 | 114 | - `measureme`: Added `SerializationSink::write_bytes_atomic` that optimizes handling of existing buffers ([GH-97])
|
81 | 115 |
|
82 | 116 | ### Changed
|
| 117 | + |
83 | 118 | - `summarize`: Fixed a crash when incr_cache_load events would have child events ([GH-93])
|
84 | 119 | - `measureme`: Replaced notion of "reserved" StringIds with simpler "virtual" StringIds ([GH-98])
|
85 | 120 |
|
86 | 121 | ## [0.5.0] - 2019-12-02
|
| 122 | + |
87 | 123 | ### Added
|
| 124 | + |
88 | 125 | - `flamegraph`: new tool that uses the `inferno` crate to generate flamegraph svg files ([GH-73])
|
89 | 126 | - `crox`: Added the `--dir` parameter to merge all events files in dir in to one trace file ([GH-84])
|
90 | 127 | - `crox`: Added possibility to add multiple `file_prefix` parameters to merge all them to one trace file ([GH-84])
|
91 | 128 | - `summarize`: Added self_time_change as percentage change of self_time from base to the `diff` sub command ([GH-87])
|
92 | 129 |
|
93 | 130 | ### Changed
|
| 131 | + |
94 | 132 | - `measureme`: Stringtable data is recorded in a more compact format ([GH-90])
|
95 | 133 | - `measureme`: Events are recorded in a more compact format ([GH-76])
|
96 | 134 | - `stack_collapse`: Removed the `--interval` commandline option ([GH-76])
|
97 | 135 |
|
98 | 136 | ## [0.4.0] - 2019-10-24
|
| 137 | + |
99 | 138 | ### Added
|
| 139 | + |
100 | 140 | - `measureme`: Added RAII-based API for recording events ([GH-70])
|
101 | 141 | - `measureme`: Added support for compiling the library under wasm/wasi ([GH-43])
|
102 | 142 | - `mmview`: Added the `-t` flag to limit output to results on the specified thread id ([GH-49])
|
|
105 | 145 | - `crox`: Added the `--minimum-duration` flag to filter out events under the specified number of microseconds ([GH-60])
|
106 | 146 |
|
107 | 147 | ### Changed
|
| 148 | + |
108 | 149 | - `summarize`: Moved summarization under the `summarize` sub command ([GH-50])
|
109 | 150 | - `crox`: Output files are now up to 50% smaller ([GH-59])
|
110 | 151 |
|
111 | 152 | ## [0.3.0] - 2019-05-14
|
| 153 | + |
112 | 154 | ### Added
|
| 155 | + |
113 | 156 | - `summarize`: New CLI argument `percent-above` for `summarize` crate ([GH-32])
|
114 | 157 | - `summarize`: Added documentation ([GH-35])
|
115 | 158 | - `measureme`: Added a version tag to the binary event file format ([GH-41])
|
|
118 | 161 |
|
119 | 162 | ## [0.2.0] - 2019-04-10
|
120 | 163 |
|
| 164 | +[10.1.2]: https://github.com/rust-lang/measureme/releases/tag/10.1.2 |
121 | 165 | [10.1.1]: https://github.com/rust-lang/measureme/releases/tag/10.1.1
|
122 | 166 | [10.1.0]: https://github.com/rust-lang/measureme/releases/tag/10.1.0
|
123 | 167 | [10.0.0]: https://github.com/rust-lang/measureme/releases/tag/10.0.0
|
|
181 | 225 | [GH-194]: https://github.com/rust-lang/measureme/pull/194
|
182 | 226 | [GH-195]: https://github.com/rust-lang/measureme/pull/195
|
183 | 227 | [GH-198]: https://github.com/rust-lang/measureme/pull/198
|
| 228 | +[GH-199]: https://github.com/rust-lang/measureme/pull/199 |
184 | 229 | [GH-200]: https://github.com/rust-lang/measureme/pull/200
|
185 | 230 | [GH-202]: https://github.com/rust-lang/measureme/pull/202
|
| 231 | +[GH-205]: https://github.com/rust-lang/measureme/pull/205 |
| 232 | +[GH-208]: https://github.com/rust-lang/measureme/pull/208 |
| 233 | +[GH-209]: https://github.com/rust-lang/measureme/pull/209 |
| 234 | +[GH-211]: https://github.com/rust-lang/measureme/pull/211 |
0 commit comments