Skip to content

Latest commit

 

History

History
33 lines (22 loc) · 961 Bytes

CHANGELOG.md

File metadata and controls

33 lines (22 loc) · 961 Bytes

Changelog

v0.0.5

  • Added a command for configuring coverage scope (package vs module). This will be removed in the future if microsoft/vscode#237106 is resolved.

v0.0.4

v0.0.3

New Features

  • Custom file viewer for pprof profiles written from the ground up for VSCode.
  • Code coverage via VSCode's test explorer.
  • Debug tests with rr (only supported on Linux).
  • Render documentation (similar to pkg.go.dev).

Changes

  • Detect whether gopls supports test discovery.
  • Remove dynamically discovered test cases when the associated test run is discarded.
  • Use enumerations for settings.
  • Add 'run package tests' and 'run file tests' code lenses when enabled.

Bugs

  • Running a test could create duplicate entries (golang/vscode-go#3598).
  • Fix test status updates for benchmarks.