Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: golang/vscode-go
base: v0.41.1
Choose a base ref
...
head repository: golang/vscode-go
compare: v0.41.2
Choose a head ref
  • 15 commits
  • 29 files changed
  • 3 contributors

Commits on Feb 12, 2024

  1. src/goTest: fix multifile suite test fails to debug

    I have resumed the pull request #2415 and added the missing tests.
    
    Here is the original description:
    
    Collect a packages suites and maps their name with the caller function. This mapping is
    used to fix a bug where vscode-go was formatting wrong arguments for dlv (-test.run).
    
    Fixes #2414
    
    Change-Id: Id6ac5d153fa1dbcdb7591b2bd0ee78bfa95686c6
    GitHub-Last-Rev: 0fa9525
    GitHub-Pull-Request: #3128
    Reviewed-on: https://go-review.googlesource.com/c/vscode-go/+/555676
    Reviewed-by: Than McIntosh <thanm@google.com>
    TryBot-Result: kokoro <noreply+kokoro@google.com>
    Reviewed-by: Hyang-Ah Hana Kim <hyangah@gmail.com>
    Auto-Submit: Hyang-Ah Hana Kim <hyangah@gmail.com>
    Commit-Queue: Hyang-Ah Hana Kim <hyangah@gmail.com>
    Cr4zySheep authored and gopherbot committed Feb 12, 2024
    Configuration menu
    Copy the full SHA
    7bfbcaf View commit details
    Browse the repository at this point in the history

Commits on Feb 13, 2024

  1. extension/tools/release: add test for rc

    This test ensures release publish command skips 'npx vsce publish'
    when tags include "rc.N" format label.
    
    See diff between testdata/publish-v0.0.0.golden and
    testdata/publish-v0.0.0-rc.1.golden.
    
    Change-Id: Ic6fb35ea22d04d4654866bcf4ea859d0f151a5a2
    Reviewed-on: https://go-review.googlesource.com/c/vscode-go/+/563355
    TryBot-Result: kokoro <noreply+kokoro@google.com>
    Commit-Queue: Hyang-Ah Hana Kim <hyangah@gmail.com>
    Reviewed-by: Robert Findley <rfindley@google.com>
    hyangah committed Feb 13, 2024
    Configuration menu
    Copy the full SHA
    baab7be View commit details
    Browse the repository at this point in the history
  2. docs/tools.md: fix vscgo package doc link

    Change-Id: Ie46108795d8ec362182f2c150af3f365122be8ea
    Reviewed-on: https://go-review.googlesource.com/c/vscode-go/+/563363
    Reviewed-by: Robert Findley <rfindley@google.com>
    Commit-Queue: Hyang-Ah Hana Kim <hyangah@gmail.com>
    TryBot-Result: kokoro <noreply+kokoro@google.com>
    hyangah committed Feb 13, 2024
    Configuration menu
    Copy the full SHA
    6dd3745 View commit details
    Browse the repository at this point in the history

Commits on Feb 15, 2024

  1. .github/workflows: use 1.22, drop 1.18

    For #3171
    
    Change-Id: Icd0111a67e4d11c97cdc79cd83a6a17dd4933f1b
    Reviewed-on: https://go-review.googlesource.com/c/vscode-go/+/563361
    Reviewed-by: Robert Findley <rfindley@google.com>
    TryBot-Result: kokoro <noreply+kokoro@google.com>
    Commit-Queue: Hyang-Ah Hana Kim <hyangah@gmail.com>
    hyangah committed Feb 15, 2024
    Configuration menu
    Copy the full SHA
    1d634bf View commit details
    Browse the repository at this point in the history
  2. extension/src/goTools: add golangci-lint and gofumpt version mapping

    Latest golangci-lint v1.56.x requires go1.21+.
    And update gofumpt default pinned version.
    Gofumpt v0.6.0 requires go1.20+.
    
    Fixes #3171
    
    Change-Id: Ic2cb9dd188fa220ea87e93b513c56c765ed152d1
    Reviewed-on: https://go-review.googlesource.com/c/vscode-go/+/563362
    Commit-Queue: Hyang-Ah Hana Kim <hyangah@gmail.com>
    Reviewed-by: Robert Findley <rfindley@google.com>
    TryBot-Result: kokoro <noreply+kokoro@google.com>
    hyangah committed Feb 15, 2024
    Configuration menu
    Copy the full SHA
    484a195 View commit details
    Browse the repository at this point in the history
  3. extension/test/gopls: allow more time for testify tests

    gopls needs to load stretchr and its dependencies to analyze
    stretchrTestSuite test package, used for the recently added
    "Code lenses with stretchr/testify/suite" test.
    Windows GH workflow is not fast enough to complete module
    and package loads. Allow more time.
    
    Fixes #3172
    
    Change-Id: Iac304793948ce8ff3d0ba415868e239668cbbcf7
    Reviewed-on: https://go-review.googlesource.com/c/vscode-go/+/563695
    Reviewed-by: Robert Findley <rfindley@google.com>
    TryBot-Result: kokoro <noreply+kokoro@google.com>
    Commit-Queue: Hyang-Ah Hana Kim <hyangah@gmail.com>
    hyangah committed Feb 15, 2024
    Configuration menu
    Copy the full SHA
    beaf5fc View commit details
    Browse the repository at this point in the history

Commits on Feb 16, 2024

  1. extension: start v0.42.0 dev cycle

    For #3167
    
    Change-Id: I279dcfd0d71ec75a0bf1cc1af5e19094ed13286e
    Reviewed-on: https://go-review.googlesource.com/c/vscode-go/+/564596
    Auto-Submit: Hyang-Ah Hana Kim <hyangah@gmail.com>
    Commit-Queue: Hyang-Ah Hana Kim <hyangah@gmail.com>
    kokoro-CI: kokoro <noreply+kokoro@google.com>
    Reviewed-by: Robert Findley <rfindley@google.com>
    hyangah authored and gopherbot committed Feb 16, 2024
    Configuration menu
    Copy the full SHA
    9480a16 View commit details
    Browse the repository at this point in the history

Commits on Feb 21, 2024

  1. extension/src/goMain: skip vscgo installation on windows

    And, pass `-trimpath` when building it so the executable
    file hash is stable.
    
    And increase the vscgo test timeout.
    
    Fixes #3182
    
    Change-Id: Ib86bf07ddc4a89849bb778b2621268b334f3a80a
    Reviewed-on: https://go-review.googlesource.com/c/vscode-go/+/565679
    Reviewed-by: Peter Weinberger <pjw@google.com>
    kokoro-CI: kokoro <noreply+kokoro@google.com>
    Commit-Queue: Hyang-Ah Hana Kim <hyangah@gmail.com>
    Reviewed-by: Robert Findley <rfindley@google.com>
    hyangah committed Feb 21, 2024
    Configuration menu
    Copy the full SHA
    0b3fabc View commit details
    Browse the repository at this point in the history

Commits on Mar 7, 2024

  1. extension/src/goTelemetry: increase telemetry prompt rate to 1%

    Change-Id: I6544f0d5d1fb2b44200cf3f924573c6ced7b1b52
    Reviewed-on: https://go-review.googlesource.com/c/vscode-go/+/569216
    Reviewed-by: Robert Findley <rfindley@google.com>
    Commit-Queue: Hyang-Ah Hana Kim <hyangah@gmail.com>
    kokoro-CI: kokoro <noreply+kokoro@google.com>
    hyangah committed Mar 7, 2024
    1 Configuration menu
    Copy the full SHA
    361c801 View commit details
    Browse the repository at this point in the history

Commits on Mar 12, 2024

  1. README.md: use the new telemetry official doc link

    And update the CHANGELOG.md
    
    Change-Id: I1faeb8ea62c14045c42b7a2ac9f3d4d3f0824925
    Reviewed-on: https://go-review.googlesource.com/c/vscode-go/+/570678
    Commit-Queue: Hyang-Ah Hana Kim <hyangah@gmail.com>
    Reviewed-by: Robert Findley <rfindley@google.com>
    Auto-Submit: Hyang-Ah Hana Kim <hyangah@gmail.com>
    kokoro-CI: kokoro <noreply+kokoro@google.com>
    hyangah authored and gopherbot committed Mar 12, 2024
    Configuration menu
    Copy the full SHA
    b4b68a7 View commit details
    Browse the repository at this point in the history

Commits on Mar 13, 2024

  1. src/language: adjust panic trace capture logic

    Use '[Info - ' or '[Warning - ' or '[Error - ' as the marker
    for the end of the panic trace.
    
    Fixes #3248
    
    Change-Id: I3aabc0292855f63ceffeea5c09b59e4e0253e95b
    Reviewed-on: https://go-review.googlesource.com/c/vscode-go/+/571316
    Commit-Queue: Hyang-Ah Hana Kim <hyangah@gmail.com>
    kokoro-CI: kokoro <noreply+kokoro@google.com>
    Reviewed-by: Suzy Mueller <suzmue@golang.org>
    hyangah committed Mar 13, 2024
    Configuration menu
    Copy the full SHA
    53bf019 View commit details
    Browse the repository at this point in the history
  2. extension/src/goStatus: fix quick pick for gopls trace open

    There is an extra space in the presented quick pick option.
    
    Fixes #3236
    
    Change-Id: I073ee18b6296778c5056e5f4f6f662061d89a565
    Reviewed-on: https://go-review.googlesource.com/c/vscode-go/+/571318
    Reviewed-by: Suzy Mueller <suzmue@golang.org>
    Commit-Queue: Hyang-Ah Hana Kim <hyangah@gmail.com>
    kokoro-CI: kokoro <noreply+kokoro@google.com>
    hyangah committed Mar 13, 2024
    Configuration menu
    Copy the full SHA
    f5d6cad View commit details
    Browse the repository at this point in the history
  3. [release] prepare v0.41.2 release

    f5d6cad extension/src/goStatus: fix quick pick for gopls trace open
    53bf019 src/language: adjust panic trace capture logic
    b4b68a7 README.md: use the new telemetry official doc link
    361c801 extension/src/goTelemetry: increase telemetry prompt rate to 1%
    0b3fabc extension/src/goMain: skip vscgo installation on windows
    9480a16 extension: start v0.42.0 dev cycle
    beaf5fc extension/test/gopls: allow more time for testify tests
    484a195 extension/src/goTools: add golangci-lint and gofumpt version mapping
    1d634bf .github/workflows: use 1.22, drop 1.18
    6dd3745 docs/tools.md: fix vscgo package doc link
    baab7be extension/tools/release: add test for rc
    7bfbcaf src/goTest: fix multifile suite test fails to debug
    
    Change-Id: I966aaac48ecb67b22824bd7b3600bf90d983a039
    hyangah committed Mar 13, 2024
    Configuration menu
    Copy the full SHA
    5bbfaf9 View commit details
    Browse the repository at this point in the history

Commits on Mar 14, 2024

  1. extension/CHANGELOG.md: mention user-visible fixes

    For #3249
    
    Change-Id: Ic73a96ae42789c1df0b5d3ef118856d37a62157d
    Reviewed-on: https://go-review.googlesource.com/c/vscode-go/+/571098
    Reviewed-by: Nooras Saba‎ <saba@golang.org>
    kokoro-CI: kokoro <noreply+kokoro@google.com>
    Reviewed-by: Suzy Mueller <suzmue@golang.org>
    Auto-Submit: Hyang-Ah Hana Kim <hyangah@gmail.com>
    Commit-Queue: Hyang-Ah Hana Kim <hyangah@gmail.com>
    hyangah authored and gopherbot committed Mar 14, 2024
    Configuration menu
    Copy the full SHA
    19afd64 View commit details
    Browse the repository at this point in the history
  2. [release] prepare v0.41.2 release (2)

    19afd64 extension/CHANGELOG.md: mention user-visible fixes
    
    Change-Id: I0529a11820caedfd3ad358eb14c8132599f824df
    hyangah committed Mar 14, 2024
    Configuration menu
    Copy the full SHA
    c7b9dd6 View commit details
    Browse the repository at this point in the history