Skip to content

v0.8.0 - 2026-06-05

Compare
Choose a tag to compare
@rcjsuen rcjsuen released this 05 Jun 13:33
· 15 commits to main since this release
2448751

Added

  • send errors to BugSnag if error telemetry is configured to be allowed and sent
  • Dockerfile
    • provide code actions for Scout vulnerabilities that will open the settings page so that users can opt-out of them easily (#130)
    • textDocument/hover
      • support configuring specific vulnerability hovers with an experimental setting (#101)
    • textDocument/publishDiagnostics
      • support filtering specific vulnerability diagnostics with an experimental setting (#101)
  • Compose
    • created docker.extension.enableComposeLanguageServer for globally toggling Compose editor features
    • updated Compose schema to the latest version (docker/docker-language-server#117)
    • textDocument/completion
    • textDocument/definition
    • textDocument/documentHighlight
      • support highlighting object references and anchors and aliases
    • textDocument/documentLink
      • support opening a referenced Dockerfile from the build object's dockerfile attribute (#69)
      • support opening a referenced file from a config's file attribute (#271)
      • support opening a referenced file from a secret's file attribute (#272)
      • provide document links when an included file is also a YAML anchor (#275)
      • consider quotes when calculating the link's range (#242)
      • consider anchors and aliases instead of assuming everything are strings (#266)
    • textDocument/formatting
    • textDocument/hover
      • add support for hovering over attribute keys and showing the descriptions in the schema with links to the schema and the online documentation
      • render a referenced object's or YAML anchor or alias's textual YAML content as a hover
      • include the range of the hovered element to clearly identify what is being hovered over for the client (#256)
    • textDocument/inlayHint
    • textDocument/publishDiagnostics
    • textDocument/prepareRename
    • textDocument/rename
      • support renaming named object references and YAML anchors and aliases
  • Bake
    • textDocument/publishDiagnostics
      • support filtering specific vulnerability diagnostics with an experimental setting (#101)

Changed

Fixed

Removed

  • Compose
    • removed the docker.extension.experimental.composeCompletions setting in favour for the new docker.extension.enableComposeLanguageServer setting