Compare commits
No commits in common. "main" and "v11.17.4" have entirely different histories.
|
|
@ -1,3 +1,3 @@
|
||||||
{
|
{
|
||||||
".": "11.17.5"
|
".": "11.17.4"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -9,11 +9,11 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
if: ${{ github.ref == 'refs/heads/main' && github.repository_owner == 'folke' }}
|
if: ${{ github.ref == 'refs/heads/main' && github.repository_owner == 'folke' }}
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v6
|
- uses: actions/checkout@v4
|
||||||
- uses: folke/github/neovim@main
|
- uses: folke/github/neovim@main
|
||||||
- name: Rockspec Build
|
- name: Rockspec Build
|
||||||
id: rockspec-build
|
id: rockspec-build
|
||||||
uses: actions/cache@v5
|
uses: actions/cache@v4
|
||||||
with:
|
with:
|
||||||
path: build
|
path: build
|
||||||
key: rockspec-build
|
key: rockspec-build
|
||||||
|
|
@ -22,7 +22,7 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
nvim -l lua/lazy/build.lua
|
nvim -l lua/lazy/build.lua
|
||||||
- name: Push changes
|
- name: Push changes
|
||||||
uses: stefanzweifel/git-auto-commit-action@v7
|
uses: stefanzweifel/git-auto-commit-action@v5
|
||||||
with:
|
with:
|
||||||
commit_message: "chore(build): auto-generate rockspec mappings"
|
commit_message: "chore(build): auto-generate rockspec mappings"
|
||||||
commit_user_name: "github-actions[bot]"
|
commit_user_name: "github-actions[bot]"
|
||||||
|
|
|
||||||
|
|
@ -11,7 +11,7 @@ jobs:
|
||||||
env:
|
env:
|
||||||
GH_TOKEN: ${{ github.token }}
|
GH_TOKEN: ${{ github.token }}
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v6
|
- uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
ref: docs
|
ref: docs
|
||||||
- name: Generate Docs
|
- name: Generate Docs
|
||||||
|
|
|
||||||
|
|
@ -1,12 +1,5 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
## [11.17.5](https://github.com/folke/lazy.nvim/compare/v11.17.4...v11.17.5) (2025-11-06)
|
|
||||||
|
|
||||||
|
|
||||||
### Bug Fixes
|
|
||||||
|
|
||||||
* **luarocks:** proper parsing of dependency name. Closes [#2086](https://github.com/folke/lazy.nvim/issues/2086) ([5c09e6f](https://github.com/folke/lazy.nvim/commit/5c09e6fe71f4bb930eeffe24d45762fa3ffada4e))
|
|
||||||
|
|
||||||
## [11.17.4](https://github.com/folke/lazy.nvim/compare/v11.17.3...v11.17.4) (2025-11-04)
|
## [11.17.4](https://github.com/folke/lazy.nvim/compare/v11.17.3...v11.17.4) (2025-11-04)
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
File diff suppressed because it is too large
Load Diff
|
|
@ -242,7 +242,7 @@ function M.hererocks()
|
||||||
return M.options.rocks.hererocks
|
return M.options.rocks.hererocks
|
||||||
end
|
end
|
||||||
|
|
||||||
M.version = "11.17.5" -- x-release-please-version
|
M.version = "11.17.4" -- x-release-please-version
|
||||||
|
|
||||||
M.ns = vim.api.nvim_create_namespace("lazy")
|
M.ns = vim.api.nvim_create_namespace("lazy")
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -285,10 +285,7 @@ function M.get(plugin)
|
||||||
|
|
||||||
---@param dep string
|
---@param dep string
|
||||||
local rocks = vim.tbl_filter(function(dep)
|
local rocks = vim.tbl_filter(function(dep)
|
||||||
local name = dep:match("^%s*([^~><=%s]+)")
|
local name = dep:gsub("%s.*", "")
|
||||||
if not name then
|
|
||||||
return false
|
|
||||||
end
|
|
||||||
local url = Community.get_url(name)
|
local url = Community.get_url(name)
|
||||||
local spec = Community.get_spec(name)
|
local spec = Community.get_spec(name)
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue