{"payload":{"feedbackUrl":"https://github.com/orgs/community/discussions/53140","repo":{"id":72056048,"defaultBranch":"master","name":"fx","ownerLogin":"uber-go","currentUserCanPush":false,"isFork":false,"isEmpty":false,"createdAt":"2016-10-27T00:25:00.000Z","ownerAvatar":"https://avatars.githubusercontent.com/u/19262598?v=4","public":true,"private":false,"isOrgOwned":true},"refInfo":{"name":"","listCacheKey":"v0:1717079842.0","currentOid":""},"activityList":{"items":[{"before":"e6a361e521cac6f28ef9327a58fd79e9be47055f","after":"de8c6403579ece491ea017c1c1fbc9c2ed104a3d","ref":"refs/heads/master","pushedAt":"2024-05-30T14:47:15.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":"Back to development (#1209)\n\nModify changelog and version to reflect back to development.","shortMessageHtmlLink":"Back to development (#1209)"}},{"before":"b3b1c3b77947bdfc4cd5f673aee8e919727e4800","after":"e6a361e521cac6f28ef9327a58fd79e9be47055f","ref":"refs/heads/master","pushedAt":"2024-05-30T14:33:46.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":"Prepare Release 1.22.0 (#1208)\n\nThis updates the changelog and the version for a 1.22.0 release.\r\n\r\nI will wait to merge this until #1207 is reviewed.\r\n\r\nI tested Fx tip within Uber's Go codebase and saw no issues.\r\n\r\nRef: #1204","shortMessageHtmlLink":"Prepare Release 1.22.0 (#1208)"}},{"before":"9e6f6c21af133f94ea22563f1f24bb3caa52e3f7","after":"b3b1c3b77947bdfc4cd5f673aee8e919727e4800","ref":"refs/heads/master","pushedAt":"2024-05-30T14:09:21.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 fx.Private w/ fx.Supply (#1207)\n\n`fx.Supply` is essentially an API that allows for conveniently\r\n`fx.Provide`ing an exact value, rather than a function that will return\r\nthat value. For example, `fx.Provide(func() int { return 5 })` is\r\nequivalent to `fx.Supply(5)`.\r\n\r\n`fx.Private` allows for usage of a provided constructor's results to be\r\nrestricted to the current module and its child modules.\r\n```go\r\nfx.Module(\r\n\t\"parent\",\r\n\tfx.Invoke(func(int) { /* this will error out! */ }),\r\n\tfx.Module(\r\n\t\t\"child\",\r\n\t\tfx.Provide(func() int { return 5 }, fx.Private),\r\n\t),\r\n),\r\n```\r\n\r\nThis PR allows for using `fx.Private` with `fx.Supply` as well, so that\r\nfolks can enjoy the convenience of `fx.Supply` when they also wish to\r\nrestrict the usage of the supplied value.\r\n```go\r\nfx.Module(\r\n\t\"parent\"\r\n\tfx.Invoke(func(int) { /* this will error out! */ }),\r\n\tfx.Module(\r\n\t\t\"child\",\r\n\t\tfx.Supply(5, fx.Private),\r\n\t),\r\n),\r\n```\r\n\r\nRef #1206\r\n\r\nSince the behavior between Supply + Private and Provide + Private should\r\nbe identical, I opted to generalize the existing `fx.Private` tests to\r\nrun for both Provide and Supply. This keeps the tests a little more DRY\r\nbut does complicate them/hurt readability. I feel like this is OK since\r\nthere are a lot of tests, but I also am the one who wrote the tests, so\r\nI am biased regarding its readability. Thus, I am happy to break out\r\nSupply + Private into its own tests if folks feel strongly that these\r\ntests are hard to read.","shortMessageHtmlLink":"Support fx.Private w/ fx.Supply (#1207)"}},{"before":"abda254ddb674d9c3570441fb3c5369609392530","after":"9e6f6c21af133f94ea22563f1f24bb3caa52e3f7","ref":"refs/heads/master","pushedAt":"2024-05-29T16:48:09.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":"fxtest: Enforceable Timeouts on Lifecycle (#1203)\n\nIn Fx, if starting/stopping the application takes longer than the\r\ncontext's timeout, the fx.App will bail early, regardless of the status\r\nof the currently running hooks.\r\n\r\nThis prevents stalling an application when hooks (accidentally) block\r\nforever.\r\n\r\nIn order to test hook behavior, Fx provides fxtest.Lifecycle to interact\r\nwith. This Lifecycle is a simple wrapper around the actual fx Lifecycle\r\ntype, meaning it does not check for timeout and bail early like fx.App\r\ndoes. This is an issue because:\r\n* It allows for long-running hooks (which should be considered bugs) to\r\npass tests.\r\n* It allows for tests to completely stall for hooks that block forever.\r\n\r\nSee #1180 for more details.\r\n\r\nThis PR adds an option that can be passed to `fxtest.NewLifecycle` to\r\ncause it to immediately fail when context expires, similar to fx.App.\r\n\r\n```go\r\nlc := fxtest.NewLifecycle(fxtest.EnforceTimeout(true))\r\nlc.Append(fx.StartHook(func() { for {} }))\r\nctx, _ := context.WithTimeout(context.Background(), time.Second)\r\nerr := lc.Start(ctx) // Will return deadline exceeded after a second\r\n```\r\n\r\nThis PR doesn't provide a way to test timeouts using `RequireStart` and\r\n`RequireStop`. However, since those don't take contexts anyways, my\r\nassumption is that usage of those APIs represents an intentional\r\ndecision to not care about timeouts by the test writer.\r\n\r\nHowever, if people feel differently, we can instead do something like\r\nexpose two new APIs `RequireStartWithContext(ctx)` and\r\n`RequireStopWithContext(ctx)` or something (names obviously up for\r\ndiscussion).","shortMessageHtmlLink":"fxtest: Enforceable Timeouts on Lifecycle (#1203)"}},{"before":"7dd18c6b7574be4bbf497e305403f8d4a54a47f4","after":"abda254ddb674d9c3570441fb3c5369609392530","ref":"refs/heads/master","pushedAt":"2024-05-21T17:14: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":"Reference fx.Self in fx.As doc (#1202)\n\nAdd a short helpful blurb about fx.Self in fx.As doc comment.","shortMessageHtmlLink":"Reference fx.Self in fx.As doc (#1202)"}},{"before":"cb9cccf5584521887b9e20b4e9e2985aad5a26dd","after":"7dd18c6b7574be4bbf497e305403f8d4a54a47f4","ref":"refs/heads/master","pushedAt":"2024-05-16T14:34:43.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":"fx.Self: a parameter to fx.As for providing a type as itself (#1201)\n\nWe frequently see requests for folks who want to use `fx.As` to provide\r\na type as another type, while also providing it as itself. To name a\r\nfew:\r\n* https://github.com/uber-go/fx/discussions/1196\r\n* https://github.com/uber-go/fx/discussions/1148\r\n* https://github.com/uber-go/fx/discussions/1079\r\n\r\nThis is currently not possible via strictly using `fx.As` + a single\r\nconstructor, since `fx.As` causes a constructor to no longer provide its\r\noriginal type. The workaround we often give is for folks to do something\r\nlike this, which involves adding a second \"constructor\":\r\n```go\r\nfx.Provide(\r\n newConcreteType,\r\n func(ct *concreteType) Interface {\r\n return ct\r\n }\r\n)\r\n```\r\nwhich is admittedly not very ergonomic. A somewhat common pattern\r\nmistaken to be a workaround is providing the constructor twice instead:\r\n```go\r\nfx.Provide(\r\n newConcreteType,\r\n fx.Annotate(newConcreteType, fx.As(new(Interface))),\r\n)\r\n```\r\n\r\nThis PR adds `fx.Self()`, which returns a special value to indicate an\r\n`fx.As` should retain that original return type:\r\n```go\r\nfx.Provide(\r\n newConcreteType,\r\n fx.As(fx.Self()),\r\n fx.As(new(Interface)),\r\n)\r\n```\r\nAs an alternative, I considered a new annotation altogether, named\r\nsomething like `fx.AlsoAs`, but adding a special type that can be passed\r\nas an argument to `fx.As` directly allows for more fine-tuned control\r\nover individual positional return values.\r\n\r\nFor example, this function's return types can be easily expressed as\r\n`*asStringer` and `io.Writer` using `fx.Self()`:\r\n```go\r\nfx.Provide(\r\n\tfx.Annotate(\r\n\t\tfunc() (*asStringer, *bytes.Buffer) {/* ... */ },\r\n\t\tfx.As(fx.Self(), new(io.Writer)), // return values will be: *asStringer, io.Writer\r\n\t),\r\n),\r\n```\r\nWhereas something like `fx.AlsoAs` wouldn't provide the ability to skip\r\nover the first positional return value entirely.","shortMessageHtmlLink":"fx.Self: a parameter to fx.As for providing a type as itself (#1201)"}},{"before":"696ed9a6457aed98e11e465738efb4989cfb33f1","after":"cb9cccf5584521887b9e20b4e9e2985aad5a26dd","ref":"refs/heads/master","pushedAt":"2024-05-15T13:32:56.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":"Call signal.Stop when signalReceivers is stopped (#1198)\n\nfixes #1197\r\n\r\n---------\r\n\r\nCo-authored-by: Jacob Oaks ","shortMessageHtmlLink":"Call signal.Stop when signalReceivers is stopped (#1198)"}},{"before":"9b32f7f3a9af9618cd4005642470388571296113","after":null,"ref":"refs/heads/dependabot/github_actions/golangci/golangci-lint-action-6","pushedAt":"2024-05-14T17:34:08.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":"0af84dbc7c621f8d0849aa9b7d606cb611b281ee","after":"696ed9a6457aed98e11e465738efb4989cfb33f1","ref":"refs/heads/master","pushedAt":"2024-05-14T17:34:07.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(deps): Bump golangci/golangci-lint-action from 5 to 6 (#1200)\n\nBumps\r\n[golangci/golangci-lint-action](https://github.com/golangci/golangci-lint-action)\r\nfrom 5 to 6.\r\n
\r\nRelease notes\r\n

Sourced from golangci/golangci-lint-action's\r\nreleases.

\r\n
\r\n

v6.0.0

\r\n\r\n

What's Changed

\r\n

This version removes annotations option (because it was\r\nuseless), and removes the default output format\r\n(github-actions).\r\nThe annotations are still produced but with another approach.

\r\n

Changes

\r\n
    \r\n
  • feat: rewrite format handling by @​ldez in golangci/golangci-lint-action#1038
  • \r\n
\r\n

Dependencies

\r\n
    \r\n
  • build(deps-dev): bump @​typescript-eslint/eslint-plugin\r\nfrom 7.7.1 to 7.8.0 by @​dependabot in golangci/golangci-lint-action#1034
  • \r\n
  • build(deps): bump @​types/node from 20.12.7 to 20.12.8\r\nby @​dependabot\r\nin golangci/golangci-lint-action#1036
  • \r\n
  • build(deps-dev): bump @​typescript-eslint/parser from\r\n7.7.1 to 7.8.0 by @​dependabot in golangci/golangci-lint-action#1035
  • \r\n
\r\n

Full Changelog: https://github.com/golangci/golangci-lint-action/compare/v5.3.0...v6.0.0

\r\n

v5.3.0

\r\n\r\n

What's Changed

\r\n

Changes

\r\n
    \r\n
  • feat: uses 2 dots compare syntax for push diff by @​ldez in golangci/golangci-lint-action#1030
  • \r\n
  • feat: add option to control cache invalidation interval by @​ldez in golangci/golangci-lint-action#1031
  • \r\n
  • feat: use OS and working-directory as cache key by @​ldez in golangci/golangci-lint-action#1032
  • \r\n
  • feat: improve log about pwd/cwd by @​ldez in golangci/golangci-lint-action#1033
  • \r\n
\r\n

Full Changelog: https://github.com/golangci/golangci-lint-action/compare/v5.2.0...v5.3.0

\r\n

v5.2.0

\r\n\r\n

What's Changed

\r\n

Changes

\r\n
    \r\n
  • feat:\r\nadd an option to enable/disable annotations by @​ldez
  • \r\n
\r\n

Full Changelog: https://github.com/golangci/golangci-lint-action/compare/v5.1.0...v5.2.0

\r\n

v5.1.0

\r\n\r\n

What's Changed

\r\n

Changes

\r\n
    \r\n
  • feat: support for pull and merge_group\r\nevents with the option only-new-issues by @​ldez in golangci/golangci-lint-action#1029
  • \r\n
\r\n

Dependencies

\r\n
    \r\n
  • build(deps-dev): bump @​typescript-eslint/parser from\r\n7.7.0 to 7.7.1 by @​dependabot in golangci/golangci-lint-action#1027
  • \r\n
  • build(deps-dev): bump @​typescript-eslint/eslint-plugin\r\nfrom 7.7.0 to 7.7.1 by @​dependabot in golangci/golangci-lint-action#1028
  • \r\n
\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=golangci/golangci-lint-action&package-manager=github_actions&previous-version=5&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":"chore(deps): Bump golangci/golangci-lint-action from 5 to 6 (#1200)"}},{"before":"ae79d3ddc4ff735f6b15aaa10b39fb31e93118da","after":"9b32f7f3a9af9618cd4005642470388571296113","ref":"refs/heads/dependabot/github_actions/golangci/golangci-lint-action-6","pushedAt":"2024-05-14T17:33:58.000Z","pushType":"push","commitsCount":2,"pusher":{"login":"r-hang","name":null,"path":"/r-hang","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/42982339?s=80&v=4"},"commit":{"message":"Merge branch 'master' into dependabot/github_actions/golangci/golangci-lint-action-6","shortMessageHtmlLink":"Merge branch 'master' into dependabot/github_actions/golangci/golangc…"}},{"before":"ed7dfc6d6f0bb888d8d6f4be26223140bae06e7c","after":null,"ref":"refs/heads/dependabot/go_modules/tools/golang.org/x/tools-0.21.0","pushedAt":"2024-05-14T17:25:11.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":"2379ac906bbf063deb99033c995584234388fc98","after":"0af84dbc7c621f8d0849aa9b7d606cb611b281ee","ref":"refs/heads/master","pushedAt":"2024-05-14T17:25:11.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(deps): Bump golang.org/x/tools from 0.20.0 to 0.21.0 in /tools (#1199)\n\nBumps [golang.org/x/tools](https://github.com/golang/tools) from 0.20.0\r\nto 0.21.0.\r\n
\r\nCommits\r\n
    \r\n
  • cc29c91\r\ngo.mod: update golang.org/x dependencies
  • \r\n
  • 397fef9\r\ngopls/internal/protocol: add links to LSP spec
  • \r\n
  • e2a352c\r\ninternal/refactor/inline: extensible API
  • \r\n
  • c16c816\r\ngo/analysis/passes/stdversion: test *.go < go.mod version
  • \r\n
  • 629a7be\r\ngo/analysis/analysistest: stricter errors and GOWORK setting
  • \r\n
  • 4db1697\r\ngo/packages/packagestest: fold modules_111.go into modules.go
  • \r\n
  • ccdef3c\r\ngopls/internal/golang: fix nil panic in InlayHint
  • \r\n
  • 74c9cfe\r\ngo/analysis: add Pass.ReadFile
  • \r\n
  • 5ef4fc9\r\ngopls/internal/golang/completion: fix the isEmptyInterface\r\npredicate
  • \r\n
  • 77f691b\r\ninternal/gcimporter: use Alias.Rhs, not unsafe hack
  • \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.20.0&new-version=0.21.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":"chore(deps): Bump golang.org/x/tools from 0.20.0 to 0.21.0 in /tools (#…"}},{"before":null,"after":"ae79d3ddc4ff735f6b15aaa10b39fb31e93118da","ref":"refs/heads/dependabot/github_actions/golangci/golangci-lint-action-6","pushedAt":"2024-05-13T14:23: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":"chore(deps): Bump golangci/golangci-lint-action from 5 to 6\n\nBumps [golangci/golangci-lint-action](https://github.com/golangci/golangci-lint-action) from 5 to 6.\n- [Release notes](https://github.com/golangci/golangci-lint-action/releases)\n- [Commits](https://github.com/golangci/golangci-lint-action/compare/v5...v6)\n\n---\nupdated-dependencies:\n- dependency-name: golangci/golangci-lint-action\n dependency-type: direct:production\n update-type: version-update:semver-major\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"chore(deps): Bump golangci/golangci-lint-action from 5 to 6"}},{"before":null,"after":"ed7dfc6d6f0bb888d8d6f4be26223140bae06e7c","ref":"refs/heads/dependabot/go_modules/tools/golang.org/x/tools-0.21.0","pushedAt":"2024-05-13T14:15:03.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":"chore(deps): Bump golang.org/x/tools from 0.20.0 to 0.21.0 in /tools\n\nBumps [golang.org/x/tools](https://github.com/golang/tools) from 0.20.0 to 0.21.0.\n- [Release notes](https://github.com/golang/tools/releases)\n- [Commits](https://github.com/golang/tools/compare/v0.20.0...v0.21.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":"chore(deps): Bump golang.org/x/tools from 0.20.0 to 0.21.0 in /tools"}},{"before":"029720f2e14ffa7c2d4e801473e6f637b547446d","after":"2379ac906bbf063deb99033c995584234388fc98","ref":"refs/heads/master","pushedAt":"2024-04-29T16:15: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":"CI: test against go1.22 (#1195)\n\nThis PR modifies CI to test against Go versions 1.21 and 1.22. To avoid\r\nforcing users to upgrade to 1.21, I kept `go.mod` version at `1.20.`\r\n\r\nSome tests had to be updated to pass in 1.22.\r\n\r\nI can remove `stack_120_test.go` if there's a good argument for it, but\r\nmy thoughts are that we should have a complete & passing test suite for\r\nevery version >= `go.mod`'s version.","shortMessageHtmlLink":"CI: test against go1.22 (#1195)"}},{"before":"cb33b3cd72eede5d54ca7ade7f5b569d664dcdc3","after":null,"ref":"refs/heads/dependabot/github_actions/golangci/golangci-lint-action-5","pushedAt":"2024-04-29T16:12:18.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"JacobOaks","name":"Jacob Oaks","path":"/JacobOaks","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/11602410?s=80&v=4"}},{"before":"0ee304c96364f732005a97824d748e3c23104e09","after":"029720f2e14ffa7c2d4e801473e6f637b547446d","ref":"refs/heads/master","pushedAt":"2024-04-29T16:12:17.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(deps): Bump golangci/golangci-lint-action from 4 to 5 (#1194)\n\nBumps\r\n[golangci/golangci-lint-action](https://github.com/golangci/golangci-lint-action)\r\nfrom 4 to 5.\r\n
\r\nRelease notes\r\n

Sourced from golangci/golangci-lint-action's\r\nreleases.

\r\n
\r\n

v5.0.0

\r\n\r\n

What's Changed

\r\n

Changes

\r\n
    \r\n
  • feat: add support for pull_request_target and only-new-issues by @​kovetskiy in golangci/golangci-lint-action#506
  • \r\n
  • feat: add option to not save cache by @​navijation in golangci/golangci-lint-action#851
  • \r\n
  • feat: remove Go cache management by @​ldez in golangci/golangci-lint-action#1024
  • \r\n
\r\n

New Contributors

\r\n
    \r\n
  • @​kovetskiy\r\nmade their first contribution in golangci/golangci-lint-action#506
  • \r\n
  • @​navijation made\r\ntheir first contribution in golangci/golangci-lint-action#851
  • \r\n
\r\n

Full Changelog: https://github.com/golangci/golangci-lint-action/compare/v4.0.1...v5.0.0

\r\n

v4.0.1

\r\n\r\n

What's Changed

\r\n

Documentation

\r\n
    \r\n
  • docs: update the version of the action used in the README example by\r\n@​178inaba in golangci/golangci-lint-action#977
  • \r\n
\r\n

Dependencies

\r\n
    \r\n
  • build(deps): bump @​types/semver from 7.5.6 to 7.5.7 by\r\n@​dependabot in\r\ngolangci/golangci-lint-action#969
  • \r\n
  • build(deps-dev): bump @​typescript-eslint/parser from\r\n6.20.0 to 6.21.0 by @​dependabot in golangci/golangci-lint-action#970
  • \r\n
  • build(deps-dev): bump eslint-plugin-simple-import-sort from 10.0.0\r\nto 12.0.0 by @​dependabot in golangci/golangci-lint-action#971
  • \r\n
  • build(deps-dev): bump @​typescript-eslint/eslint-plugin\r\nfrom 6.20.0 to 6.21.0 by @​dependabot in golangci/golangci-lint-action#973
  • \r\n
  • build(deps): bump @​types/node from 20.11.16 to\r\n20.11.17 by @​dependabot in golangci/golangci-lint-action#972
  • \r\n
  • build(deps): bump @​types/node from 20.11.17 to\r\n20.11.19 by @​dependabot in golangci/golangci-lint-action#979
  • \r\n
  • build(deps-dev): bump @​typescript-eslint/eslint-plugin\r\nfrom 6.21.0 to 7.0.0 by @​dependabot in golangci/golangci-lint-action#980
  • \r\n
  • build(deps): bump undici from 5.26.3 to 5.28.3 by @​dependabot in golangci/golangci-lint-action#976
  • \r\n
  • build(deps): bump @​types/node from 20.11.19 to\r\n20.11.20 by @​dependabot in golangci/golangci-lint-action#985
  • \r\n
  • build(deps): bump @​types/semver from 7.5.7 to 7.5.8 by\r\n@​dependabot in\r\ngolangci/golangci-lint-action#986
  • \r\n
  • build(deps-dev): bump eslint from 8.56.0 to 8.57.0 by @​dependabot in golangci/golangci-lint-action#987
  • \r\n
  • build(deps): bump tmp from 0.2.1 to 0.2.3 by @​dependabot in golangci/golangci-lint-action#989
  • \r\n
  • build(deps-dev): bump @​typescript-eslint/parser from\r\n6.21.0 to 7.1.0 by @​dependabot in golangci/golangci-lint-action#988
  • \r\n
  • build(deps): bump @​types/node from 20.11.20 to\r\n20.11.24 by @​dependabot in golangci/golangci-lint-action#990
  • \r\n
  • build(deps-dev): bump @​typescript-eslint/parser from\r\n7.1.0 to 7.1.1 by @​dependabot in golangci/golangci-lint-action#991
  • \r\n
  • build(deps): bump @​types/node from 20.11.24 to\r\n20.11.25 by @​dependabot in golangci/golangci-lint-action#992
  • \r\n
  • build(deps-dev): bump typescript from 5.3.3 to 5.4.2 by @​dependabot in golangci/golangci-lint-action#993
  • \r\n
  • build(deps-dev): bump @​typescript-eslint/eslint-plugin\r\nfrom 7.1.0 to 7.1.1 by @​dependabot in golangci/golangci-lint-action#994
  • \r\n
  • build(deps): bump @​actions/http-client from 2.2.0 to\r\n2.2.1 by @​dependabot in golangci/golangci-lint-action#995
  • \r\n
  • build(deps): bump google.golang.org/protobuf from 1.28.0 to 1.33.0\r\nin /sample-go-mod by @​dependabot in golangci/golangci-lint-action#997
  • \r\n
  • build(deps-dev): bump @​typescript-eslint/parser from\r\n7.1.1 to 7.2.0 by @​dependabot in golangci/golangci-lint-action#998
  • \r\n
  • build(deps): bump @​types/node from 20.11.25 to\r\n20.11.28 by @​dependabot in golangci/golangci-lint-action#1000
  • \r\n
  • build(deps-dev): bump @​typescript-eslint/eslint-plugin\r\nfrom 7.1.1 to 7.2.0 by @​dependabot in golangci/golangci-lint-action#999
  • \r\n
  • build(deps-dev): bump @​typescript-eslint/eslint-plugin\r\nfrom 7.2.0 to 7.3.1 by @​dependabot in golangci/golangci-lint-action#1003
  • \r\n
  • build(deps): bump @​types/node from 20.11.28 to\r\n20.11.30 by @​dependabot in golangci/golangci-lint-action#1004
  • \r\n
  • build(deps-dev): bump typescript from 5.4.2 to 5.4.3 by @​dependabot in golangci/golangci-lint-action#1005
  • \r\n
  • build(deps-dev): bump @​typescript-eslint/parser from\r\n7.2.0 to 7.3.1 by @​dependabot in golangci/golangci-lint-action#1006
  • \r\n
  • build(deps): bump @​types/node from 20.11.30 to 20.12.2\r\nby @​dependabot\r\nin golangci/golangci-lint-action#1007
  • \r\n
\r\n\r\n
\r\n

... (truncated)

\r\n
\r\n
\r\nCommits\r\n
    \r\n
  • 82d40c2\r\nfeat: remove Go cache management (#1024)
  • \r\n
  • c683728\r\nfeat: add option to not save cache (#851)
  • \r\n
  • bf6479d\r\nfeat: add support for pull_request_target and only-new-issues (#506)
  • \r\n
  • See full diff 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=golangci/golangci-lint-action&package-manager=github_actions&previous-version=4&new-version=5)](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":"chore(deps): Bump golangci/golangci-lint-action from 4 to 5 (#1194)"}},{"before":null,"after":"cb33b3cd72eede5d54ca7ade7f5b569d664dcdc3","ref":"refs/heads/dependabot/github_actions/golangci/golangci-lint-action-5","pushedAt":"2024-04-29T14:23:40.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":"chore(deps): Bump golangci/golangci-lint-action from 4 to 5\n\nBumps [golangci/golangci-lint-action](https://github.com/golangci/golangci-lint-action) from 4 to 5.\n- [Release notes](https://github.com/golangci/golangci-lint-action/releases)\n- [Commits](https://github.com/golangci/golangci-lint-action/compare/v4...v5)\n\n---\nupdated-dependencies:\n- dependency-name: golangci/golangci-lint-action\n dependency-type: direct:production\n update-type: version-update:semver-major\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"chore(deps): Bump golangci/golangci-lint-action from 4 to 5"}},{"before":"0db209f3f289dfd3dc6a4de94ec8a20946932d33","after":"0ee304c96364f732005a97824d748e3c23104e09","ref":"refs/heads/master","pushedAt":"2024-04-24T16:55:04.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":"Back to development (#1193)\n\nReturn changelog and version to development mode.","shortMessageHtmlLink":"Back to development (#1193)"}},{"before":"ebf6296c0737929adf20353393f4200fac0ad84c","after":"0db209f3f289dfd3dc6a4de94ec8a20946932d33","ref":"refs/heads/master","pushedAt":"2024-04-24T15:38:21.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":"Prepare Release 1.21.1 (#1192)\n\nUpdate changelog & version for 1.21.1 release.","shortMessageHtmlLink":"Prepare Release 1.21.1 (#1192)"}},{"before":"95cbe8346583b3824d4cb46de94dc60b7799ad09","after":"ebf6296c0737929adf20353393f4200fac0ad84c","ref":"refs/heads/master","pushedAt":"2024-04-23T18:34:14.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":"clean args context for useless. (#1189)\n\n/kind cleanup\r\n\r\nclean args context for useless.\r\n\r\nSigned-off-by: zhanluxianshen ","shortMessageHtmlLink":"clean args context for useless. (#1189)"}},{"before":"9814dd34b23dbb6e1ab992f80d4fb388863cd200","after":"95cbe8346583b3824d4cb46de94dc60b7799ad09","ref":"refs/heads/master","pushedAt":"2024-04-19T16:37:39.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":"Provide Fx types before user types (#1191)\n\nConsider the following example:\r\n```go\r\nfunc opts() fx.Option {\r\n return fx.Options(\r\n fx.WithLogger(func(fx.Lifecycle) fxevent.Logger {\r\n return &fxevent.ConsoleLogger{ W: os.Stdout }\r\n }),\r\n fx.Provide(func() string { return \"\" }),\r\n fx.Provide(func() string { return \"\" }),\r\n )\r\n}\r\n\r\nfunc main() {\r\n fx.New(opts()).Run()\r\n}\r\n```\r\n\r\nThe relevant issue to surface to the user is that they are double\r\nproviding the same type. However, the actual error message is:\r\n```\r\n[Fx] ERROR Failed to start: the following errors occurred:\r\n - fx.Provide(main.opts.func3()) from:\r\n main.opts\r\n /home/user/go/src/scratch/fx_provide_order/main.go:17\r\n main.main\r\n /home/user/go/src/scratch/fx_provide_order/main.go:22\r\n runtime.main\r\n /opt/go/root/src/runtime/proc.go:271\r\n Failed: cannot provide function \"main\".opts.func3\r\n(/home/user/go/src/scratch/fx_provide_order/main.go:17): cannot provide\r\nstring from [0]: already provided by \"main\".opts.func2\r\n(/home/user/go/src/scratch/fx_provide_order/main.go:16)\r\n - could not build arguments for function\r\n\"go.uber.org/fx\".(*module).constructCustomLogger.func2\r\n /home/user/go-repos/pkg/mod/go.uber.org/fx@v1.21.0/module.go:292:\r\n failed to build fxevent.Logger:\r\n missing dependencies for function \"main\".opts.func1\r\n /home/user/go/src/scratch/fx_provide_order/main.go:11:\r\n missing type:\r\n - fx.Lifecycle (did you mean to Provide it?)\r\n```\r\nWhich contains an additional error related to how the custom logger\r\ncould not be built.\r\n\r\nThis is because Fx will try to continue to build the custom logger in\r\nthe face of DI failure, theoretically to report issues through the right\r\nchannels. But after an error occurs when providing anything, [Fx refuses\r\nto provide any more\r\ntypes](https://github.com/uber-go/fx/blob/master/module.go#L184) -\r\nleading to a subsequent error when trying to build this custom logger\r\nthat depends on the `fx.Lifecycle` type.\r\n\r\nThis is a common issue that can be misleading for new engineers\r\ndebugging their fx apps.\r\n\r\nI couldn't find any particular reason why user-provided provides are\r\nregistered before these Fx types, so this PR switches this ordering so\r\nthat custom loggers can still be built if they rely on the Fx types,\r\nwhich cleans up the error message:\r\n```\r\n[Fx] ERROR Failed to start: fx.Provide(main.opts.func3())\r\nfrom:\r\nmain.opts\r\n /home/user/go/src/scratch/fx_provide_order/main.go:17\r\nmain.main\r\n /home/user/go/src/scratch/fx_provide_order/main.go:22\r\nruntime.main\r\n /opt/go/root/src/runtime/proc.go:271\r\nFailed: cannot provide function \"main\".opts.func3\r\n(/home/user/go/src/scratch/fx_provide_order/main.go:17): cannot provide\r\nstring from [0]: already provided by \"main\".opts.func2\r\n(/home/user/go/src/scratch/fx_provide_order/main.go:16)\r\n```","shortMessageHtmlLink":"Provide Fx types before user types (#1191)"}},{"before":"1c5f633eff3b32fb4b77b04e82fe4f43027384ff","after":"9814dd34b23dbb6e1ab992f80d4fb388863cd200","ref":"refs/heads/master","pushedAt":"2024-04-15T17:39:03.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":"drop io/utils package. (#1188)\n\n/kind cleanup\r\n\r\nDrop ioutil package.\r\nAs it is deprecation , and can be replaced well.\r\n\r\n```\r\nDeprecated: As of Go 1.16, the same functionality is now \r\nprovided by package [io](https://pkg.go.dev/io) \r\nor package [os](https://pkg.go.dev/os), \r\nand those implementations should be preferred in new code\r\n```\r\n\r\nSigned-off-by: zhanluxianshen ","shortMessageHtmlLink":"drop io/utils package. (#1188)"}},{"before":"8f8c73e25540ff88d369c7bbdc25401c4128d11e","after":null,"ref":"refs/heads/dependabot/go_modules/tools/golang.org/x/tools-0.20.0","pushedAt":"2024-04-08T14:28:59.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"JacobOaks","name":"Jacob Oaks","path":"/JacobOaks","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/11602410?s=80&v=4"}},{"before":"4311b10428b2475eaa17b308cf2db26c2a2be5aa","after":"1c5f633eff3b32fb4b77b04e82fe4f43027384ff","ref":"refs/heads/master","pushedAt":"2024-04-08T14:28:59.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(deps): Bump golang.org/x/tools from 0.19.0 to 0.20.0 in /tools (#1187)\n\nBumps [golang.org/x/tools](https://github.com/golang/tools) from 0.19.0\r\nto 0.20.0.\r\n
\r\nCommits\r\n
    \r\n
  • 11c692e\r\ngopls/internal/test/marker/testdata: skip hover size tests on 32-bit\r\narm
  • \r\n
  • fc660e5\r\ngo.mod: update golang.org/x dependencies
  • \r\n
  • 6590f47\r\ninternal/gcimporter: renable tests of issue50259.go
  • \r\n
  • f1d5252\r\ngopls/internal/golang: Hover: show wasted % of struct space
  • \r\n
  • 951bb40\r\ngopls/internal/test/integration/misc: fix flaky test
  • \r\n
  • c9b0c65\r\ngopls/internal/analysis/fillreturns: skip test if gotypesalias=1
  • \r\n
  • c623a28\r\ngopls/internal/cache: fix crash in snapshot.Analyze with patch\r\nversions
  • \r\n
  • f345449\r\ngopls/internal/server: filter diagnostics to "best" views
  • \r\n
  • 42d590c\r\ngopls/internal/test/integration: add a WriteGoSum run option
  • \r\n
  • 53d35a5\r\ngopls/internal/golang: RenderPackageDoc: fix doc links
  • \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.19.0&new-version=0.20.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":"chore(deps): Bump golang.org/x/tools from 0.19.0 to 0.20.0 in /tools (#…"}},{"before":null,"after":"8f8c73e25540ff88d369c7bbdc25401c4128d11e","ref":"refs/heads/dependabot/go_modules/tools/golang.org/x/tools-0.20.0","pushedAt":"2024-04-08T14:09:14.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":"chore(deps): Bump golang.org/x/tools from 0.19.0 to 0.20.0 in /tools\n\nBumps [golang.org/x/tools](https://github.com/golang/tools) from 0.19.0 to 0.20.0.\n- [Release notes](https://github.com/golang/tools/releases)\n- [Commits](https://github.com/golang/tools/compare/v0.19.0...v0.20.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":"chore(deps): Bump golang.org/x/tools from 0.19.0 to 0.20.0 in /tools"}},{"before":"efc111fdb69fc1f201a7094095fa01225cf36c6e","after":"4311b10428b2475eaa17b308cf2db26c2a2be5aa","ref":"refs/heads/master","pushedAt":"2024-04-02T20:26:24.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(deps): Bump follow-redirects from 1.15.4 to 1.15.6 in /docs (#1178)\n\nBumps\r\n[follow-redirects](https://github.com/follow-redirects/follow-redirects)\r\nfrom 1.15.4 to 1.15.6.\r\n
\r\nCommits\r\n
    \r\n
  • 35a517c\r\nRelease version 1.15.6 of the npm package.
  • \r\n
  • c4f847f\r\nDrop Proxy-Authorization across hosts.
  • \r\n
  • 8526b4a\r\nUse GitHub for disclosure.
  • \r\n
  • b1677ce\r\nRelease version 1.15.5 of the npm package.
  • \r\n
  • d8914f7\r\nPreserve fragment in responseUrl.
  • \r\n
  • See full diff 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=follow-redirects&package-manager=npm_and_yarn&previous-version=1.15.4&new-version=1.15.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\nYou can disable automated security fix PRs for this repo from the\r\n[Security Alerts page](https://github.com/uber-go/fx/network/alerts).\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>\r\nCo-authored-by: Jacob Oaks ","shortMessageHtmlLink":"chore(deps): Bump follow-redirects from 1.15.4 to 1.15.6 in /docs (#1178"}},{"before":"73b450ef7da2c127c2568bf7412c0d720f6642fa","after":null,"ref":"refs/heads/dependabot/npm_and_yarn/docs/follow-redirects-1.15.6","pushedAt":"2024-04-02T20:26:24.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"JacobOaks","name":"Jacob Oaks","path":"/JacobOaks","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/11602410?s=80&v=4"}},{"before":"d7708d27610d8f2bdee4dd5e9b75e623764777fe","after":"73b450ef7da2c127c2568bf7412c0d720f6642fa","ref":"refs/heads/dependabot/npm_and_yarn/docs/follow-redirects-1.15.6","pushedAt":"2024-04-02T20:10:03.000Z","pushType":"push","commitsCount":2,"pusher":{"login":"JacobOaks","name":"Jacob Oaks","path":"/JacobOaks","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/11602410?s=80&v=4"},"commit":{"message":"Merge branch 'master' into dependabot/npm_and_yarn/docs/follow-redirects-1.15.6","shortMessageHtmlLink":"Merge branch 'master' into dependabot/npm_and_yarn/docs/follow-redire…"}},{"before":"e759bc1cb57d1b04d0d2998f00de34304b026087","after":null,"ref":"refs/heads/dependabot/npm_and_yarn/docs/express-4.19.2","pushedAt":"2024-04-02T20:09:05.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"JacobOaks","name":"Jacob Oaks","path":"/JacobOaks","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/11602410?s=80&v=4"}}],"hasNextPage":true,"hasPreviousPage":false,"activityType":"all","actor":null,"timePeriod":"all","sort":"DESC","perPage":30,"cursor":"djE6ks8AAAAEWCFnaAA","startCursor":null,"endCursor":null}},"title":"Activity · uber-go/fx"}