SCIP schema:
- Added new
SymbolRole
:ForwardDefinition
(#217)
scip CLI:
scip print
supports turning off colorful output using--color=false
or by setting the environment variableNO_COLOR=1
. (#214)
SCIP schema:
- Added new
Kind
enum constants to represent more detailed information about different pieces of syntax in different languages. (#195, #208, #209) - Added new
Language
enum constants. (#195, #207) - Minor documentation improvements. (#194, #206)
scip CLI:
- Added a new
--project-root
flag toscip stats
. (#187)
Go bindings:
- Added missing validation for local symbols when parsing a symbol string. (#206)
- Fixed a bug related to escaping in symbol formatting. (#186) (#206)
- Fixed a bug in occurrence canonicalization. (#180)
- Fixed some bugs in the new streaming parsing APIs. (#176, #177)
Rust bindings:
- Added missing validation for local symbols when parsing a symbol string. (#206)
SCIP schema:
- Several new fields were added:
SymbolInformation.signature_documentation
,SymbolInformation.display_name
,SymbolInformation.kind
Occurrence.enclosing_range
scip CLI:
- The
print
subcommand supports a new--json
flag to emit JSON output instead of colored textual output. (#147) - The
snapshot
subcommand supports a new--comment-syntax
flag to customize the prefix used for inline comments in snapshot output. (#139) snapshot
output now include override_documentation for occurrences. (#116)
Go bindings:
- Added new APIs to parse SCIP indexes in a streaming fashion at Document granularity. This allows consumers to process SCIP indexes with better control over memory usage. (#172)
- Fixed a panic when descriptors are incomplete (#171)
Rust bindings:
- Fixes a bug when emitting symbols which require escaping (#169)
- Fixes a bug in handling for macro symbols (#145)
- Fixed a bug in SCIP to LSIF conversion of indexes using the new
Relationship.is_definition
field. Without this fix, the generated LSIF index would fail to process in Sourcegraph with a "unknown reference to $ID (expected a range)" error. (#108)
- The new
scip print
subcommand can be used to view a SCIP index without access to protoc. (#91) - The new
scip lint
subcommand can be used to identify correctness and redundancy issues with a SCIP index. (#92)
scip --version
now works as expected instead of reporting 0.1.0. (#97)