robject-lsp-ext README
Robject language server extension for VS Code
Features
Add syntax highlight for YAML blocks and intrinsic VRL blocks.
Add validation for YAML blocks and intrinsic VRL blocks.
Requirements
Visual Studio Code v. 1.73.0
Extension Settings
robject-lsp-client.trace.server : Set trace settings for language server
Release Notes
[1.0.6] - 2024-12-10
- Fixed errors when running functions on Windows 11
[1.0.5] - 2024-11-19
- Removed auto-escaping "$" symbols inside vrl blocks
[1.0.4] - 2024-11-07
- Fixed an issue that occurred when running RObject functions on macOS
[1.0.3] - 2024-09-17
- Added new vrl functions:
- any - tests whether at least one element in the array passes the test implemented by the provided function.
any([1, 2, 3]) -> |_index, value| { value == 2 }
- all - tests whether all elements in the array pass the test implemented by the provided function.
all([2, 2, 2]) -> |_index, value| { value == 2 }
- rv_contains_any - tests whether a string contains a any provided value.
rv_contains_any("valid strig", ["valid", "not"])
- rv_starts_with_any - tests whether a string start_with a any provided value.
rv_starts_with_any("valid strig", ["val", "not"])
- rv_ends_with_any - tests whether a string end_with a any provided value.
rv_ends_with_any("valid strig", ["id", "ig"])
[1.0.2] - 2024-07-30
- Fixed $ escaping
- Fix interactive tests to legacy correlation rules
[1.0.1] - 2024-07-10
Fixed correlation rule naming in results
[1.0.0] - 2024-05-22
Published first version
| |