Skip to content

v0.92.0

Compare
Choose a tag to compare
@github-actions github-actions released this 01 Oct 23:28
· 264 commits to main since this release
v0.92.0
21f9910

Features

  • analyze: Allow shortforms of warning and information, warn and info in diagnostic modifiers (f226091)

  • config: Added posibility to allow different tool configs to robot.toml.json schema (ee256ce)

  • robot.toml: Introduce new settings for analysis in robot.toml (fa37dba)

  • vscode: Introduce setting for modifing the diagnostics severity (5cca59f)

    With these settings, you can override the default configuration for all diagnostic messages. By combining file, block, and line diagnostic modifiers, you can precisely control how specific errors are displayed.

    • robotcode.analysis.diagnosticModifiers.ignore: Suppresses specific diagnostics from being displayed. You can specify one or more error codes, like MultipleKeywords or [multiple-keywords, VariableNotFound]. Use * to ignore all errors and then maybe add specific error codes to other modifiers, such as information, to selectively show them.
    • robotcode.analysis.diagnosticModifiers.error: Treats selected diagnostics as errors.
    • robotcode.analysis.diagnosticModifiers.warning: Displays chosen diagnostics as warnings.
    • robotcode.analysis.diagnosticModifiers.information: Shows specified diagnostics as information
    • robotcode.analysis.diagnosticModifiers.hint: Marks selected diagnostics as hints

    These settings allow you to tailor the diagnostic outputs to meet the specific needs of your project.

  • Introduce Select Python Environment command and deprecate robotcode.python (be0573d)

    See here for an explanation.