Skip to content
Merged
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
35 changes: 0 additions & 35 deletions change-notes/1.26/analysis-csharp.md

This file was deleted.

2 changes: 2 additions & 0 deletions csharp/change-notes/2020-08-18-ast-viewer.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
tooling
* The Abstract Syntax Tree of C# files can be viewed in Visual Studio Code.
2 changes: 2 additions & 0 deletions csharp/change-notes/2020-08-18-partial-method-bodies.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
lgtm,codescanning
* Partial method bodies are extracted. Previously, partial method bodies were skipped.
5 changes: 5 additions & 0 deletions csharp/change-notes/2020-08-26-implicit-array-lengths.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
lgtm,codescanning
* Inferring the lengths of implicitely sized arrays is fixed. Previously, multi
dimensional arrays were always extracted with the same length for each dimension.
With the fix, the array sizes `2` and `1` are extracted for `new int[,]{{1},{2}}`.
Previously `2` and `2` were extracted.
5 changes: 5 additions & 0 deletions csharp/change-notes/2020-09-02-assembly-insensitive-trap.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
lgtm,codescanning
* The extractor is now assembly-insensitive by default. This means that two entities
with the same fully-qualified name are now mapped to the same entity in the resulting
database, regardless of whether they belong to different assemblies. Assembly
sensitivity can be reenabled by passing `--assemblysensitivetrap` to the extractor.
2 changes: 2 additions & 0 deletions csharp/change-notes/2020-09-22-weak-encryption.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
lgtm,codescanning
* The required key size for the query "Weak encryption: Insufficient key size" has been increased from 1024 to 2048.