Merge branch 'volatilityfoundation:develop' into feature/vadwalk

This commit is contained in:
Donghyun Kim
2022-09-22 04:15:33 +09:00
committed by GitHub
2 changed files with 5 additions and 1 deletions
+4
View File
@@ -4,6 +4,10 @@ API Changes
When an addition to the existing API is made, the minor version is bumped.
When an API feature or function is removed or changed, the major version is bumped.
2.3.1
=====
Update in the windows `_EPROCESS.owning_process` method for support Windows Vista and later versions.
2.3.0
=====
Add in `child_template` to template class
+1 -1
View File
@@ -224,7 +224,7 @@ class CSVRenderer(CLIRenderer):
# Ignore the type because namedtuples don't realize they have accessible attributes
header_list.append(f"{column.name}")
writer = csv.DictWriter(outfd, header_list)
writer = csv.DictWriter(outfd, header_list, lineterminator='\n')
writer.writeheader()
def visitor(node: interfaces.renderers.TreeNode, accumulator):