-
-
Notifications
You must be signed in to change notification settings - Fork 283
Permalink
Choose a base ref
{{ refName }}
default
Choose a head ref
{{ refName }}
default
Comparing changes
Choose two branches to see what’s changed or to start a new pull request.
If you need to, you can also or
learn more about diff comparisons.
Open a pull request
Create a new pull request by comparing changes across two branches. If you need to, you can also .
Learn more about diff comparisons here.
base repository: danielpalme/ReportGenerator
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v5.3.6
Could not load branches
Nothing to show
Loading
Could not load tags
Nothing to show
{{ refName }}
default
Loading
...
head repository: danielpalme/ReportGenerator
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Could not load branches
Nothing to show
Loading
Could not load tags
Nothing to show
{{ refName }}
default
Loading
5
contributors
Commits on Jun 5, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 6c8a5e8 - Browse repository at this point
Copy the full SHA 6c8a5e8View commit details
Commits on Jun 11, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 2ce9d61 - Browse repository at this point
Copy the full SHA 2ce9d61View commit details -
Configuration menu - View commit details
-
Copy full SHA for c0e33f7 - Browse repository at this point
Copy the full SHA c0e33f7View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2c24ebe - Browse repository at this point
Copy the full SHA 2c24ebeView commit details
Commits on Jun 12, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 673e3b9 - Browse repository at this point
Copy the full SHA 673e3b9View commit details
Commits on Jun 22, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 9913e98 - Browse repository at this point
Copy the full SHA 9913e98View commit details
Commits on Jun 27, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 2ddf1ee - Browse repository at this point
Copy the full SHA 2ddf1eeView commit details -
#602: HtmlSummary and Html_BlueRed_Summary report types now also crea…
…te an index.html file
Configuration menu - View commit details
-
Copy full SHA for 6c69000 - Browse repository at this point
Copy the full SHA 6c69000View commit details
Commits on Jun 28, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 0fa15f6 - Browse repository at this point
Copy the full SHA 0fa15f6View commit details
Commits on Jul 15, 2024
-
Configuration menu - View commit details
-
Copy full SHA for cdebab3 - Browse repository at this point
Copy the full SHA cdebab3View commit details -
Configuration menu - View commit details
-
Copy full SHA for d52d9c9 - Browse repository at this point
Copy the full SHA d52d9c9View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3bbe6cd - Browse repository at this point
Copy the full SHA 3bbe6cdView commit details -
Configuration menu - View commit details
-
Copy full SHA for 079ffc7 - Browse repository at this point
Copy the full SHA 079ffc7View commit details -
Configuration menu - View commit details
-
Copy full SHA for a551c33 - Browse repository at this point
Copy the full SHA a551c33View commit details -
Configuration menu - View commit details
-
Copy full SHA for 24080d6 - Browse repository at this point
Copy the full SHA 24080d6View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8a3ad8e - Browse repository at this point
Copy the full SHA 8a3ad8eView commit details
Commits on Aug 18, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 5764450 - Browse repository at this point
Copy the full SHA 5764450View commit details -
Configuration menu - View commit details
-
Copy full SHA for bbfa142 - Browse repository at this point
Copy the full SHA bbfa142View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0dc5e83 - Browse repository at this point
Copy the full SHA 0dc5e83View commit details -
#685 Extended "raw mode" for dotCover format (settings:rawMode=true) …
…to disable that coverage data of nested or compiler generated classes is included in the parent class.
Configuration menu - View commit details
-
Copy full SHA for 4444f14 - Browse repository at this point
Copy the full SHA 4444f14View commit details
Commits on Aug 28, 2024
-
Performance improvements to CoberturaParser
- Try and re-use already filtered XElements in `CoberturaParser` rather than re-filtering the xml document all over the place. - Optimise some `string.Concat` in `ProcessClass` method which were showing up in hot paths in profiling In local testing, this reduces parsing time from roughly 11.5secs to 9 seconds, as well as reducing memory allocations from 17GB to 2.2GB.
Configuration menu - View commit details
-
Copy full SHA for e5e2775 - Browse repository at this point
Copy the full SHA e5e2775View commit details -
Configuration menu - View commit details
-
Copy full SHA for 57a7c43 - Browse repository at this point
Copy the full SHA 57a7c43View commit details
Commits on Sep 3, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 2a2ed5d - Browse repository at this point
Copy the full SHA 2a2ed5dView commit details
Commits on Sep 13, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 78a1a92 - Browse repository at this point
Copy the full SHA 78a1a92View commit details
Commits on Sep 14, 2024
-
Optimise memory allocations in HtmlRender.
This is mainly done by avoiding creating additional `StringBuilder`s and writing direct to the `TextWriter` where possible. Where `StringBuilder`s are still needed, they're pooled and reused Saves on the amount of allocated memory and time paused for GC. ## Before > - CommandLine: "s:\ReportGenerator\src\Playground\bin\Debug\net8.0\Playground.exe" > - Runtime Version: V 8.0.824.36612 > - CLR Startup Flags: 8388611 > - Total CPU Time: 38,443 msec > - Total GC CPU Time: 1,666 msec > - Total Allocs : 8,378.712 MB > - Number of Heaps: 1 > - GC CPU MSec/MB Alloc : 0.199 MSec/MB > - Total GC Pause: 2,567.9 msec > - % Time paused for Garbage Collection: 8.1% > - % CPU Time spent Garbage Collecting: 4.3% > - Max GC Heap Size: 335.820 MB > - Peak Process Working Set: 395.698 MB > - Peak Virtual Memory Usage: 2,480,960.369 MB ## After > - CommandLine: "s:\ReportGenerator\src\Playground\bin\Debug\net8.0\Playground.exe" > - Runtime Version: V 8.0.824.36612 > - CLR Startup Flags: 8388611 > - Total CPU Time: 28,247 msec > - Total GC CPU Time: 1,183 msec > - Total Allocs : 2,938.748 MB > - Number of Heaps: 1 > - GC CPU MSec/MB Alloc : 0.403 MSec/MB > - Total GC Pause: 1,348.8 msec > - % Time paused for Garbage Collection: 6.2% > - % CPU Time spent Garbage Collecting: 4.2% > - Max GC Heap Size: 352.258 MB > - Peak Process Working Set: 417.976 MB > - Peak Virtual Memory Usage: 2,480,959.902 MB
Configuration menu - View commit details
-
Copy full SHA for b0fa437 - Browse repository at this point
Copy the full SHA b0fa437View commit details
Commits on Sep 20, 2024
-
Fix merging of classes with non unique names.
Extends the fix from 78a1a92 to also apply to merging.
Configuration menu - View commit details
-
Copy full SHA for 95f2022 - Browse repository at this point
Copy the full SHA 95f2022View commit details
Commits on Sep 26, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 3959774 - Browse repository at this point
Copy the full SHA 3959774View commit details
Commits on Sep 28, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 16eaf9a - Browse repository at this point
Copy the full SHA 16eaf9aView commit details -
Configuration menu - View commit details
-
Copy full SHA for dcb1ccd - Browse repository at this point
Copy the full SHA dcb1ccdView commit details -
Configuration menu - View commit details
-
Copy full SHA for 137f0f6 - Browse repository at this point
Copy the full SHA 137f0f6View commit details -
Configuration menu - View commit details
-
Copy full SHA for 7dd8424 - Browse repository at this point
Copy the full SHA 7dd8424View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0895f4d - Browse repository at this point
Copy the full SHA 0895f4dView commit details
Commits on Oct 9, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 3c6b9df - Browse repository at this point
Copy the full SHA 3c6b9dfView commit details -
Configuration menu - View commit details
-
Copy full SHA for 39f9921 - Browse repository at this point
Copy the full SHA 39f9921View commit details
Commits on Oct 16, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 2e4f78d - Browse repository at this point
Copy the full SHA 2e4f78dView commit details
Commits on Oct 22, 2024
-
Configuration menu - View commit details
-
Copy full SHA for cd503fb - Browse repository at this point
Copy the full SHA cd503fbView commit details -
Configuration menu - View commit details
-
Copy full SHA for 2dd7e8c - Browse repository at this point
Copy the full SHA 2dd7e8cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 7cbf6e5 - Browse repository at this point
Copy the full SHA 7cbf6e5View commit details
Commits on Oct 23, 2024
-
#700 Fixed handling of .netconfig files (sourceDirectories, reportTyp…
…es, plugins, assemblyFilters, etc.)
5Configuration menu - View commit details
-
Copy full SHA for 15c6fc1 - Browse repository at this point
Copy the full SHA 15c6fc1View commit details
Commits on Nov 1, 2024
-
Configuration menu - View commit details
-
Copy full SHA for e605198 - Browse repository at this point
Copy the full SHA e605198View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1acc906 - Browse repository at this point
Copy the full SHA 1acc906View commit details -
Configuration menu - View commit details
-
Copy full SHA for c81e378 - Browse repository at this point
Copy the full SHA c81e378View commit details -
Configuration menu - View commit details
-
Copy full SHA for 9a06913 - Browse repository at this point
Copy the full SHA 9a06913View commit details -
Configuration menu - View commit details
-
Copy full SHA for 24d447f - Browse repository at this point
Copy the full SHA 24d447fView commit details
Commits on Nov 7, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 082122b - Browse repository at this point
Copy the full SHA 082122bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 127855e - Browse repository at this point
Copy the full SHA 127855eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 7a4be5c - Browse repository at this point
Copy the full SHA 7a4be5cView commit details
Commits on Nov 8, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 20438c8 - Browse repository at this point
Copy the full SHA 20438c8View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2b2d4fc - Browse repository at this point
Copy the full SHA 2b2d4fcView commit details
Commits on Nov 9, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 9cc5ad8 - Browse repository at this point
Copy the full SHA 9cc5ad8View commit details
There are no files selected for viewing
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
This file was deleted.
Large diffs are not rendered by default.
This file was deleted.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.