{"payload":{"feedbackUrl":"https://github.com/orgs/community/discussions/53140","repo":{"id":245484280,"defaultBranch":"master","name":"vscode-go","ownerLogin":"golang","currentUserCanPush":false,"isFork":false,"isEmpty":false,"createdAt":"2020-03-06T17:52:04.000Z","ownerAvatar":"https://avatars.githubusercontent.com/u/4314092?v=4","public":true,"private":false,"isOrgOwned":true},"refInfo":{"name":"","listCacheKey":"v0:1713978054.0","currentOid":""},"activityList":{"items":[{"before":"5d8af430dede91259c64d188c65034663f87b25b","after":"65d72fdc21c8ad8d72dfe2366de100f5669f83eb","ref":"refs/heads/master","pushedAt":"2024-05-20T19:37:38.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"gopherbot","name":"GopherBot","path":"/gopherbot","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/8566911?s=80&v=4"},"commit":{"message":"extension/src/goEnvironmentStatus: fix error string\n\nShould've used `` to enable variable substitution\n\nFor golang/vscode-go#3386\n\nChange-Id: I94bc823b0c959637f6d8b5a22fa90a2a76ba84d8\nReviewed-on: https://go-review.googlesource.com/c/vscode-go/+/586255\nCommit-Queue: Hyang-Ah Hana Kim \nReviewed-by: Suzy Mueller \nkokoro-CI: kokoro ","shortMessageHtmlLink":"extension/src/goEnvironmentStatus: fix error string"}},{"before":"f907536117c3e9fc731be9277e992b8cc7cd74f1","after":"5d8af430dede91259c64d188c65034663f87b25b","ref":"refs/heads/master","pushedAt":"2024-05-10T20:54:16.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"gopherbot","name":"GopherBot","path":"/gopherbot","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/8566911?s=80&v=4"},"commit":{"message":"extension/src/util: do not use cached go version with GOTOOLCHAIN\n\nCL 577095 https://go-review.googlesource.com/c/vscode-go/+/577095\nmade a change to compute the go version used for tools installation\nusing `GOTOOLCHAIN=local go version`. However, that's not sufficient.\nThere is a go version cache (cachedGoVersion) and if the go binary\npath is same, getGoVersion uses the cachedGoVersion. But after go1.21\nthis assumption doesn't hold because the same go binary can return\ndifferent go version depending on its toolchain switch mode.\n\nFor now, skip caching if getGoVersion is called with non-default\nGOTOOLCHAIN param. We use this mode of getGoVersion only during\ntool installation, which is supposed to be rare.\n\nFor golang/vscode-go#3168\n\nChange-Id: Id33536d70b74afee592e4a98bd59865e41dbea49\nReviewed-on: https://go-review.googlesource.com/c/vscode-go/+/583975\nCommit-Queue: Hyang-Ah Hana Kim \nkokoro-CI: kokoro \nReviewed-by: Suzy Mueller ","shortMessageHtmlLink":"extension/src/util: do not use cached go version with GOTOOLCHAIN"}},{"before":"fe57357337c5330e2157125470a24a5780c8884c","after":"f907536117c3e9fc731be9277e992b8cc7cd74f1","ref":"refs/heads/master","pushedAt":"2024-05-09T19:54:48.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"gopherbot","name":"GopherBot","path":"/gopherbot","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/8566911?s=80&v=4"},"commit":{"message":"docs: fix typo in debugging.md\n\nChange-Id: Ib64c2616c6c14ebeafc824d235cb0e508fc121ad\nGitHub-Last-Rev: f9be4890c812f47edce96e27099848ceb9c0a42e\nGitHub-Pull-Request: golang/vscode-go#3255\nReviewed-on: https://go-review.googlesource.com/c/vscode-go/+/571955\nkokoro-CI: kokoro \nReviewed-by: Ian Lance Taylor \nReviewed-by: Hyang-Ah Hana Kim \nCommit-Queue: Ian Lance Taylor \nReviewed-by: David Chase ","shortMessageHtmlLink":"docs: fix typo in debugging.md"}},{"before":"ff0beeaa0931fcfeeeafae5e3812cd4b4a31c5d2","after":"fe57357337c5330e2157125470a24a5780c8884c","ref":"refs/heads/master","pushedAt":"2024-05-01T15:00:20.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"gopherbot","name":"GopherBot","path":"/gopherbot","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/8566911?s=80&v=4"},"commit":{"message":"docs/faq.md: update the vscode default text mate rule project\n\nVS Code changed its TextMate rule source to worlpaker/go-syntax.\n\nChange-Id: I5c59ac851731c388a2a8a317ed5a3c5ca0946a69\nReviewed-on: https://go-review.googlesource.com/c/vscode-go/+/582675\nReviewed-by: Peter Weinberger \nCommit-Queue: Hyang-Ah Hana Kim \nkokoro-CI: kokoro ","shortMessageHtmlLink":"docs/faq.md: update the vscode default text mate rule project"}},{"before":"ea9ff8796aec7bf1c1f286d347b6328d55928fe9","after":"ff0beeaa0931fcfeeeafae5e3812cd4b4a31c5d2","ref":"refs/heads/master","pushedAt":"2024-04-29T23:15:02.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"gopherbot","name":"GopherBot","path":"/gopherbot","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/8566911?s=80&v=4"},"commit":{"message":"extension/src/goInstallTools: strengthing minimum go version requirement\n\nThis change addresses problems in tools installation surfaced\nby the recent changes in go and gopls.\n\n* Automated toolchain switch for Go forwards compatibility\n\nThe automated Go toolchain switch change added in go1.21\nchanged the meaning of 'go version' output different. Previously,\nit was meant exactly the version of the toolchain on the system.\nAfter go1.21, this is a go version for chosen for the workspace,\ncomputed based on the local toolchain version and the required\ngo version dictated by go.mod or go.work.\n\nThe extension has a facility to detect the go version used to\ncompile tools, and ask users to rebuild them if they were built\nwith older go standard libraries. When a local toolchain is\nolder (for example, `go1.21.0`) than the workspace's required go\nversion (`go1.22.0`), the 'go version' reports `go1.22.0`.\nThe extension will detect tools that need recompiling to support\n`go1.22.0` project. That works as expected.\n\nHowever, when recompiling those tools with `go install`,\nthe workspace's go version requirement doesn't come into play\nat all, but only the local toolchain's go version and the target\ntool's minimum required go version will be used in the toolchain\nswitch decision making. As of today, none of the tools set their\nminimum required go version to go1.22.x, so if the local toolchain\nis still go1.21.0, `go install` will use go1.21.0 for build.\n\nWe need to explicitly specify the minimum required version using\nthe `GOTOOLCHAIN` environment variable. In this example, go\ninstall with `GOTOOLCHAIN=go1.22.0+auto` will address the issue.\n\nIn this CL,\n - extend `getGoVersion` to allow the local toolchain version\n by specifying the optional GOTOOLCHAIN parameter.\n - change `getGoForInstall` to produce the correct GoVersion\n object that carries the true version of the local toolchain.\n (computed with `getGoVersion(..., 'local')`).\n - change `installTools` to append the `GOTOOLCHAIN` env var\n if the go version to be used for install is older than\n the project's minimum required go version.\n\n* More frequent crashes/malfunctions upon version mismatch\n\nGopls is supposed to prompt when it detects it needs to be\nrecompiled to process the modules that require newer go versions.\nThe extension has relied this as the second, and more reliable\ndefense mechanism. Unfortunately, bugs in the recent gopls\nstopped gopls from reliably detecting this case or, even made\nthe gopls crash before showing the notification.\n\nSimilar crashes can occur in other tools (golang/vscode-go#3168)\nwhen the version is mismatched. Previously, `installTools` warned\nusers only if the go version for install was very old (e.g. go1.15).\n\nIn this CL,\n - tighten `installTools`'s installation tool version check\n further. So, if the project requires a newer version of go\n and the go configured for tools installation (maybe due to\n outdated 'go.toolsManagement.go' setting) is older and\n is a version that cannot handle automated version switch\n (\nCommit-Queue: Hyang-Ah Hana Kim \nReviewed-by: Suzy Mueller \nkokoro-CI: kokoro ","shortMessageHtmlLink":"extension/src/goInstallTools: strengthing minimum go version requirement"}},{"before":"07815f3fbb44eeabd66ac1f7ad15053b6a1af303","after":"db1036f18de03690f7a958942bd4e8bb67428483","ref":"refs/heads/release","pushedAt":"2024-04-23T20:42:01.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"gopherbot","name":"GopherBot","path":"/gopherbot","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/8566911?s=80&v=4"},"commit":{"message":"[release] extension/package.json: set version to 0.41.4\n\nChange-Id: I8ba98d4a4c9ff81335dfda6cf0f9b155c82ff109\nReviewed-on: https://go-review.googlesource.com/c/vscode-go/+/581178\nCommit-Queue: Hyang-Ah Hana Kim \nReviewed-by: Robert Findley \nkokoro-CI: kokoro \nAuto-Submit: Hyang-Ah Hana Kim ","shortMessageHtmlLink":"[release] extension/package.json: set version to 0.41.4"}},{"before":"abfa2cb8b40775618cfe3b5e8f40b8961722a727","after":"07815f3fbb44eeabd66ac1f7ad15053b6a1af303","ref":"refs/heads/release","pushedAt":"2024-04-23T20:18:03.000Z","pushType":"push","commitsCount":4,"pusher":{"login":"gopherbot","name":"GopherBot","path":"/gopherbot","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/8566911?s=80&v=4"},"commit":{"message":"[release] prepare v0.41.4 release\n\nea9ff879 extension/CHANGELOG.md: add the entry for v0.41.4\nd1cde8cd extension/src/welcome: readd the fix for go.showWelcome handling\ncfc795c4 Revert \"extension/src/welcome: fix 'go.showWelcome' setting interpretation\"\n\nChange-Id: Iebf964dacaaa47e02c7219aafc2d7c8e3d7bdfec","shortMessageHtmlLink":"[release] prepare v0.41.4 release"}},{"before":"d1cde8cda3eb0cb586cf1a4cc4cfab594381dd56","after":"ea9ff8796aec7bf1c1f286d347b6328d55928fe9","ref":"refs/heads/master","pushedAt":"2024-04-23T18:54:20.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"gopherbot","name":"GopherBot","path":"/gopherbot","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/8566911?s=80&v=4"},"commit":{"message":"extension/CHANGELOG.md: add the entry for v0.41.4\n\nChange-Id: Id349296ce5bc0504aa22183bc2826b6558c87f07\nReviewed-on: https://go-review.googlesource.com/c/vscode-go/+/581119\nCommit-Queue: Hyang-Ah Hana Kim \nReviewed-by: Peter Weinberger \nkokoro-CI: kokoro ","shortMessageHtmlLink":"extension/CHANGELOG.md: add the entry for v0.41.4"}},{"before":"cfc795c42ff9fabe1da602b21db343db1952f803","after":"d1cde8cda3eb0cb586cf1a4cc4cfab594381dd56","ref":"refs/heads/master","pushedAt":"2024-04-23T17:32:39.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"gopherbot","name":"GopherBot","path":"/gopherbot","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/8566911?s=80&v=4"},"commit":{"message":"extension/src/welcome: readd the fix for go.showWelcome handling\n\nThe original fix for golang/vscode-go#3319 also included\na minor refactoring attempt - centralize welcome page show logic\nin shouldShowGoWelcomePage. But that unfortunately introduced\na new bug, i.e., failed to apply the Web-based IDE exclusion rule\ncorrectly.\n\nReverted the previous change to remove the refactoring.\nAnd, this change adds the specific fix to address the bug reported\nin golang/vscode-go#3319.\n\nTest coverage would be nice, but it is tricky without\nmajor refactoring or complicating test logic to stub or\ninject dependencies.\n\nRenamed shouldShowGoWelcomePage to make it clear that\nthis is to decide whether we have news to show purely\nbased on the extension's version.\n\nFor golang/vscode-go#3319.\n\nChange-Id: Ia4915e0201e73d136b3efcec7c0cf4f5a5e4559f\nReviewed-on: https://go-review.googlesource.com/c/vscode-go/+/581118\nkokoro-CI: kokoro \nCommit-Queue: Hyang-Ah Hana Kim \nReviewed-by: Peter Weinberger ","shortMessageHtmlLink":"extension/src/welcome: readd the fix for go.showWelcome handling"}},{"before":"d0d95abad4fe809198ad3e01d964ab04f2f20fce","after":"cfc795c42ff9fabe1da602b21db343db1952f803","ref":"refs/heads/master","pushedAt":"2024-04-23T17:32:31.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"gopherbot","name":"GopherBot","path":"/gopherbot","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/8566911?s=80&v=4"},"commit":{"message":"Revert \"extension/src/welcome: fix 'go.showWelcome' setting interpretation\"\n\nThis reverts commit f8173bc90af694c2d1d7db25e6da125378149e96.\n\nReason: broke the welcome page suppression based on isInCloudIDE\nChange-Id: If042f5269754f7dd6cb4c1b2473979d5e11247b3\nReviewed-on: https://go-review.googlesource.com/c/vscode-go/+/581117\nCommit-Queue: Hyang-Ah Hana Kim \nkokoro-CI: kokoro \nReviewed-by: Peter Weinberger ","shortMessageHtmlLink":"Revert \"extension/src/welcome: fix 'go.showWelcome' setting interpret…"}},{"before":"22e26cc99851fda33199596eefc108c789ec4187","after":"abfa2cb8b40775618cfe3b5e8f40b8961722a727","ref":"refs/heads/release","pushedAt":"2024-04-19T17:33:47.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"gopherbot","name":"GopherBot","path":"/gopherbot","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/8566911?s=80&v=4"},"commit":{"message":"[release] extension/package.json: update version (v0.41.3)\n\nFor golang/vscode-go#3348\n\nChange-Id: If6c1892bdccb87124f3dfeba0546d651fe07fb09\nReviewed-on: https://go-review.googlesource.com/c/vscode-go/+/580416\nReviewed-by: Robert Findley \nCommit-Queue: Hyang-Ah Hana Kim \nkokoro-CI: kokoro ","shortMessageHtmlLink":"[release] extension/package.json: update version (v0.41.3)"}},{"before":"c7b9dd6598253311a2ed0adf673f632a27a246c5","after":"22e26cc99851fda33199596eefc108c789ec4187","ref":"refs/heads/release","pushedAt":"2024-04-19T17:32:55.000Z","pushType":"push","commitsCount":8,"pusher":{"login":"gopherbot","name":"GopherBot","path":"/gopherbot","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/8566911?s=80&v=4"},"commit":{"message":"[release] prepare v0.41.3 release\n\nd0d95aba extension/CHANGELOG.md: add a note for v0.41.3\nb501de3e Revert \"docs: update the debugging doc about remote mode default adapter\"\n9330b086 extension/src/goTelemetry: do our JSON enc/dec for telemetry start time\nf8173bc9 extension/src/welcome: fix 'go.showWelcome' setting interpretation\nad37a53c Revert \"src/goDebugConfiguration: change remote/attach default to dlv-dap\"\n40990c07 extension: resolve variables in customFormatter field.\n78deb717 docs: fix tools information doc link\n\nChange-Id: Ia32f0b7babc681365a02f5fd99b25573fb7934ab","shortMessageHtmlLink":"[release] prepare v0.41.3 release"}},{"before":"b501de3e1a743769e52717097d4976b16ef6cf73","after":"d0d95abad4fe809198ad3e01d964ab04f2f20fce","ref":"refs/heads/master","pushedAt":"2024-04-19T16:52:59.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"gopherbot","name":"GopherBot","path":"/gopherbot","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/8566911?s=80&v=4"},"commit":{"message":"extension/CHANGELOG.md: add a note for v0.41.3\n\nFor golang/vscode-go#3348\n\nChange-Id: I4c08f6418963e5e3904f85b1df185d279813ae5d\nReviewed-on: https://go-review.googlesource.com/c/vscode-go/+/580017\nCommit-Queue: Hyang-Ah Hana Kim \nAuto-Submit: Hyang-Ah Hana Kim \nkokoro-CI: kokoro \nReviewed-by: Robert Findley ","shortMessageHtmlLink":"extension/CHANGELOG.md: add a note for v0.41.3"}},{"before":"9330b086651a8969c6a8b7a508cf3d8c37f1aae1","after":"b501de3e1a743769e52717097d4976b16ef6cf73","ref":"refs/heads/master","pushedAt":"2024-04-19T16:52:17.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"gopherbot","name":"GopherBot","path":"/gopherbot","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/8566911?s=80&v=4"},"commit":{"message":"Revert \"docs: update the debugging doc about remote mode default adapter\"\n\nThis reverts commit 5b0d6db961e2b0a346d2984b0d10d8137cc5aba5.\n\nReason for revert: Need to address path mapping issue: golang/vscode-go#3175\n\nChange-Id: Iade1d9f2438993025ac1ef5ec9ad6f1213d79ed6\nReviewed-on: https://go-review.googlesource.com/c/vscode-go/+/580019\nkokoro-CI: kokoro \nCommit-Queue: Hyang-Ah Hana Kim \nReviewed-by: Robert Findley \nAuto-Submit: Hyang-Ah Hana Kim ","shortMessageHtmlLink":"Revert \"docs: update the debugging doc about remote mode default adap…"}},{"before":"fd0b4025bcebdde560c47f3d23c0cd6cf34a51f5","after":null,"ref":"refs/heads/dependabot/go_modules/extension/golang.org/x/net-0.23.0","pushedAt":"2024-04-19T12:49:39.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"gopherbot","name":"GopherBot","path":"/gopherbot","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/8566911?s=80&v=4"}},{"before":null,"after":"fd0b4025bcebdde560c47f3d23c0cd6cf34a51f5","ref":"refs/heads/dependabot/go_modules/extension/golang.org/x/net-0.23.0","pushedAt":"2024-04-19T12:48:18.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"},"commit":{"message":"build(deps): bump golang.org/x/net from 0.19.0 to 0.23.0 in /extension\n\nBumps [golang.org/x/net](https://github.com/golang/net) from 0.19.0 to 0.23.0.\n- [Commits](https://github.com/golang/net/compare/v0.19.0...v0.23.0)\n\n---\nupdated-dependencies:\n- dependency-name: golang.org/x/net\n dependency-type: indirect\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"build(deps): bump golang.org/x/net from 0.19.0 to 0.23.0 in /extension"}},{"before":"f8173bc90af694c2d1d7db25e6da125378149e96","after":"9330b086651a8969c6a8b7a508cf3d8c37f1aae1","ref":"refs/heads/master","pushedAt":"2024-04-08T07:06:24.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"gopherbot","name":"GopherBot","path":"/gopherbot","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/8566911?s=80&v=4"},"commit":{"message":"extension/src/goTelemetry: do our JSON enc/dec for telemetry start time\n\nWe noticed the vscode Memento API doesn't behave as we expected. That\nmade our recent attempt to increase the telemetry prompt rate\nstopped by this bug.\n\nInstead of relying on the Memento API's JSON stringify for Date object\nencoding, do the enc/dec work on ourside and let Memento work with\nstring types.\n\nThe existing changes cover the json encoding, decoding cases.\n\nNow goMain.ts activate() returns ExtensionTestAPI in testing mode.\n\nIn telemetry testing, we want to check if the value recorded with\nvscode's real Memento API can be still usable. The real implementation\nis accessible only by capturing the ExtensionContext passed to the\nactivate() invocation. Allow our test to access the extension's\nglobalState using the new ExtensionTestAPI.\n\nFixes golang/vscode-go#3312\n\nChange-Id: I4540f83201f315624b077d113d6bfe2b3d608719\nReviewed-on: https://go-review.googlesource.com/c/vscode-go/+/576775\nReviewed-by: Robert Findley \nAuto-Submit: Hyang-Ah Hana Kim \nkokoro-CI: kokoro \nCommit-Queue: Hyang-Ah Hana Kim ","shortMessageHtmlLink":"extension/src/goTelemetry: do our JSON enc/dec for telemetry start time"}},{"before":"ad37a53c96677da8fb620e2320bc52a15268622c","after":"f8173bc90af694c2d1d7db25e6da125378149e96","ref":"refs/heads/master","pushedAt":"2024-04-06T20:36:52.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"gopherbot","name":"GopherBot","path":"/gopherbot","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/8566911?s=80&v=4"},"commit":{"message":"extension/src/welcome: fix 'go.showWelcome' setting interpretation\n\nFixes golang/vscode-go#3319\n\nChange-Id: Idc64d150c170c96f6e2bee4016236666bf4d4c64\nReviewed-on: https://go-review.googlesource.com/c/vscode-go/+/577075\nkokoro-CI: kokoro \nCommit-Queue: Hyang-Ah Hana Kim \nReviewed-by: Peter Weinberger ","shortMessageHtmlLink":"extension/src/welcome: fix 'go.showWelcome' setting interpretation"}},{"before":"40990c07f726a560d4cd4f0643f0b49134a9e064","after":"ad37a53c96677da8fb620e2320bc52a15268622c","ref":"refs/heads/master","pushedAt":"2024-04-04T21:01:33.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"gopherbot","name":"GopherBot","path":"/gopherbot","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/8566911?s=80&v=4"},"commit":{"message":"Revert \"src/goDebugConfiguration: change remote/attach default to dlv-dap\"\n\nThis reverts commit 60c8ec9f1485a88f70d6d313f6eb8958a3be779a.\n\nReason for revert: Need to address path mapping issue: https://github.com/golang/vscode-go/issues/3175\n\nChange-Id: I9422ab3feaad91ae7f44de90bb3fa3ffbe353278\nReviewed-on: https://go-review.googlesource.com/c/vscode-go/+/576635\nkokoro-CI: kokoro \nReviewed-by: Hyang-Ah Hana Kim \nCommit-Queue: Suzy Mueller ","shortMessageHtmlLink":"Revert \"src/goDebugConfiguration: change remote/attach default to dlv…"}},{"before":"78deb7177420fd37cc50cd2bfd4b61001d77fd76","after":"40990c07f726a560d4cd4f0643f0b49134a9e064","ref":"refs/heads/master","pushedAt":"2024-04-04T14:48:58.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"gopherbot","name":"GopherBot","path":"/gopherbot","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/8566911?s=80&v=4"},"commit":{"message":"extension: resolve variables in customFormatter field.\n\nFixes golang/vscode-go#2582\nOriginally PR golang/vscode-go#2942.\n\nCo-authored-by: Sebastian Leisinger \nChange-Id: If4e2802ba4ab02e85830cf71883e0cc9557540f5\nReviewed-on: https://go-review.googlesource.com/c/vscode-go/+/576296\nCommit-Queue: Hyang-Ah Hana Kim \nkokoro-CI: kokoro \nReviewed-by: Robert Findley ","shortMessageHtmlLink":"extension: resolve variables in customFormatter field."}},{"before":"19afd64b3242c364d267ee93c6aa2ae27a1d73b4","after":"78deb7177420fd37cc50cd2bfd4b61001d77fd76","ref":"refs/heads/master","pushedAt":"2024-04-03T22:19:21.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"gopherbot","name":"GopherBot","path":"/gopherbot","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/8566911?s=80&v=4"},"commit":{"message":"docs: fix tools information doc link\n\nChange-Id: I9085d2c2fd5299eb199ec43c2299c5baba06580e\nGitHub-Last-Rev: a376d21520890f410ae6932af933c449871ed0cc\nGitHub-Pull-Request: golang/vscode-go#3309\nReviewed-on: https://go-review.googlesource.com/c/vscode-go/+/575897\nReviewed-by: Hyang-Ah Hana Kim \nAuto-Submit: Hyang-Ah Hana Kim \nReviewed-by: Alan Donovan \nkokoro-CI: kokoro \nCommit-Queue: Hyang-Ah Hana Kim ","shortMessageHtmlLink":"docs: fix tools information doc link"}},{"before":"5bbfaf9b70e86bd3f519b33905276672cbb7c76f","after":"c7b9dd6598253311a2ed0adf673f632a27a246c5","ref":"refs/heads/release","pushedAt":"2024-03-14T19:18:46.000Z","pushType":"push","commitsCount":2,"pusher":{"login":"gopherbot","name":"GopherBot","path":"/gopherbot","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/8566911?s=80&v=4"},"commit":{"message":"[release] prepare v0.41.2 release (2)\n\n19afd64b extension/CHANGELOG.md: mention user-visible fixes\n\nChange-Id: I0529a11820caedfd3ad358eb14c8132599f824df","shortMessageHtmlLink":"[release] prepare v0.41.2 release (2)"}},{"before":"f5d6cadb9dda7bd3b6a6af5c5b8fba6c942f104b","after":"19afd64b3242c364d267ee93c6aa2ae27a1d73b4","ref":"refs/heads/master","pushedAt":"2024-03-14T16:50:52.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"gopherbot","name":"GopherBot","path":"/gopherbot","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/8566911?s=80&v=4"},"commit":{"message":"extension/CHANGELOG.md: mention user-visible fixes\n\nFor golang/vscode-go#3249\n\nChange-Id: Ic73a96ae42789c1df0b5d3ef118856d37a62157d\nReviewed-on: https://go-review.googlesource.com/c/vscode-go/+/571098\nReviewed-by: Nooras Saba‎ \nkokoro-CI: kokoro \nReviewed-by: Suzy Mueller \nAuto-Submit: Hyang-Ah Hana Kim \nCommit-Queue: Hyang-Ah Hana Kim ","shortMessageHtmlLink":"extension/CHANGELOG.md: mention user-visible fixes"}},{"before":"be400e512a989c63b9e714d6bcae4c4cd2275dc2","after":null,"ref":"refs/heads/dependabot/go_modules/extension/google.golang.org/protobuf-1.33.0","pushedAt":"2024-03-13T23:22:37.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"gopherbot","name":"GopherBot","path":"/gopherbot","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/8566911?s=80&v=4"}},{"before":null,"after":"be400e512a989c63b9e714d6bcae4c4cd2275dc2","ref":"refs/heads/dependabot/go_modules/extension/google.golang.org/protobuf-1.33.0","pushedAt":"2024-03-13T23:19:15.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"},"commit":{"message":"build(deps): bump google.golang.org/protobuf in /extension\n\nBumps google.golang.org/protobuf from 1.31.0 to 1.33.0.\n\n---\nupdated-dependencies:\n- dependency-name: google.golang.org/protobuf\n dependency-type: indirect\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"build(deps): bump google.golang.org/protobuf in /extension"}},{"before":"2ba3f688d16dc73a80618c17aa426a34ebc41d87","after":"5bbfaf9b70e86bd3f519b33905276672cbb7c76f","ref":"refs/heads/release","pushedAt":"2024-03-13T21:51:12.000Z","pushType":"push","commitsCount":13,"pusher":{"login":"gopherbot","name":"GopherBot","path":"/gopherbot","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/8566911?s=80&v=4"},"commit":{"message":"[release] prepare v0.41.2 release\n\nf5d6cadb extension/src/goStatus: fix quick pick for gopls trace open\n53bf019e src/language: adjust panic trace capture logic\nb4b68a76 README.md: use the new telemetry official doc link\n361c8014 extension/src/goTelemetry: increase telemetry prompt rate to 1%\n0b3fabc4 extension/src/goMain: skip vscgo installation on windows\n9480a167 extension: start v0.42.0 dev cycle\nbeaf5fcb extension/test/gopls: allow more time for testify tests\n484a195a extension/src/goTools: add golangci-lint and gofumpt version mapping\n1d634bf3 .github/workflows: use 1.22, drop 1.18\n6dd3745f docs/tools.md: fix vscgo package doc link\nbaab7be1 extension/tools/release: add test for rc\n7bfbcaf1 src/goTest: fix multifile suite test fails to debug\n\nChange-Id: I966aaac48ecb67b22824bd7b3600bf90d983a039","shortMessageHtmlLink":"[release] prepare v0.41.2 release"}},{"before":"53bf019eab228edae01c13bbf9bedf88ab9538c0","after":"f5d6cadb9dda7bd3b6a6af5c5b8fba6c942f104b","ref":"refs/heads/master","pushedAt":"2024-03-13T20:16:58.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"gopherbot","name":"GopherBot","path":"/gopherbot","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/8566911?s=80&v=4"},"commit":{"message":"extension/src/goStatus: fix quick pick for gopls trace open\n\nThere is an extra space in the presented quick pick option.\n\nFixes golang/vscode-go#3236\n\nChange-Id: I073ee18b6296778c5056e5f4f6f662061d89a565\nReviewed-on: https://go-review.googlesource.com/c/vscode-go/+/571318\nReviewed-by: Suzy Mueller \nCommit-Queue: Hyang-Ah Hana Kim \nkokoro-CI: kokoro ","shortMessageHtmlLink":"extension/src/goStatus: fix quick pick for gopls trace open"}},{"before":"b4b68a76fac190ca12179ef9ef24ecffc57ea9d6","after":"53bf019eab228edae01c13bbf9bedf88ab9538c0","ref":"refs/heads/master","pushedAt":"2024-03-13T19:07:45.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"gopherbot","name":"GopherBot","path":"/gopherbot","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/8566911?s=80&v=4"},"commit":{"message":"src/language: adjust panic trace capture logic\n\nUse '[Info - ' or '[Warning - ' or '[Error - ' as the marker\nfor the end of the panic trace.\n\nFixes golang/vscode-go#3248\n\nChange-Id: I3aabc0292855f63ceffeea5c09b59e4e0253e95b\nReviewed-on: https://go-review.googlesource.com/c/vscode-go/+/571316\nCommit-Queue: Hyang-Ah Hana Kim \nkokoro-CI: kokoro \nReviewed-by: Suzy Mueller ","shortMessageHtmlLink":"src/language: adjust panic trace capture logic"}},{"before":"361c80146405d16a392046646fa2e323550b63c1","after":"b4b68a76fac190ca12179ef9ef24ecffc57ea9d6","ref":"refs/heads/master","pushedAt":"2024-03-12T15:05:45.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"gopherbot","name":"GopherBot","path":"/gopherbot","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/8566911?s=80&v=4"},"commit":{"message":"README.md: use the new telemetry official doc link\n\nAnd update the CHANGELOG.md\n\nChange-Id: I1faeb8ea62c14045c42b7a2ac9f3d4d3f0824925\nReviewed-on: https://go-review.googlesource.com/c/vscode-go/+/570678\nCommit-Queue: Hyang-Ah Hana Kim \nReviewed-by: Robert Findley \nAuto-Submit: Hyang-Ah Hana Kim \nkokoro-CI: kokoro ","shortMessageHtmlLink":"README.md: use the new telemetry official doc link"}},{"before":"0b3fabc4c832194f59ca913f36f048aecd1f78ae","after":"361c80146405d16a392046646fa2e323550b63c1","ref":"refs/heads/master","pushedAt":"2024-03-07T22:51:14.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"gopherbot","name":"GopherBot","path":"/gopherbot","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/8566911?s=80&v=4"},"commit":{"message":"extension/src/goTelemetry: increase telemetry prompt rate to 1%\n\nChange-Id: I6544f0d5d1fb2b44200cf3f924573c6ced7b1b52\nReviewed-on: https://go-review.googlesource.com/c/vscode-go/+/569216\nReviewed-by: Robert Findley \nCommit-Queue: Hyang-Ah Hana Kim \nkokoro-CI: kokoro ","shortMessageHtmlLink":"extension/src/goTelemetry: increase telemetry prompt rate to 1%"}}],"hasNextPage":true,"hasPreviousPage":false,"activityType":"all","actor":null,"timePeriod":"all","sort":"DESC","perPage":30,"cursor":"djE6ks8AAAAETyFT1AA","startCursor":null,"endCursor":null}},"title":"Activity · golang/vscode-go"}