{"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:1713973167.0","currentOid":""},"activityList":{"items":[{"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"}},{"before":"5c45bbca5ba73059ce3b46a08ad64e8603d84824","after":"efc111fdb69fc1f201a7094095fa01225cf36c6e","ref":"refs/heads/master","pushedAt":"2024-04-02T20:09: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":"chore(deps): Bump express from 4.18.2 to 4.19.2 in /docs (#1182)\n\nBumps [express](https://github.com/expressjs/express) from 4.18.2 to\r\n4.19.2.\r\n
\r\nRelease notes\r\n

Sourced from express's\r\nreleases.

\r\n
\r\n

4.19.2

\r\n

What's Changed

\r\n
    \r\n
  • Improved\r\nfix for open redirect allow list bypass
  • \r\n
\r\n

Full Changelog: https://github.com/expressjs/express/compare/4.19.1...4.19.2

\r\n

4.19.1

\r\n

What's Changed

\r\n
    \r\n
  • Fix ci after location patch by @​wesleytodd in expressjs/express#5552
  • \r\n
  • fixed un-edited version in history.md for 4.19.0 by @​wesleytodd in expressjs/express#5556
  • \r\n
\r\n

Full Changelog: https://github.com/expressjs/express/compare/4.19.0...4.19.1

\r\n

4.19.0

\r\n

What's Changed

\r\n
    \r\n
  • fix typo in release date by @​UlisesGascon\r\nin expressjs/express#5527
  • \r\n
  • docs: nominating @​wesleytodd to be\r\nproject captian by @​wesleytodd in expressjs/express#5511
  • \r\n
  • docs: loosen TC activity rules by @​wesleytodd in expressjs/express#5510
  • \r\n
  • Add note on how to update docs for new release by @​crandmck in expressjs/express#5541
  • \r\n
  • Prevent\r\nopen redirect allow list bypass due to encodeurl
  • \r\n
  • Release 4.19.0 by @​wesleytodd in expressjs/express#5551
  • \r\n
\r\n

New Contributors

\r\n
    \r\n
  • @​crandmck\r\nmade their first contribution in expressjs/express#5541
  • \r\n
\r\n

Full Changelog: https://github.com/expressjs/express/compare/4.18.3...4.19.0

\r\n

4.18.3

\r\n

Main Changes

\r\n
    \r\n
  • Fix routing requests without method
  • \r\n
  • deps: body-parser@1.20.2\r\n
      \r\n
    • Fix strict json error message on Node.js 19+
    • \r\n
    • deps: content-type@~1.0.5
    • \r\n
    • deps: raw-body@2.5.2
    • \r\n
    \r\n
  • \r\n
\r\n

Other Changes

\r\n
    \r\n
  • Use https: protocol instead of deprecated git: protocol by @​vcsjones in expressjs/express#5032
  • \r\n
  • build: Node.js@16.18 and Node.js@18.12 by @​abenhamdine in\r\nexpressjs/express#5034
  • \r\n
  • ci: update actions/checkout to v3 by @​armujahid in expressjs/express#5027
  • \r\n
  • test: remove unused function arguments in params by @​raksbisht in expressjs/express#5124
  • \r\n
  • Remove unused originalIndex from acceptParams by @​raksbisht in expressjs/express#5119
  • \r\n
  • Fixed typos by @​raksbisht in expressjs/express#5117
  • \r\n
  • examples: remove unused params by @​raksbisht in expressjs/express#5113
  • \r\n
  • fix: parameter str is not described in JSDoc by @​raksbisht in expressjs/express#5130
  • \r\n
  • fix: typos in History.md by @​raksbisht in expressjs/express#5131
  • \r\n
  • build : add Node.js@19.7 by @​abenhamdine in\r\nexpressjs/express#5028
  • \r\n
  • test: remove unused function arguments in params by @​raksbisht in expressjs/express#5137
  • \r\n
\r\n\r\n
\r\n

... (truncated)

\r\n
\r\n
\r\nChangelog\r\n

Sourced from express's\r\nchangelog.

\r\n
\r\n

4.19.2 / 2024-03-25

\r\n
    \r\n
  • Improved fix for open redirect allow list bypass
  • \r\n
\r\n

4.19.1 / 2024-03-20

\r\n
    \r\n
  • Allow passing non-strings to res.location with new encoding handling\r\nchecks
  • \r\n
\r\n

4.19.0 / 2024-03-20

\r\n
    \r\n
  • Prevent open redirect allow list bypass due to encodeurl
  • \r\n
  • deps: cookie@0.6.0
  • \r\n
\r\n

4.18.3 / 2024-02-29

\r\n
    \r\n
  • Fix routing requests without method
  • \r\n
  • deps: body-parser@1.20.2\r\n
      \r\n
    • Fix strict json error message on Node.js 19+
    • \r\n
    • deps: content-type@~1.0.5
    • \r\n
    • deps: raw-body@2.5.2
    • \r\n
    \r\n
  • \r\n
  • deps: cookie@0.6.0\r\n
      \r\n
    • Add partitioned option
    • \r\n
    \r\n
  • \r\n
\r\n
\r\n
\r\n
\r\nCommits\r\n
    \r\n
  • 04bc627\r\n4.19.2
  • \r\n
  • da4d763\r\nImproved fix for open redirect allow list bypass
  • \r\n
  • 4f0f6cc\r\n4.19.1
  • \r\n
  • a003cfa\r\nAllow passing non-strings to res.location with new encoding handling\r\nchecks f...
  • \r\n
  • a1fa90f\r\nfixed un-edited version in history.md for 4.19.0
  • \r\n
  • 11f2b1d\r\nbuild: fix build due to inconsistent supertest behavior in older\r\nversions
  • \r\n
  • 084e365\r\n4.19.0
  • \r\n
  • 0867302\r\nPrevent open redirect allow list bypass due to encodeurl
  • \r\n
  • 567c9c6\r\nAdd note on how to update docs for new release (#5541)
  • \r\n
  • 69a4cf2\r\ndeps: cookie@0.6.0
  • \r\n
  • Additional commits viewable in compare\r\nview
  • \r\n
\r\n
\r\n
\r\nMaintainer changes\r\n

This version was pushed to npm by wesleytodd, a new releaser\r\nfor express since your current version.

\r\n
\r\n
\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=express&package-manager=npm_and_yarn&previous-version=4.18.2&new-version=4.19.2)](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 express from 4.18.2 to 4.19.2 in /docs (#1182)"}},{"before":"28ab1aaf102d8b07d75a57050aed74c007e3c2b6","after":"d7708d27610d8f2bdee4dd5e9b75e623764777fe","ref":"refs/heads/dependabot/npm_and_yarn/docs/follow-redirects-1.15.6","pushedAt":"2024-04-02T20:02:31.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":"505b1158bfd57ba00b849efea6b8b3938d4636b5","after":"e759bc1cb57d1b04d0d2998f00de34304b026087","ref":"refs/heads/dependabot/npm_and_yarn/docs/express-4.19.2","pushedAt":"2024-04-02T20:02:19.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/express-4.19.2","shortMessageHtmlLink":"Merge branch 'master' into dependabot/npm_and_yarn/docs/express-4.19.2"}},{"before":"e44b89cf391aaf9f61b1535f3e5eea4f497b9895","after":"5c45bbca5ba73059ce3b46a08ad64e8603d84824","ref":"refs/heads/master","pushedAt":"2024-04-02T20:02:05.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":"Fix golangci-lint installation step in CI (#1185)\n\nFollowing https://github.com/uber-go/zap/pull/1424 as an example, fix CI\r\nto use `--help` flag since `--version` is no longer accepted.\r\n\r\n(example issue:\r\nhttps://github.com/uber-go/fx/actions/runs/8469190208/job/23203935028?pr=1182)","shortMessageHtmlLink":"Fix golangci-lint installation step in CI (#1185)"}},{"before":null,"after":"505b1158bfd57ba00b849efea6b8b3938d4636b5","ref":"refs/heads/dependabot/npm_and_yarn/docs/express-4.19.2","pushedAt":"2024-03-28T14:51:12.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 express from 4.18.2 to 4.19.2 in /docs\n\nBumps [express](https://github.com/expressjs/express) from 4.18.2 to 4.19.2.\n- [Release notes](https://github.com/expressjs/express/releases)\n- [Changelog](https://github.com/expressjs/express/blob/master/History.md)\n- [Commits](https://github.com/expressjs/express/compare/4.18.2...4.19.2)\n\n---\nupdated-dependencies:\n- dependency-name: express\n dependency-type: indirect\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"chore(deps): Bump express from 4.18.2 to 4.19.2 in /docs"}},{"before":null,"after":"28ab1aaf102d8b07d75a57050aed74c007e3c2b6","ref":"refs/heads/dependabot/npm_and_yarn/docs/follow-redirects-1.15.6","pushedAt":"2024-03-16T23:24: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":"chore(deps): Bump follow-redirects from 1.15.4 to 1.15.6 in /docs\n\nBumps [follow-redirects](https://github.com/follow-redirects/follow-redirects) from 1.15.4 to 1.15.6.\n- [Release notes](https://github.com/follow-redirects/follow-redirects/releases)\n- [Commits](https://github.com/follow-redirects/follow-redirects/compare/v1.15.4...v1.15.6)\n\n---\nupdated-dependencies:\n- dependency-name: follow-redirects\n dependency-type: indirect\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"chore(deps): Bump follow-redirects from 1.15.4 to 1.15.6 in /docs"}},{"before":"99b10dd51ec221642cdf3715a863da8566769eaf","after":null,"ref":"refs/heads/dependabot/go_modules/tools/google.golang.org/protobuf-1.33.0","pushedAt":"2024-03-13T22:21:44.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"sywhang","name":"Sung Yoon Whang","path":"/sywhang","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/30421794?s=80&v=4"}},{"before":"6c22be5ced00b701b3cfe0e049ca9f76f3a4bd20","after":"e44b89cf391aaf9f61b1535f3e5eea4f497b9895","ref":"refs/heads/master","pushedAt":"2024-03-13T22:21:43.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":"chore(deps): Bump google.golang.org/protobuf from 1.28.0 to 1.33.0 in /tools (#1177)\n\nBumps google.golang.org/protobuf from 1.28.0 to 1.33.0.\r\n\r\n\r\n[![Dependabot compatibility\r\nscore](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=google.golang.org/protobuf&package-manager=go_modules&previous-version=1.28.0&new-version=1.33.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\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>","shortMessageHtmlLink":"chore(deps): Bump google.golang.org/protobuf from 1.28.0 to 1.33.0 in…"}},{"before":null,"after":"99b10dd51ec221642cdf3715a863da8566769eaf","ref":"refs/heads/dependabot/go_modules/tools/google.golang.org/protobuf-1.33.0","pushedAt":"2024-03-13T21:49:05.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 google.golang.org/protobuf in /tools\n\nBumps google.golang.org/protobuf from 1.28.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":"chore(deps): Bump google.golang.org/protobuf in /tools"}},{"before":"7940a277caaac9b52b8374d26bea62a6c893c6c1","after":"6c22be5ced00b701b3cfe0e049ca9f76f3a4bd20","ref":"refs/heads/master","pushedAt":"2024-03-13T15:28:12.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 (#1176)\n\nReturn changelog and version to development mode.","shortMessageHtmlLink":"Back to development (#1176)"}},{"before":"340d5aca018cc6afcc1f7dfa4509ab6d82463ec2","after":"7940a277caaac9b52b8374d26bea62a6c893c6c1","ref":"refs/heads/master","pushedAt":"2024-03-13T15:13: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":"Prepare release v1.21.0 (#1171)\n\nUpdates version and changelog for v1.21.0.\r\n\r\n---------\r\n\r\nCo-authored-by: Jacob Oaks ","shortMessageHtmlLink":"Prepare release v1.21.0 (#1171)"}},{"before":"bb632bea51448b9d28eba5f4e64e34106110eae2","after":"340d5aca018cc6afcc1f7dfa4509ab6d82463ec2","ref":"refs/heads/master","pushedAt":"2024-03-13T14:25:44.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":"feat: added slog adapter (#1173)\n\nUnsure if this is even wanted however, this PR introduces an adapter\r\n(originally from [here](https://github.com/robbert229/fxslog/tree/main))\r\nto more easily use slog as the underlying logger implementation instead\r\nof zap.\r\n\r\n\r\nThis covers: #1170","shortMessageHtmlLink":"feat: added slog adapter (#1173)"}},{"before":"bf48ba34fc8cb0fe04248c6cca754c5131e66c3d","after":"bb632bea51448b9d28eba5f4e64e34106110eae2","ref":"refs/heads/master","pushedAt":"2024-03-11T14:27: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":"chore(deps): Bump golang.org/x/tools from 0.18.0 to 0.19.0 in /tools (#1174)\n\nBumps [golang.org/x/tools](https://github.com/golang/tools) from 0.18.0\r\nto 0.19.0.\r\n
\r\nCommits\r\n
    \r\n
  • 7656c4c\r\ngo.mod: update golang.org/x dependencies
  • \r\n
  • 5bf7d00\r\ncmd/callgraph: add 'posn' template helper
  • \r\n
  • 283fce2\r\nx/tools: drop go1.18 support
  • \r\n
  • 7f348c7\r\ninternal/versions: updates the meaning of FileVersions.
  • \r\n
  • 38b0e9b\r\nx/tools: add explicit Unalias operations
  • \r\n
  • a6c03c8\r\nx/tools: update telemetry import (new Start API)
  • \r\n
  • 1f7dbdf\r\ngopls/internal/cache: add debug assertions for bug report
  • \r\n
  • 4d4e802\r\ngopls/doc: address additional comments on workspace.md
  • \r\n
  • abe5874\r\ngopls/internal/analysis: add fill switch cases code action
  • \r\n
  • fc70354\r\ngopls/internal/test: add test for NPE in control flow highlighting
  • \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.18.0&new-version=0.19.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.18.0 to 0.19.0 in /tools (#…"}},{"before":"71447fdad5f75e1164948daf9a3265658c4b887e","after":null,"ref":"refs/heads/dependabot/go_modules/tools/golang.org/x/tools-0.19.0","pushedAt":"2024-03-11T14:27:56.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":null,"after":"71447fdad5f75e1164948daf9a3265658c4b887e","ref":"refs/heads/dependabot/go_modules/tools/golang.org/x/tools-0.19.0","pushedAt":"2024-03-11T14:15: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 golang.org/x/tools from 0.18.0 to 0.19.0 in /tools\n\nBumps [golang.org/x/tools](https://github.com/golang/tools) from 0.18.0 to 0.19.0.\n- [Release notes](https://github.com/golang/tools/releases)\n- [Commits](https://github.com/golang/tools/compare/v0.18.0...v0.19.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.18.0 to 0.19.0 in /tools"}},{"before":"6ddbd0359be94efe0d729b6799a942936d4374b4","after":"bf48ba34fc8cb0fe04248c6cca754c5131e66c3d","ref":"refs/heads/master","pushedAt":"2024-03-08T16:08:25.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":"docs-lint: don't validate Fx compare links (#1172)\n\nThe lint CI step for #1171 is failing because it adds a comparison link\r\nin the changelog that does not yet exist (the 1.20.2 tag has not been\r\ncreated yet).\r\n\r\nThis PR ignores these types of links when validating links during docs\r\nlinting in CI.\r\n\r\nTested this by adding the link from #1171 into the changelog.\r\n\r\nBefore this change:\r\n```\r\n$ make docs-lint\r\nChecking documentation\r\n...\r\nerror: changelog.md:19: \"https://github.com/uber-go/fx/compare/v1.20.0...v1.20.2\" not accessible; status code 404: Not Found\r\nmake[1]: *** [check] Error 1\r\nmake: *** [docs-lint] Error 2\r\n```\r\nAfter this change:\r\n```\r\n$ make docs-lint\r\nChecking documentation\r\n```","shortMessageHtmlLink":"docs-lint: don't validate Fx compare links (#1172)"}},{"before":"a720b8db168b983b17682852030c687269aed211","after":null,"ref":"refs/heads/dependabot/npm_and_yarn/docs/ip-1.1.9","pushedAt":"2024-02-22T22:09:02.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"sywhang","name":"Sung Yoon Whang","path":"/sywhang","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/30421794?s=80&v=4"}},{"before":"d9b4119a8f15a2eff1854389ea84617768bf8845","after":"6ddbd0359be94efe0d729b6799a942936d4374b4","ref":"refs/heads/master","pushedAt":"2024-02-22T22:09:01.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":"chore(deps): Bump ip from 1.1.8 to 1.1.9 in /docs (#1166)\n\nBumps [ip](https://github.com/indutny/node-ip) from 1.1.8 to 1.1.9.\r\n
\r\nCommits\r\n
    \r\n
  • 1ecbf2f\r\n1.1.9
  • \r\n
  • 6a3ada9\r\nlib: fixed CVE-2023-42282 and added unit test
  • \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=ip&package-manager=npm_and_yarn&previous-version=1.1.8&new-version=1.1.9)](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>","shortMessageHtmlLink":"chore(deps): Bump ip from 1.1.8 to 1.1.9 in /docs (#1166)"}}],"hasNextPage":true,"hasPreviousPage":false,"activityType":"all","actor":null,"timePeriod":"all","sort":"DESC","perPage":30,"cursor":"djE6ks8AAAAEOV3AbAA","startCursor":null,"endCursor":null}},"title":"Activity · uber-go/fx"}