{"payload":{"feedbackUrl":"https://github.com/orgs/community/discussions/53140","repo":{"id":635979215,"defaultBranch":"main","name":"mock","ownerLogin":"uber-go","currentUserCanPush":false,"isFork":false,"isEmpty":false,"createdAt":"2023-05-03T21:47:38.000Z","ownerAvatar":"https://avatars.githubusercontent.com/u/19262598?v=4","public":true,"private":false,"isOrgOwned":true},"refInfo":{"name":"","listCacheKey":"v0:1720637507.0","currentOid":""},"activityList":{"items":[{"before":"33ccc990781d28f8a296efe486196597d915792e","after":"c50d83cecc89ff6caadcd7747b9c6bf9ddda9d58","ref":"refs/heads/main","pushedAt":"2024-09-19T14:53:26.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"JacobOaks","name":"Jacob Oaks","path":"/JacobOaks","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/11602410?s=80&v=4"},"commit":{"message":"Support Go 1.22 and Go 1.23 (#203)\n\nThis change updates all `go.mod` and ci workflows to only support go1.22\r\nand go1.23.\r\n\r\nAlthough this will force users to upgrade to go1.22 to use the next\r\nrelease, it is technically in line with our release policy (see:\r\nhttps://github.com/uber-go/mock?tab=readme-ov-file#supported-go-versions)\r\nand will allow us to merge #198 without using build tags for references\r\nto the new `*types.Alias` and `types.Unalias()`.","shortMessageHtmlLink":"Support Go 1.22 and Go 1.23 (#203)"}},{"before":"60372e3e888c1a43656b5b495fabf1ba95fc2d6e","after":"33ccc990781d28f8a296efe486196597d915792e","ref":"refs/heads/main","pushedAt":"2024-09-18T19:00:49.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"JacobOaks","name":"Jacob Oaks","path":"/JacobOaks","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/11602410?s=80&v=4"},"commit":{"message":"Avoid stringer-related deadlocks without adding ISGOMOCK (#204)\n\nA deadlock related to controller calling Stringer on mocks themselves\r\nwas revealed in #116. #144 solved this deadlock by adding a generated\r\n`ISGOMOCK()` method to all generated mocks, and then checking for it\r\nbefore calling `.String()` on arguments.\r\n\r\nThis reveals an exported method on each generated mock that:\r\n* Bloats the generated code\r\n* Can be taken dependency on in strange ways via Hyrum's Law\r\n* Technically opens up another route for naming collision.\r\n\r\nThis PR attempts to clean up this type of check by instead generating\r\nan unexported field in generated mock structs instead, and checks for it\r\nusing reflect.\r\nThis hides this implementation detail of gomock/mockgen better,\r\nand produces less generated bloat.\r\n\r\nNote that, importantly, the regression test added in #144 still passes\r\nwith this PR.\r\n\r\nRef: #193","shortMessageHtmlLink":"Avoid stringer-related deadlocks without adding ISGOMOCK (#204)"}},{"before":"70a5e8c8f892fdd0f2381df782079f7da9fd1962","after":"60372e3e888c1a43656b5b495fabf1ba95fc2d6e","ref":"refs/heads/main","pushedAt":"2024-09-11T21:00:45.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"JacobOaks","name":"Jacob Oaks","path":"/JacobOaks","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/11602410?s=80&v=4"},"commit":{"message":"chore: gofumpt -w . (#202)\n\nSigned-off-by: Sasha Melentyev ","shortMessageHtmlLink":"chore: gofumpt -w . (#202)"}},{"before":"ec32d996cb2940d7e701c9edffa920057c759d6a","after":"70a5e8c8f892fdd0f2381df782079f7da9fd1962","ref":"refs/heads/main","pushedAt":"2024-07-10T19:01:48.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"sywhang","name":"Sung Yoon Whang","path":"/sywhang","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/30421794?s=80&v=4"},"commit":{"message":"Clarify documentation on Finish (#194)\n\nFinish no longer has to be explicitly called on Controller with defer if\r\nthe Controller was created with testing.T.\r\n\r\nWe tried to just mark this as deprecated in #50 but doing so would break\r\nmany users, so we reverted it in #85.\r\n\r\nIn doing so we dropped some wordings from the doc that marked Finished\r\nas unnecessary for most cases.\r\n\r\nThis PR fixes the docstring to guide users without explicitly marking\r\nthe API deprecated.","shortMessageHtmlLink":"Clarify documentation on Finish (#194)"}},{"before":"13a452d53ea6e8b2f492a8982241532d7b84745a","after":null,"ref":"refs/heads/dependabot/github_actions/goreleaser/goreleaser-action-6","pushedAt":"2024-07-10T18:51:47.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"}},{"before":"2c0a7fd3fd16005190aec5f0400031d8a048419d","after":"ec32d996cb2940d7e701c9edffa920057c759d6a","ref":"refs/heads/main","pushedAt":"2024-07-10T18:51:40.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"sywhang","name":"Sung Yoon Whang","path":"/sywhang","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/30421794?s=80&v=4"},"commit":{"message":"Bump goreleaser/goreleaser-action from 4 to 6 (#182)\n\nBumps\r\n[goreleaser/goreleaser-action](https://github.com/goreleaser/goreleaser-action)\r\nfrom 4 to 6.\r\n
\r\nRelease notes\r\n

Sourced from goreleaser/goreleaser-action's\r\nreleases.

\r\n
\r\n

v6.0.0

\r\n
\r\n

[!WARNING]\r\nThis is a breaking change!

\r\n

Follow the instructions here to\r\nupgrade!

\r\n
\r\n

What's Changed

\r\n
    \r\n
  • feat!: use "~> v2" as default by @​caarlos0 in goreleaser/goreleaser-action#463
  • \r\n
\r\n

Full Changelog: https://github.com/goreleaser/goreleaser-action/compare/v5...v6.0.0

\r\n

v5.1.0

\r\n

Important

\r\n

This version changes the default behavior of latest to\r\n~> v1.

\r\n

The next major of this action (v6), will change this to ~>\r\nv2, and will be launched together with GoReleaser v2.

\r\n

What's Changed

\r\n
    \r\n
  • docs: bump actions to latest major by @​crazy-max in goreleaser/goreleaser-action#435
  • \r\n
  • chore(deps): bump docker/bake-action from 3 to 4 by @​dependabot in goreleaser/goreleaser-action#436
  • \r\n
  • chore(deps): bump codecov/codecov-action from 3 to 4 by @​dependabot in goreleaser/goreleaser-action#437
  • \r\n
  • chore(deps): bump actions/setup-go from 4 to 5 by @​dependabot in goreleaser/goreleaser-action#443
  • \r\n
  • chore(deps): bump actions/upload-artifact from 3 to 4 by @​dependabot in goreleaser/goreleaser-action#444
  • \r\n
  • Delete .kodiak.toml by @​vedantmgoyal9\r\nin goreleaser/goreleaser-action#446
  • \r\n
  • chore(deps): bump codecov/codecov-action from 3 to 4 by @​dependabot in goreleaser/goreleaser-action#448
  • \r\n
  • chore(deps): bump ip from 2.0.0 to 2.0.1 by @​dependabot in goreleaser/goreleaser-action#450
  • \r\n
  • Upgrade setup-go action version in README by @​kishaningithub\r\nin goreleaser/goreleaser-action#455
  • \r\n
  • chore(deps): bump tar from 6.1.14 to 6.2.1 by @​dependabot in goreleaser/goreleaser-action#456
  • \r\n
  • chore: use corepack to install yarn by @​crazy-max in goreleaser/goreleaser-action#458
  • \r\n
  • feat: lock this major version of the action to use '~> v1' as\r\n'latest' by @​caarlos0 in goreleaser/goreleaser-action#461
  • \r\n
  • chore(deps): bump semver from 7.6.0 to 7.6.2 by @​dependabot in goreleaser/goreleaser-action#462
  • \r\n
  • chore(deps): bump @​actions/http-client from 2.2.0 to\r\n2.2.1 by @​dependabot in goreleaser/goreleaser-action#451
  • \r\n
\r\n

New Contributors

\r\n
    \r\n
  • @​vedantmgoyal9\r\nmade their first contribution in goreleaser/goreleaser-action#446
  • \r\n
\r\n

Full Changelog: https://github.com/goreleaser/goreleaser-action/compare/v5.0.0...v5.1.0

\r\n

v5.0.0

\r\n

What's Changed

\r\n
    \r\n
  • feat: node 20 as default runtime (requires Actions\r\nRunner v2.308.0 or later) by @​crazy-max in goreleaser/goreleaser-action#432
  • \r\n
  • chore(deps): bump @​actions/core from 1.10.0 to 1.10.1\r\nin goreleaser/goreleaser-action#434
  • \r\n
\r\n

Full Changelog: https://github.com/goreleaser/goreleaser-action/compare/v4.6.0...v5.0.0

\r\n

v4.6.0

\r\n

Reverts the change to node20 runtime.

\r\n\r\n
\r\n

... (truncated)

\r\n
\r\n
\r\nCommits\r\n\r\n
\r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=goreleaser/goreleaser-action&package-manager=github_actions&previous-version=4&new-version=6)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n
\r\nDependabot commands and options\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot show ignore conditions` will show all\r\nof the ignore conditions of the specified dependency\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n
\r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>","shortMessageHtmlLink":"Bump goreleaser/goreleaser-action from 4 to 6 (#182)"}},{"before":"eb51d12b4431880365f76d67d6ece2aaf9719ee6","after":null,"ref":"refs/heads/dependabot/go_modules/golang.org/x/mod-0.15.0","pushedAt":"2024-07-10T03:32:38.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"r-hang","name":null,"path":"/r-hang","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/42982339?s=80&v=4"}},{"before":"412e8aea4e99db7cf5f49204be24bbd3ae8fd452","after":"2c0a7fd3fd16005190aec5f0400031d8a048419d","ref":"refs/heads/main","pushedAt":"2024-07-10T03:27:12.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"r-hang","name":null,"path":"/r-hang","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/42982339?s=80&v=4"},"commit":{"message":"chore: upgrade go versions and fix ci test execution (#187)\n\nI updated the CI to use the two newest stable versions of go (v1.21.x\r\nand v1.22.x) to test the code as well as the oldest version (`v1.19.x`)\r\nthat could still be used to build the source.\r\n\r\nThe behaviour of the `go version` line in `go.mod` changed with\r\n`v1.21.x`: it should state the oldest version of go that is needed to\r\nbuild the source. The source builds and tests fine with `v1.19.x`, older\r\nversions however fail, so I set it to this version.\r\n\r\nBefore my changes the `test` GH workflow didn't actually execute\r\n`./ci/test.sh` because there is was check that skipped testing if the\r\nused go version was any other than `1.18`. I removed this check which\r\nshowed some tests failing even without my changes.\r\n\r\nThe issue turned out to have been introduced by accident (because tests\r\nweren't executed) in https://github.com/uber-go/mock/pull/48. The fix\r\nfor it can be found in commit\r\nhttps://github.com/uber-go/mock/pull/187/commits/0403497b4ea38317a8cbf0fb30c122f4dc60bdb4\r\n(part of this PR). Additionally I had to regenerate all mocks or\r\n`./ci/tests.sh` would complain that they weren't up to date.","shortMessageHtmlLink":"chore: upgrade go versions and fix ci test execution (#187)"}},{"before":"50218579f072a10ffe5034e499f530183a484906","after":"412e8aea4e99db7cf5f49204be24bbd3ae8fd452","ref":"refs/heads/main","pushedAt":"2024-07-10T03:17:39.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"r-hang","name":null,"path":"/r-hang","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/42982339?s=80&v=4"},"commit":{"message":"chore: go generate for ISGOMOCK method (#189)\n\nrelated https://github.com/uber-go/mock/pull/144\r\nWhether or not it is a good idea to generate an ISGOMOCK method for\r\nfmt.Stringer deadlock","shortMessageHtmlLink":"chore: go generate for ISGOMOCK method (#189)"}},{"before":"b59039cb15fe765906a7401884e07bdefd10a3e1","after":"50218579f072a10ffe5034e499f530183a484906","ref":"refs/heads/main","pushedAt":"2024-07-01T05:54:05.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"r-hang","name":null,"path":"/r-hang","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/42982339?s=80&v=4"},"commit":{"message":"Make Cond Matcher generic (#183)\n\n`gomock.Cond` at the moment expects an matcher function with the\r\nsignature `func(x any) bool` requiring a manual cast to the expected\r\ntype. By making this matcher generic the callback function can be typed\r\nremoving the need for a manual cast to the expected type.\r\n\r\nThe change should be backwards compatible with existing tests using\r\n`gomock.Cond`.","shortMessageHtmlLink":"Make Cond Matcher generic (#183)"}},{"before":"893ee9cb6b098575f0bad39eaf4d02eeec917633","after":"b59039cb15fe765906a7401884e07bdefd10a3e1","ref":"refs/heads/main","pushedAt":"2024-06-18T17:56:50.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"r-hang","name":null,"path":"/r-hang","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/42982339?s=80&v=4"},"commit":{"message":"chore: speedup mockgen by changing go list parameters (#181)\n\nThis PR implements the changes described in issue #180 to speedup mock\r\ngeneration","shortMessageHtmlLink":"chore: speedup mockgen by changing go list parameters (#181)"}},{"before":"f5511ca9ae9be9ffd7fcc1acf0d98b98be87c916","after":null,"ref":"refs/heads/dependabot/github_actions/goreleaser/goreleaser-action-5","pushedAt":"2024-06-10T23:18:03.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"}},{"before":null,"after":"13a452d53ea6e8b2f492a8982241532d7b84745a","ref":"refs/heads/dependabot/github_actions/goreleaser/goreleaser-action-6","pushedAt":"2024-06-10T23:17:59.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":"Bump goreleaser/goreleaser-action from 4 to 6\n\nBumps [goreleaser/goreleaser-action](https://github.com/goreleaser/goreleaser-action) from 4 to 6.\n- [Release notes](https://github.com/goreleaser/goreleaser-action/releases)\n- [Commits](https://github.com/goreleaser/goreleaser-action/compare/v4...v6)\n\n---\nupdated-dependencies:\n- dependency-name: goreleaser/goreleaser-action\n dependency-type: direct:production\n update-type: version-update:semver-major\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"Bump goreleaser/goreleaser-action from 4 to 6"}},{"before":"c9ae04c6e772f065390ee33052c1ed0ce753b897","after":"893ee9cb6b098575f0bad39eaf4d02eeec917633","ref":"refs/heads/main","pushedAt":"2024-05-14T17:57:33.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"r-hang","name":null,"path":"/r-hang","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/42982339?s=80&v=4"},"commit":{"message":"Do not expose “Code generated by” block in package comments (#168)\n\nFixes a regression introduced in https://github.com/uber-go/mock/pull/31\r\n(before, mockgen always added an empty line between package comment and\r\npreceding comments).\r\n\r\n“Code generated by” block should not be a part of the package comment.","shortMessageHtmlLink":"Do not expose “Code generated by” block in package comments (#168)"}},{"before":"ac11bf011194896a368019a4b937a97a48caa062","after":null,"ref":"refs/heads/dependabot/go_modules/golang.org/x/tools-0.18.0","pushedAt":"2024-03-22T19:41:21.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"}},{"before":"3d33fb1eba90b407e1f6b1b030a13b1aac4a0213","after":"c9ae04c6e772f065390ee33052c1ed0ce753b897","ref":"refs/heads/main","pushedAt":"2024-03-22T19:41:13.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"r-hang","name":null,"path":"/r-hang","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/42982339?s=80&v=4"},"commit":{"message":"Bump golang.org/x/tools from 0.2.0 to 0.18.0 (#158)\n\nBumps [golang.org/x/tools](https://github.com/golang/tools) from 0.2.0\r\nto 0.18.0.\r\n
\r\nRelease notes\r\n

Sourced from golang.org/x/tools's\r\nreleases.

\r\n
\r\n

gopls/v0.15.0-pre.3

\r\n

These are release notes for a prerelease version of gopls.\r\nv0.15.0 will be released soon, but please try the prerelease if you\r\ncan!

\r\n
go install golang.org/x/tools/gopls@v0.15.0-pre.3\r\n
\r\n

This release introduces "zero config" gopls, which is a set\r\nof heuristics allowing gopls to Do The Right Thing when you open a Go\r\nfile. We believe this addresses the two largest pain points we hear\r\nabout from our users: difficulty configuring multi-module repositories,\r\nand working on multiple GOOS/GOARCH combinations. However, this is a\r\nlarge change to the way gopls models your workspace, and the dynamic\r\nloading/unloading of builds may be surprising in some cases. Your\r\nfeedback on this new feature is greatly appreciated. See below for more\r\ndetails.

\r\n

New Features

\r\n

Simpler workspace configuration and improved build tag support

\r\n

The headline feature of this release is a rewrite of gopls's logic\r\nfor associating files with build configurations that enables gopls to\r\ngive accurate answers when navigating almost any Go source file on your\r\nmachine.

\r\n

Most features of gopls rely on type information, which comes not from\r\nthe file in isolation but depends on the relationship between the file\r\nand the other files in its package, and between the package and all its\r\ndependencies; this in turn depends on go.mod and go.work files. In\r\neffect, gopls needs to decide which go build command--which\r\nworking directory, package arguments, GOOS, GOARCH, build tags, and so\r\non--would cause each file to be processed by the compiler.

\r\n

Previous versions of gopls only allowed one build per workspace\r\nfolder, and users had to be careful to configure the right workspace\r\nroot and build environment. As a result, users often encountered\r\nconfusing error messages when they opened the wrong directory, or a file\r\nthat was tagged for a different operating system or architecture--the\r\ndreaded "No packages found" error. This situation was improved\r\nby the introduction of go.work files, but still required\r\nconfiguration and a preexisting understanding of the code being\r\nedited.

\r\n

With this release, gopls now allows multiple builds per workspace,\r\nand uses heuristics to automatically derive the set of active builds.\r\nGopls will ensure that an active build contains every module with an\r\nopen file in your workspace, adding new builds and GOOS/GOARCH\r\ncombinations as needed to cover files that don't match the host\r\noperating system or architecture.

\r\n

For example, suppose we had a repository with three modules:\r\nmoda, modb, and modc, and a\r\ngo.work file using modules moda and\r\nmodb. If we open the files moda/a.go,\r\nmodb/b.go, moda/a_windows.go, and\r\nmodc/c.go, gopls will automatically create three\r\nbuilds:

\r\n

\r\n

In some cases this may cause gopls to do more work, since gopls is\r\nnow tracking three builds instead of one. However, the scalability redesign we\r\nfirst announced in v0.12\r\nallows us to avoid most of this work by efficient caching in a\r\npersistent store.

\r\n

So, all gopls' navigation, query, analysis, and refactoring features\r\nshould work equally well in both files. Notably, you'll see compiler\r\ndiagnostics for the appropriate build in real time, making it much\r\neasier to make changes to cross-platform code.

\r\n

Preview refactoring edits

\r\n

Refactoring code actions now support resolving edits. This update\r\nenables features like code\r\naction previews within VS Code (triggered by Ctrl+Enter).

\r\n

\r\n

To take advantage of this new gopls feature, clients must register\r\nsupport via:

\r\n
{\r\n\t"textDocument": {\r\n\t\t"codeAction": {\r\n\t\t\t"dataSupport": true,\r\n\t\t\t"resolveSupport": {\r\n\t\t\t\t"properties": ["edit"]\r\n\t\t\t}\r\n\t\t}\r\n\t}\r\n}\r\n
\r\n

Analysis & diagnostics

\r\n\r\n
\r\n

... (truncated)

\r\n
\r\n
\r\nCommits\r\n
    \r\n
  • c5643e9\r\ngopls/internal/server: fix two bugs related to dynamic\r\nconfiguration
  • \r\n
  • 50b4f1b\r\ngopls/internal/golang: close open file
  • \r\n
  • f0ef3c6\r\ngopls: update x/telemetry dependency to fix crash
  • \r\n
  • 8cf0a8e\r\ngopls: record that v0.15 will be the last to support go1.18
  • \r\n
  • 730dc3c\r\ngopls/internal/settings: add a hidden option to disable zero config
  • \r\n
  • 95f04f4\r\ngopls/internal/golang: add resolve support for inline refactorings
  • \r\n
  • 9619683\r\ngopls/internal/cache: treat local replaces as workspace modules
  • \r\n
  • a5af84e\r\ngopls/internal/cache: check views on any on-disk change to go.mod\r\nfiles
  • \r\n
  • a7407fa\r\ngopls: update telemetry
  • \r\n
  • 314368d\r\ngo/analysis/passes/deepequalerrors: audit for types.Alias safety
  • \r\n
  • Additional commits viewable in compare\r\nview
  • \r\n
\r\n
\r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=golang.org/x/tools&package-manager=go_modules&previous-version=0.2.0&new-version=0.18.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n
\r\nDependabot commands and options\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot show ignore conditions` will show all\r\nof the ignore conditions of the specified dependency\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n
\r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>","shortMessageHtmlLink":"Bump golang.org/x/tools from 0.2.0 to 0.18.0 (#158)"}},{"before":"03f9c2bc752f71836b7dac8e48de1a1cd4144a63","after":null,"ref":"refs/heads/dependabot/go_modules/tools/github.com/stretchr/testify-1.9.0","pushedAt":"2024-03-22T19:40:24.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"r-hang","name":null,"path":"/r-hang","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/42982339?s=80&v=4"}},{"before":"0e90b50a5a209668c3fe46afea126b52b529a37d","after":"3d33fb1eba90b407e1f6b1b030a13b1aac4a0213","ref":"refs/heads/main","pushedAt":"2024-03-22T19:40:20.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"r-hang","name":null,"path":"/r-hang","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/42982339?s=80&v=4"},"commit":{"message":"Bump github.com/stretchr/testify from 1.8.4 to 1.9.0 in /tools (#162)\n\nBumps [github.com/stretchr/testify](https://github.com/stretchr/testify)\r\nfrom 1.8.4 to 1.9.0.\r\n
\r\nRelease notes\r\n

Sourced from github.com/stretchr/testify's\r\nreleases.

\r\n
\r\n

v1.9.0

\r\n

What's Changed

\r\n
    \r\n
  • Fix Go modules version by @​SuperQ in stretchr/testify#1394
  • \r\n
  • Document that require is not safe to call in created goroutines by\r\n@​programmer04\r\nin stretchr/testify#1392
  • \r\n
  • Remove myself from MAINTAINERS.md by @​mvdkleijn in stretchr/testify#1367
  • \r\n
  • Correct spelling/grammar by @​echarrod in stretchr/testify#1389
  • \r\n
  • docs: Update URLs in README by @​davidjb in stretchr/testify#1349
  • \r\n
  • Update mockery link to Github Pages in README by @​LandonTClipp\r\nin stretchr/testify#1346
  • \r\n
  • docs: Fix typos in tests and comments by @​alexandear in stretchr/testify#1410
  • \r\n
  • CI: tests from go1.17 by @​SuperQ in stretchr/testify#1409
  • \r\n
  • Fix adding ? when no values passed by @​lesichkovm in stretchr/testify#1320
  • \r\n
  • codegen: use standard header for generated files by @​dolmen in stretchr/testify#1406
  • \r\n
  • mock: AssertExpectations log reason only on failure by @​hikyaru-suzuki\r\nin stretchr/testify#1360
  • \r\n
  • assert: fix flaky TestNeverTrue by @​dolmen in stretchr/testify#1417
  • \r\n
  • README: fix typos "set up" vs "setup" by @​ossan-dev in stretchr/testify#1428
  • \r\n
  • mock: move regexp compilation outside of Called by @​aud10slave in stretchr/testify#631
  • \r\n
  • assert: refactor internal func getLen() by @​dolmen in stretchr/testify#1445
  • \r\n
  • mock: deprecate type AnythingOfTypeArgument (#1434)\r\nby @​dolmen in stretchr/testify#1441
  • \r\n
  • Remove no longer needed assert.canConvert by @​alexandear in stretchr/testify#1470
  • \r\n
  • assert: ObjectsAreEqual: use time.Equal for time.Time types by @​tscales in stretchr/testify#1464
  • \r\n
  • Bump actions/checkout from 3 to 4 by @​dependabot in stretchr/testify#1466
  • \r\n
  • Bump actions/setup-go from 3.2.0 to 4.1.0 by @​dependabot in stretchr/testify#1451
  • \r\n
  • fix: make EventuallyWithT concurrency safe by @​czeslavo in stretchr/testify#1395
  • \r\n
  • assert: fix httpCode and HTTPBody occur panic when http.Handler read\r\nBody by @​hidu in stretchr/testify#1484
  • \r\n
  • assert.EqualExportedValues: fix handling of arrays by @​zrbecker in stretchr/testify#1473
  • \r\n
  • .github: use latest Go versions by @​kevinburkesegment\r\nin stretchr/testify#1489
  • \r\n
  • assert: Deprecate EqualExportedValues by @​HaraldNordgren\r\nin stretchr/testify#1488
  • \r\n
  • suite: refactor test assertions by @​alexandear in stretchr/testify#1474
  • \r\n
  • suite: fix SetupSubTest and TearDownSubTest execution order by @​linusbarth in stretchr/testify#1471
  • \r\n
  • docs: Fix deprecation comments for http package by @​alexandear in stretchr/testify#1335
  • \r\n
  • Add map support doc comments to Subset and NotSubset by @​jedevc in stretchr/testify#1306
  • \r\n
  • TestErrorIs/TestNotErrorIs: check error message contents by @​craig65535 in stretchr/testify#1435
  • \r\n
  • suite: fix subtest names (fix #1501)\r\nby @​dolmen in stretchr/testify#1504
  • \r\n
  • assert: improve unsafe.Pointer tests by @​dolmen in stretchr/testify#1505
  • \r\n
  • assert: simplify isNil implementation by @​dolmen in stretchr/testify#1506
  • \r\n
  • assert.InEpsilonSlice: fix expected/actual order and other\r\nimprovements by @​dolmen in stretchr/testify#1483
  • \r\n
  • Fix dependency cycle with objx #1292\r\nby @​dolmen in stretchr/testify#1453
  • \r\n
  • mock: refactor TestIsArgsEqual by @​dolmen in stretchr/testify#1444
  • \r\n
  • mock: optimize argument matching checks by @​dolmen in stretchr/testify#1416
  • \r\n
  • assert: fix TestEventuallyTimeout by @​dolmen in stretchr/testify#1412
  • \r\n
  • CI: add go 1.21 in GitHub Actions by @​dolmen in stretchr/testify#1450
  • \r\n
  • suite: fix recoverAndFailOnPanic to report test failure at the right\r\nlocation by @​dolmen in stretchr/testify#1502
  • \r\n
  • Update maintainers by @​brackendawson\r\nin stretchr/testify#1533
  • \r\n
  • assert: Fix EqualValues to handle overflow/underflow by @​arjunmahishi\r\nin stretchr/testify#1531
  • \r\n
  • assert: better formatting for Len() error by @​kevinburkesegment\r\nin stretchr/testify#1485
  • \r\n
  • Ensure AssertExpectations does not fail in skipped tests by @​ianrose14 in stretchr/testify#1331
  • \r\n
  • suite: fix deadlock in suite.Require()/Assert() by @​arjunmahishi\r\nin stretchr/testify#1535
  • \r\n
  • Revert "assert: ObjectsAreEqual: use time.Equal for time.Time\r\ntype" by @​brackendawson\r\nin stretchr/testify#1537
  • \r\n
  • [chore] Add issue templates by @​arjunmahishi\r\nin stretchr/testify#1538
  • \r\n
  • Update the build status badge by @​brackendawson\r\nin stretchr/testify#1540
  • \r\n
\r\n\r\n
\r\n

... (truncated)

\r\n
\r\n
\r\nCommits\r\n
    \r\n
  • bb548d0\r\nMerge pull request #1552\r\nfrom stretchr/dependabot/go_modules/github.com/stret...
  • \r\n
  • 814075f\r\nbuild(deps): bump github.com/stretchr/objx from 0.5.1 to 0.5.2
  • \r\n
  • e045612\r\nMerge pull request #1339\r\nfrom bogdandrutu/uintptr
  • \r\n
  • 5b6926d\r\nMerge pull request #1385\r\nfrom hslatman/not-implements
  • \r\n
  • 9f97d67\r\nMerge pull request #1550\r\nfrom stretchr/release-notes
  • \r\n
  • bcb0d3f\r\nInclude the auto-release notes in releases
  • \r\n
  • fb770f8\r\nMerge pull request #1247\r\nfrom ccoVeille/typos
  • \r\n
  • 85d8bb6\r\nfix typos in comments, tests and github templates
  • \r\n
  • e2741fa\r\nMerge pull request #1548\r\nfrom arjunmahishi/msgAndArgs
  • \r\n
  • 6e59f20\r\nhttp_assertions: assert that the msgAndArgs actually works in tests
  • \r\n
  • Additional commits viewable in compare\r\nview
  • \r\n
\r\n
\r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/stretchr/testify&package-manager=go_modules&previous-version=1.8.4&new-version=1.9.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\r\n\r\nDependabot will resolve any conflicts with this PR as long as you don't\r\nalter it yourself. You can also trigger a rebase manually by commenting\r\n`@dependabot rebase`.\r\n\r\n[//]: # (dependabot-automerge-start)\r\n[//]: # (dependabot-automerge-end)\r\n\r\n---\r\n\r\n
\r\nDependabot commands and options\r\n
\r\n\r\nYou can trigger Dependabot actions by commenting on this PR:\r\n- `@dependabot rebase` will rebase this PR\r\n- `@dependabot recreate` will recreate this PR, overwriting any edits\r\nthat have been made to it\r\n- `@dependabot merge` will merge this PR after your CI passes on it\r\n- `@dependabot squash and merge` will squash and merge this PR after\r\nyour CI passes on it\r\n- `@dependabot cancel merge` will cancel a previously requested merge\r\nand block automerging\r\n- `@dependabot reopen` will reopen this PR if it is closed\r\n- `@dependabot close` will close this PR and stop Dependabot recreating\r\nit. You can achieve the same result by closing it manually\r\n- `@dependabot show ignore conditions` will show all\r\nof the ignore conditions of the specified dependency\r\n- `@dependabot ignore this major version` will close this PR and stop\r\nDependabot creating any more for this major version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this minor version` will close this PR and stop\r\nDependabot creating any more for this minor version (unless you reopen\r\nthe PR or upgrade to it yourself)\r\n- `@dependabot ignore this dependency` will close this PR and stop\r\nDependabot creating any more for this dependency (unless you reopen the\r\nPR or upgrade to it yourself)\r\n\r\n\r\n
\r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>","shortMessageHtmlLink":"Bump github.com/stretchr/testify from 1.8.4 to 1.9.0 in /tools (#162)"}},{"before":"986b50e1c8ae8331291c0e34ddd2060f8129cae5","after":"0e90b50a5a209668c3fe46afea126b52b529a37d","ref":"refs/heads/main","pushedAt":"2024-03-22T19:39:57.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"r-hang","name":null,"path":"/r-hang","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/42982339?s=80&v=4"},"commit":{"message":"chore: cleanup and rm unused func (#164)\n\nSigned-off-by: Sasha Melentyev ","shortMessageHtmlLink":"chore: cleanup and rm unused func (#164)"}},{"before":"7638c0a8373a607828ed93e62c0969140d5b0bc0","after":"986b50e1c8ae8331291c0e34ddd2060f8129cae5","ref":"refs/heads/main","pushedAt":"2024-03-04T18:19:01.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"JacobOaks","name":"Jacob Oaks","path":"/JacobOaks","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/11602410?s=80&v=4"},"commit":{"message":"Drop root go.mod dependencies from dependabot (#163)\n\nIn order to use a Go library, users must upgrade their dependencies to\r\nbe at least as up-to-date as those listed in the library's `go.mod`. As\r\n@abhinav pointed out, using dependabot to then keep our dependencies\r\nup-to-date all the time will cause any users of this library to have to\r\nkeep theirs up-to-date all the time as well, when this isn't strictly\r\nnecessary due to Go's heavy backwards compatibility culture.\r\n\r\nRemove the section referring to the root's `go.mod` so that we can\r\ninstead only upgrade dependencies when necessary to avoid too much churn\r\nwith users of the library.","shortMessageHtmlLink":"Drop root go.mod dependencies from dependabot (#163)"}},{"before":null,"after":"03f9c2bc752f71836b7dac8e48de1a1cd4144a63","ref":"refs/heads/dependabot/go_modules/tools/github.com/stretchr/testify-1.9.0","pushedAt":"2024-03-01T23:42:09.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":"Bump github.com/stretchr/testify from 1.8.4 to 1.9.0 in /tools\n\nBumps [github.com/stretchr/testify](https://github.com/stretchr/testify) from 1.8.4 to 1.9.0.\n- [Release notes](https://github.com/stretchr/testify/releases)\n- [Commits](https://github.com/stretchr/testify/compare/v1.8.4...v1.9.0)\n\n---\nupdated-dependencies:\n- dependency-name: github.com/stretchr/testify\n dependency-type: direct:production\n update-type: version-update:semver-minor\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"Bump github.com/stretchr/testify from 1.8.4 to 1.9.0 in /tools"}},{"before":null,"after":"b4c0580e4919327a1224e57e6fdd8c73f15de647","ref":"refs/heads/dependabot/github_actions/actions/setup-go-5","pushedAt":"2024-02-24T15:47:25.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":"Bump actions/setup-go from 4 to 5\n\nBumps [actions/setup-go](https://github.com/actions/setup-go) from 4 to 5.\n- [Release notes](https://github.com/actions/setup-go/releases)\n- [Commits](https://github.com/actions/setup-go/compare/v4...v5)\n\n---\nupdated-dependencies:\n- dependency-name: actions/setup-go\n dependency-type: direct:production\n update-type: version-update:semver-major\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"Bump actions/setup-go from 4 to 5"}},{"before":null,"after":"87368431869cc05bcf699e0d43b48d2d90e06bc6","ref":"refs/heads/dependabot/github_actions/actions/checkout-4","pushedAt":"2024-02-24T15:47:21.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":"Bump actions/checkout from 3 to 4\n\nBumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4.\n- [Release notes](https://github.com/actions/checkout/releases)\n- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)\n- [Commits](https://github.com/actions/checkout/compare/v3...v4)\n\n---\nupdated-dependencies:\n- dependency-name: actions/checkout\n dependency-type: direct:production\n update-type: version-update:semver-major\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"Bump actions/checkout from 3 to 4"}},{"before":null,"after":"f5511ca9ae9be9ffd7fcc1acf0d98b98be87c916","ref":"refs/heads/dependabot/github_actions/goreleaser/goreleaser-action-5","pushedAt":"2024-02-24T15:47:21.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":"Bump goreleaser/goreleaser-action from 4 to 5\n\nBumps [goreleaser/goreleaser-action](https://github.com/goreleaser/goreleaser-action) from 4 to 5.\n- [Release notes](https://github.com/goreleaser/goreleaser-action/releases)\n- [Commits](https://github.com/goreleaser/goreleaser-action/compare/v4...v5)\n\n---\nupdated-dependencies:\n- dependency-name: goreleaser/goreleaser-action\n dependency-type: direct:production\n update-type: version-update:semver-major\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"Bump goreleaser/goreleaser-action from 4 to 5"}},{"before":null,"after":"ac11bf011194896a368019a4b937a97a48caa062","ref":"refs/heads/dependabot/go_modules/golang.org/x/tools-0.18.0","pushedAt":"2024-02-24T15:46:24.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":"Bump golang.org/x/tools from 0.2.0 to 0.18.0\n\nBumps [golang.org/x/tools](https://github.com/golang/tools) from 0.2.0 to 0.18.0.\n- [Release notes](https://github.com/golang/tools/releases)\n- [Commits](https://github.com/golang/tools/compare/v0.2.0...v0.18.0)\n\n---\nupdated-dependencies:\n- dependency-name: golang.org/x/tools\n dependency-type: direct:production\n update-type: version-update:semver-minor\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"Bump golang.org/x/tools from 0.2.0 to 0.18.0"}},{"before":null,"after":"eb51d12b4431880365f76d67d6ece2aaf9719ee6","ref":"refs/heads/dependabot/go_modules/golang.org/x/mod-0.15.0","pushedAt":"2024-02-24T15:46:19.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":"Bump golang.org/x/mod from 0.11.0 to 0.15.0\n\nBumps [golang.org/x/mod](https://github.com/golang/mod) from 0.11.0 to 0.15.0.\n- [Commits](https://github.com/golang/mod/compare/v0.11.0...v0.15.0)\n\n---\nupdated-dependencies:\n- dependency-name: golang.org/x/mod\n dependency-type: direct:production\n update-type: version-update:semver-minor\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"Bump golang.org/x/mod from 0.11.0 to 0.15.0"}},{"before":"e649d89e81c8871357950b8c74e73a2947b1c2d6","after":"7638c0a8373a607828ed93e62c0969140d5b0bc0","ref":"refs/heads/main","pushedAt":"2024-02-24T15:45:57.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"JacobOaks","name":"Jacob Oaks","path":"/JacobOaks","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/11602410?s=80&v=4"},"commit":{"message":"Added dependabot (#54)\n\n* Added dependabot to keep go dependencies & actions updated.","shortMessageHtmlLink":"Added dependabot (#54)"}},{"before":"1b6a97d50bb28639ad9513c4b97888a0753690b0","after":"e649d89e81c8871357950b8c74e73a2947b1c2d6","ref":"refs/heads/main","pushedAt":"2024-02-20T19:40:08.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"JacobOaks","name":"Jacob Oaks","path":"/JacobOaks","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/11602410?s=80&v=4"},"commit":{"message":"Add helpful info to README about GOPATH for the installation (#139)\n\nAdded helpful steps that aren't mentioned in the Installation section.\r\n\r\nThis caused me some headache and I'd like to save the next developer\r\nsome time!","shortMessageHtmlLink":"Add helpful info to README about GOPATH for the installation (#139)"}},{"before":"c7d12dda9615febe8ad2c17a7f46adc1e96dd4a7","after":"1b6a97d50bb28639ad9513c4b97888a0753690b0","ref":"refs/heads/main","pushedAt":"2024-02-20T17:15:02.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"JacobOaks","name":"Jacob Oaks","path":"/JacobOaks","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/11602410?s=80&v=4"},"commit":{"message":"mockgen: remove unused support file for Go < 1.18 (#149)\n\nThis PR removes the file `mockgen/generic_notgo118.go`. This file is\r\nused for Go 1.17 and below. Now it is unneeded as the project supports\r\nGo 1.19 and above.","shortMessageHtmlLink":"mockgen: remove unused support file for Go < 1.18 (#149)"}},{"before":"2c718f249a424ac6ce6e2afa28c3c17f95c51241","after":"c7d12dda9615febe8ad2c17a7f46adc1e96dd4a7","ref":"refs/heads/main","pushedAt":"2024-02-20T17:11:16.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"JacobOaks","name":"Jacob Oaks","path":"/JacobOaks","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/11602410?s=80&v=4"},"commit":{"message":"doc: remove unused reference link (#148)\n\nThe reference link `[golang-install]` has become unused after #8.","shortMessageHtmlLink":"doc: remove unused reference link (#148)"}}],"hasNextPage":true,"hasPreviousPage":false,"activityType":"all","actor":null,"timePeriod":"all","sort":"DESC","perPage":30,"cursor":"djE6ks8AAAAEuv8vewA","startCursor":null,"endCursor":null}},"title":"Activity · uber-go/mock"}