{"payload":{"feedbackUrl":"https://github.com/orgs/community/discussions/53140","repo":{"id":568549346,"defaultBranch":"main","name":"lazy.nvim","ownerLogin":"folke","currentUserCanPush":false,"isFork":false,"isEmpty":false,"createdAt":"2022-11-20T21:36:02.000Z","ownerAvatar":"https://avatars.githubusercontent.com/u/292349?v=4","public":true,"private":false,"isOrgOwned":false},"refInfo":{"name":"","listCacheKey":"v0:1721907559.0","currentOid":""},"activityList":{"items":[{"before":"077102c5bfc578693f12377846d427f49bc50076","after":"48b52b5cfcf8f88ed0aff8fde573a5cc20b1306d","ref":"refs/heads/create-pull-request/patch","pushedAt":"2024-08-31T07:03:52.000Z","pushType":"push","commitsCount":4,"pusher":{"login":"github-actions[bot]","name":null,"path":"/apps/github-actions","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/15368?s=80&v=4"},"commit":{"message":"chore(build): auto-generate rockspec mappings","shortMessageHtmlLink":"chore(build): auto-generate rockspec mappings"}},{"before":"591ef40f2da3a26fbcc0466988cd6fe45ca68cae","after":"48b52b5cfcf8f88ed0aff8fde573a5cc20b1306d","ref":"refs/heads/main","pushedAt":"2024-08-31T07:03:19.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"github-actions[bot]","name":null,"path":"/apps/github-actions","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/15368?s=80&v=4"},"commit":{"message":"chore(build): auto-generate rockspec mappings","shortMessageHtmlLink":"chore(build): auto-generate rockspec mappings"}},{"before":"471dcab2d5d1bd25049a76fc670298c52603ff40","after":"0bbbb421707a735a6b7a62e97d3dce8552706662","ref":"refs/heads/release-please--branches--main","pushedAt":"2024-08-31T07:00:35.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"github-actions[bot]","name":null,"path":"/apps/github-actions","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/15368?s=80&v=4"},"commit":{"message":"chore(main): release 11.14.2","shortMessageHtmlLink":"chore(main): release 11.14.2"}},{"before":"80da254e645f579c28394ee0f08f75a9c9481744","after":"591ef40f2da3a26fbcc0466988cd6fe45ca68cae","ref":"refs/heads/main","pushedAt":"2024-08-31T06:59:45.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"folke","name":"Folke Lemaitre","path":"/folke","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/292349?s=80&v=4"},"commit":{"message":"fix(luarocks): try to install from root manifest (#1687)\n\n## Description\r\n\r\nWhen passing the `--dev` flag to `luarocks`, it will prioritise `dev`\r\nversions when resolving dependencies (treating `dev` or `scm` as greater\r\nthan a SemVer version) if the rockspec doesn't specify an upper version\r\nconstraint (which is often the case).\r\n\r\nDev packages are often unstable and may cause more problems, especially\r\nfor Windows users (an example I've seen is git for windows trying and\r\nfailing to checkout submodules).\r\n\r\nFor now , a good compromise between too many retries and not retrying at\r\nall could be to try `luarocks install` from the root manifest first, but\r\nto keep the `--dev` flag in `luarocks make`.\r\n\r\nIf that still causes problems, it might be better to fall back to\r\n`luarocks make` without `--dev` first, and then to try `luarocks ---dev\r\nmake` as a last resort.\r\nIn rocks.nvim, we only fall back to adding the `--dev` flag if the\r\ninstall error message contains the string `\"No results matching query\r\nwere found\"`; assuming that stable non-dev packages shouldn't depend on\r\ndev packages.","shortMessageHtmlLink":"fix(luarocks): try to install from root manifest (#1687)"}},{"before":"5a8aa2cdee036eedbd5a624abe55f4cfbfeb9e04","after":"471dcab2d5d1bd25049a76fc670298c52603ff40","ref":"refs/heads/release-please--branches--main","pushedAt":"2024-08-31T06:58:59.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"github-actions[bot]","name":null,"path":"/apps/github-actions","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/15368?s=80&v=4"},"commit":{"message":"chore(main): release 11.14.2","shortMessageHtmlLink":"chore(main): release 11.14.2"}},{"before":"014a72b7a87ccf56670412edb87a431b196e5864","after":"80da254e645f579c28394ee0f08f75a9c9481744","ref":"refs/heads/main","pushedAt":"2024-08-31T06:58:43.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"folke","name":"Folke Lemaitre","path":"/folke","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/292349?s=80&v=4"},"commit":{"message":"fix(rocks): add lib64 plugin directory to package.cpath (#1717)\n\n## Description\r\n`package.cpath` is missing the `lib64` directory for plugins that have\r\nluarocks dependencies.\r\n\r\n## Context\r\nI found this issue when I was working on my new Neovim plugin on my\r\nFedora 39 machine. I added the `luasockets` dependency to rockspec file\r\nin my plugin like so:\r\n\r\n```\r\nrockspec_format = \"3.0\"\r\npackage = \"typeracer.nvim\"\r\nversion = \"scm-1\"\r\nsource = {\r\n\turl = \"git+https://github.com/carbon-steel/typeracer.nvim\",\r\n}\r\ndependencies = {\r\n\t\"luasocket\",\r\n}\r\ntest_dependencies = {\r\n\t\"nlua\",\r\n}\r\nbuild = {\r\n\ttype = \"builtin\",\r\n\tcopy_directories = {},\r\n}\r\n\r\n```\r\n\r\nI found that the dynamic libraries from the `luasockets` dependency were\r\ninstalled like so:\r\n`/home/username/.local/share/nvim/lazy-rocks/typeracer.nvim/lib64/lua/5.1/socket/core.so`.\r\nHowever, the only entry related to my plugin `typeracer.nvim` was:\r\n`/home/glyph/.local/share/nvim/lazy-rocks/typeracer.nvim/lib/lua/5.1/?.so`.\r\nThe issue is that we only have the plugin's `lib` directory in\r\n`package.cpath` and not `lib64`.\r\n\r\nI looked through `lazy.nvim`'s code and I think adding the `lib64`\r\ndirectory should fix the issue. I don't know if we also want to worry\r\nabout `lib32` as well, but so far, this change works for me.","shortMessageHtmlLink":"fix(rocks): add lib64 plugin directory to package.cpath (#1717)"}},{"before":"077102c5bfc578693f12377846d427f49bc50076","after":"014a72b7a87ccf56670412edb87a431b196e5864","ref":"refs/heads/main","pushedAt":"2024-08-31T06:57:58.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"folke","name":"Folke Lemaitre","path":"/folke","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/292349?s=80&v=4"},"commit":{"message":"docs: update dev.path description (#1711)\n\n## Description\r\n\r\nIn the issue (#1707) I was confused by the description of `dev.path`. I\r\nthought functions must also return the general directory for local\r\nplugins, but it must be the plugin directory.\r\n\r\n## Related Issue(s)\r\n\r\n#1707","shortMessageHtmlLink":"docs: update dev.path description (#1711)"}},{"before":"7108809ab18dc1b1e6f402b29e2e1d35a5d311d5","after":"077102c5bfc578693f12377846d427f49bc50076","ref":"refs/heads/create-pull-request/patch","pushedAt":"2024-07-25T12:06:20.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"github-actions[bot]","name":null,"path":"/apps/github-actions","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/15368?s=80&v=4"},"commit":{"message":"chore(main): release 11.14.1 (#1680)\n\n:robot: I have created a release *beep* *boop*\n---\n\n\n##\n[11.14.1](https://github.com/folke/lazy.nvim/compare/v11.14.0...v11.14.1)\n(2024-07-25)\n\n\n### Bug Fixes\n\n* **plugins:** \"Vim:E150: Not a directory\" on plugin update\n([#1679](https://github.com/folke/lazy.nvim/issues/1679))\n([7108809](https://github.com/folke/lazy.nvim/commit/7108809ab18dc1b1e6f402b29e2e1d35a5d311d5))\n\n---\nThis PR was generated with [Release\nPlease](https://github.com/googleapis/release-please). See\n[documentation](https://github.com/googleapis/release-please#release-please).\n\nCo-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>","shortMessageHtmlLink":"chore(main): release 11.14.1 (#1680)"}},{"before":"8edf509c5c5fc73e8c070f9854ad69ea36e6d2de","after":null,"ref":"refs/tags/stable","pushedAt":"2024-07-25T11:39:18.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"github-actions[bot]","name":null,"path":"/apps/github-actions","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/15368?s=80&v=4"}},{"before":"7108809ab18dc1b1e6f402b29e2e1d35a5d311d5","after":"077102c5bfc578693f12377846d427f49bc50076","ref":"refs/heads/main","pushedAt":"2024-07-25T11:38:23.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"folke","name":"Folke Lemaitre","path":"/folke","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/292349?s=80&v=4"},"commit":{"message":"chore(main): release 11.14.1 (#1680)\n\n:robot: I have created a release *beep* *boop*\n---\n\n\n##\n[11.14.1](https://github.com/folke/lazy.nvim/compare/v11.14.0...v11.14.1)\n(2024-07-25)\n\n\n### Bug Fixes\n\n* **plugins:** \"Vim:E150: Not a directory\" on plugin update\n([#1679](https://github.com/folke/lazy.nvim/issues/1679))\n([7108809](https://github.com/folke/lazy.nvim/commit/7108809ab18dc1b1e6f402b29e2e1d35a5d311d5))\n\n---\nThis PR was generated with [Release\nPlease](https://github.com/googleapis/release-please). See\n[documentation](https://github.com/googleapis/release-please#release-please).\n\nCo-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>","shortMessageHtmlLink":"chore(main): release 11.14.1 (#1680)"}},{"before":"4496b4cad69a862199bb3ad452d3c4988bb925a1","after":"7108809ab18dc1b1e6f402b29e2e1d35a5d311d5","ref":"refs/heads/create-pull-request/patch","pushedAt":"2024-07-25T11:03:57.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"github-actions[bot]","name":null,"path":"/apps/github-actions","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/15368?s=80&v=4"},"commit":{"message":"fix(plugins): \"Vim:E150: Not a directory\" on plugin update (#1679)\n\n## Description\r\n\r\nOn plugins update it fails with following error for any plugin.\r\n\r\n```\r\n~/.local/share/nvim/lazy/lazy.nvim/manage/task/plugin.lua:95: Vim:E150: Not a directory: ~/.local/share/nvim/lazy/gitsigns.nvim/doc/\r\n```","shortMessageHtmlLink":"fix(plugins): \"Vim:E150: Not a directory\" on plugin update (#1679)"}},{"before":"8b55b8c1e8a9c0f37081a196d360ca12772cc355","after":"5a8aa2cdee036eedbd5a624abe55f4cfbfeb9e04","ref":"refs/heads/release-please--branches--main","pushedAt":"2024-07-25T10:53:54.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"github-actions[bot]","name":null,"path":"/apps/github-actions","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/15368?s=80&v=4"},"commit":{"message":"chore(main): release 11.14.1","shortMessageHtmlLink":"chore(main): release 11.14.1"}},{"before":"4496b4cad69a862199bb3ad452d3c4988bb925a1","after":"7108809ab18dc1b1e6f402b29e2e1d35a5d311d5","ref":"refs/heads/main","pushedAt":"2024-07-25T10:53:01.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"folke","name":"Folke Lemaitre","path":"/folke","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/292349?s=80&v=4"},"commit":{"message":"fix(plugins): \"Vim:E150: Not a directory\" on plugin update (#1679)\n\n## Description\r\n\r\nOn plugins update it fails with following error for any plugin.\r\n\r\n```\r\n~/.local/share/nvim/lazy/lazy.nvim/manage/task/plugin.lua:95: Vim:E150: Not a directory: ~/.local/share/nvim/lazy/gitsigns.nvim/doc/\r\n```","shortMessageHtmlLink":"fix(plugins): \"Vim:E150: Not a directory\" on plugin update (#1679)"}},{"before":"c02268ac6e6aab92249d020d75efc588bd9d24fa","after":"4496b4cad69a862199bb3ad452d3c4988bb925a1","ref":"refs/heads/create-pull-request/patch","pushedAt":"2024-07-24T06:05:08.000Z","pushType":"push","commitsCount":2,"pusher":{"login":"github-actions[bot]","name":null,"path":"/apps/github-actions","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/15368?s=80&v=4"},"commit":{"message":"chore(main): release 11.14.0 (#1673)\n\n:robot: I have created a release *beep* *boop*\r\n---\r\n\r\n\r\n##\r\n[11.14.0](https://github.com/folke/lazy.nvim/compare/v11.13.5...v11.14.0)\r\n(2024-07-24)\r\n\r\n\r\n### Features\r\n\r\n* added `opts.git.cooldown` to allow updating plugins on slow\r\nconnections. Fixes\r\n[#1656](https://github.com/folke/lazy.nvim/issues/1656)\r\n([d5686ef](https://github.com/folke/lazy.nvim/commit/d5686efbd00942b3e38de7c08b8df69d961b02f0))\r\n* **plugin:** improve error handling and show better error message\r\n([c02268a](https://github.com/folke/lazy.nvim/commit/c02268ac6e6aab92249d020d75efc588bd9d24fa))\r\n\r\n\r\n### Bug Fixes\r\n\r\n* **plugin:** make .lazy.lua work again\r\n([b4a5a12](https://github.com/folke/lazy.nvim/commit/b4a5a1209e4c64fa67aedf721a383541a64056d1))\r\n\r\n---\r\nThis PR was generated with [Release\r\nPlease](https://github.com/googleapis/release-please). See\r\n[documentation](https://github.com/googleapis/release-please#release-please).\r\n\r\nCo-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>","shortMessageHtmlLink":"chore(main): release 11.14.0 (#1673)"}},{"before":"6296c08cfc98719a7d425280c0062f98013c32af","after":null,"ref":"refs/tags/stable","pushedAt":"2024-07-24T05:39:40.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"github-actions[bot]","name":null,"path":"/apps/github-actions","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/15368?s=80&v=4"}},{"before":"b4a5a1209e4c64fa67aedf721a383541a64056d1","after":"4496b4cad69a862199bb3ad452d3c4988bb925a1","ref":"refs/heads/main","pushedAt":"2024-07-24T05:38:49.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"folke","name":"Folke Lemaitre","path":"/folke","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/292349?s=80&v=4"},"commit":{"message":"chore(main): release 11.14.0 (#1673)\n\n:robot: I have created a release *beep* *boop*\r\n---\r\n\r\n\r\n##\r\n[11.14.0](https://github.com/folke/lazy.nvim/compare/v11.13.5...v11.14.0)\r\n(2024-07-24)\r\n\r\n\r\n### Features\r\n\r\n* added `opts.git.cooldown` to allow updating plugins on slow\r\nconnections. Fixes\r\n[#1656](https://github.com/folke/lazy.nvim/issues/1656)\r\n([d5686ef](https://github.com/folke/lazy.nvim/commit/d5686efbd00942b3e38de7c08b8df69d961b02f0))\r\n* **plugin:** improve error handling and show better error message\r\n([c02268a](https://github.com/folke/lazy.nvim/commit/c02268ac6e6aab92249d020d75efc588bd9d24fa))\r\n\r\n\r\n### Bug Fixes\r\n\r\n* **plugin:** make .lazy.lua work again\r\n([b4a5a12](https://github.com/folke/lazy.nvim/commit/b4a5a1209e4c64fa67aedf721a383541a64056d1))\r\n\r\n---\r\nThis PR was generated with [Release\r\nPlease](https://github.com/googleapis/release-please). See\r\n[documentation](https://github.com/googleapis/release-please#release-please).\r\n\r\nCo-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>","shortMessageHtmlLink":"chore(main): release 11.14.0 (#1673)"}},{"before":"6bf8628fdb6ffd1978184578cd76ed14f248ba1c","after":"8b55b8c1e8a9c0f37081a196d360ca12772cc355","ref":"refs/heads/release-please--branches--main","pushedAt":"2024-07-24T05:24:36.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"github-actions[bot]","name":null,"path":"/apps/github-actions","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/15368?s=80&v=4"},"commit":{"message":"chore(main): release 11.14.0","shortMessageHtmlLink":"chore(main): release 11.14.0"}},{"before":"c02268ac6e6aab92249d020d75efc588bd9d24fa","after":"b4a5a1209e4c64fa67aedf721a383541a64056d1","ref":"refs/heads/main","pushedAt":"2024-07-24T05:23:38.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"folke","name":"Folke Lemaitre","path":"/folke","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/292349?s=80&v=4"},"commit":{"message":"fix(plugin): make .lazy.lua work again","shortMessageHtmlLink":"fix(plugin): make .lazy.lua work again"}},{"before":"d5686efbd00942b3e38de7c08b8df69d961b02f0","after":"c02268ac6e6aab92249d020d75efc588bd9d24fa","ref":"refs/heads/create-pull-request/patch","pushedAt":"2024-07-23T16:05:05.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"github-actions[bot]","name":null,"path":"/apps/github-actions","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/15368?s=80&v=4"},"commit":{"message":"feat(plugin): improve error handling and show better error message","shortMessageHtmlLink":"feat(plugin): improve error handling and show better error message"}},{"before":"7a86a7ac94b59dde99f730cfcc99845c223bc004","after":"6bf8628fdb6ffd1978184578cd76ed14f248ba1c","ref":"refs/heads/release-please--branches--main","pushedAt":"2024-07-23T15:25:49.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"github-actions[bot]","name":null,"path":"/apps/github-actions","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/15368?s=80&v=4"},"commit":{"message":"chore(main): release 11.14.0","shortMessageHtmlLink":"chore(main): release 11.14.0"}},{"before":"d5686efbd00942b3e38de7c08b8df69d961b02f0","after":"c02268ac6e6aab92249d020d75efc588bd9d24fa","ref":"refs/heads/main","pushedAt":"2024-07-23T15:24:36.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"folke","name":"Folke Lemaitre","path":"/folke","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/292349?s=80&v=4"},"commit":{"message":"feat(plugin): improve error handling and show better error message","shortMessageHtmlLink":"feat(plugin): improve error handling and show better error message"}},{"before":"839f9e78e78dc935b1188fb16583365991739c51","after":"d5686efbd00942b3e38de7c08b8df69d961b02f0","ref":"refs/heads/create-pull-request/patch","pushedAt":"2024-07-23T12:06:20.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"github-actions[bot]","name":null,"path":"/apps/github-actions","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/15368?s=80&v=4"},"commit":{"message":"feat: added `opts.git.cooldown` to allow updating plugins on slow connections. Fixes #1656","shortMessageHtmlLink":"feat: added opts.git.cooldown to allow updating plugins on slow con…"}},{"before":"6337678ee54a5c2e93f8516289d685a0a23aa75c","after":"7a86a7ac94b59dde99f730cfcc99845c223bc004","ref":"refs/heads/release-please--branches--main","pushedAt":"2024-07-23T11:32:26.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"github-actions[bot]","name":null,"path":"/apps/github-actions","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/15368?s=80&v=4"},"commit":{"message":"chore(main): release 11.14.0","shortMessageHtmlLink":"chore(main): release 11.14.0"}},{"before":"839f9e78e78dc935b1188fb16583365991739c51","after":"d5686efbd00942b3e38de7c08b8df69d961b02f0","ref":"refs/heads/main","pushedAt":"2024-07-23T11:31:27.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"folke","name":"Folke Lemaitre","path":"/folke","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/292349?s=80&v=4"},"commit":{"message":"feat: added `opts.git.cooldown` to allow updating plugins on slow connections. Fixes #1656","shortMessageHtmlLink":"feat: added opts.git.cooldown to allow updating plugins on slow con…"}},{"before":"16a5c46aa3d05d37eb9c49f57ab058033b0870a6","after":"839f9e78e78dc935b1188fb16583365991739c51","ref":"refs/heads/create-pull-request/patch","pushedAt":"2024-07-22T13:06:15.000Z","pushType":"push","commitsCount":3,"pusher":{"login":"github-actions[bot]","name":null,"path":"/apps/github-actions","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/15368?s=80&v=4"},"commit":{"message":"chore(main): release 11.13.5 (#1672)\n\n:robot: I have created a release *beep* *boop*\r\n---\r\n\r\n\r\n##\r\n[11.13.5](https://github.com/folke/lazy.nvim/compare/v11.13.4...v11.13.5)\r\n(2024-07-22)\r\n\r\n\r\n### Bug Fixes\r\n\r\n* **health:** dont use vim.fn.system to get cmd versions\r\n([7d29719](https://github.com/folke/lazy.nvim/commit/7d29719ade6f5a269e3b7d08b246641b5b079aaa))\r\n\r\n---\r\nThis PR was generated with [Release\r\nPlease](https://github.com/googleapis/release-please). See\r\n[documentation](https://github.com/googleapis/release-please#release-please).\r\n\r\nCo-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>","shortMessageHtmlLink":"chore(main): release 11.13.5 (#1672)"}},{"before":"bb4fc94d4a0878f904fc6cb25f6ce914b7199a67","after":null,"ref":"refs/tags/stable","pushedAt":"2024-07-22T12:42:44.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"github-actions[bot]","name":null,"path":"/apps/github-actions","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/15368?s=80&v=4"}},{"before":"7d29719ade6f5a269e3b7d08b246641b5b079aaa","after":"839f9e78e78dc935b1188fb16583365991739c51","ref":"refs/heads/main","pushedAt":"2024-07-22T12:41:58.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"folke","name":"Folke Lemaitre","path":"/folke","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/292349?s=80&v=4"},"commit":{"message":"chore(main): release 11.13.5 (#1672)\n\n:robot: I have created a release *beep* *boop*\r\n---\r\n\r\n\r\n##\r\n[11.13.5](https://github.com/folke/lazy.nvim/compare/v11.13.4...v11.13.5)\r\n(2024-07-22)\r\n\r\n\r\n### Bug Fixes\r\n\r\n* **health:** dont use vim.fn.system to get cmd versions\r\n([7d29719](https://github.com/folke/lazy.nvim/commit/7d29719ade6f5a269e3b7d08b246641b5b079aaa))\r\n\r\n---\r\nThis PR was generated with [Release\r\nPlease](https://github.com/googleapis/release-please). See\r\n[documentation](https://github.com/googleapis/release-please#release-please).\r\n\r\nCo-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>","shortMessageHtmlLink":"chore(main): release 11.13.5 (#1672)"}},{"before":"ce4114a69732d7965ae4d90aefd0d46180b8d08e","after":"6337678ee54a5c2e93f8516289d685a0a23aa75c","ref":"refs/heads/release-please--branches--main","pushedAt":"2024-07-22T12:39:19.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"github-actions[bot]","name":null,"path":"/apps/github-actions","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/15368?s=80&v=4"},"commit":{"message":"chore(main): release 11.13.5","shortMessageHtmlLink":"chore(main): release 11.13.5"}},{"before":"cc028e77eba9592818ca237b2079a51cf87b6af2","after":"7d29719ade6f5a269e3b7d08b246641b5b079aaa","ref":"refs/heads/main","pushedAt":"2024-07-22T12:38:22.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"folke","name":"Folke Lemaitre","path":"/folke","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/292349?s=80&v=4"},"commit":{"message":"fix(health): dont use vim.fn.system to get cmd versions","shortMessageHtmlLink":"fix(health): dont use vim.fn.system to get cmd versions"}},{"before":"16a5c46aa3d05d37eb9c49f57ab058033b0870a6","after":"cc028e77eba9592818ca237b2079a51cf87b6af2","ref":"refs/heads/main","pushedAt":"2024-07-22T12:24:41.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"folke","name":"Folke Lemaitre","path":"/folke","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/292349?s=80&v=4"},"commit":{"message":"ci: update","shortMessageHtmlLink":"ci: update"}}],"hasNextPage":true,"hasPreviousPage":false,"activityType":"all","actor":null,"timePeriod":"all","sort":"DESC","perPage":30,"cursor":"djE6ks8AAAAEqUATNQA","startCursor":null,"endCursor":null}},"title":"Activity · folke/lazy.nvim"}