github-actions[bot]
48b52b5cfc
chore(build): auto-generate rockspec mappings
2024-08-31 07:03:18 +00:00
Marc Jakobi
591ef40f2d
fix(luarocks): try to install from root manifest ( #1687 )
...
## Description
When passing the `--dev` flag to `luarocks`, it will prioritise `dev`
versions when resolving dependencies (treating `dev` or `scm` as greater
than a SemVer version) if the rockspec doesn't specify an upper version
constraint (which is often the case).
Dev packages are often unstable and may cause more problems, especially
for Windows users (an example I've seen is git for windows trying and
failing to checkout submodules).
For now , a good compromise between too many retries and not retrying at
all could be to try `luarocks install` from the root manifest first, but
to keep the `--dev` flag in `luarocks make`.
If that still causes problems, it might be better to fall back to
`luarocks make` without `--dev` first, and then to try `luarocks ---dev
make` as a last resort.
In rocks.nvim, we only fall back to adding the `--dev` flag if the
install error message contains the string `"No results matching query
were found"`; assuming that stable non-dev packages shouldn't depend on
dev packages.
2024-08-31 08:59:45 +02:00
Roger Kim
80da254e64
fix(rocks): add lib64 plugin directory to package.cpath ( #1717 )
...
## Description
`package.cpath` is missing the `lib64` directory for plugins that have
luarocks dependencies.
## Context
I found this issue when I was working on my new Neovim plugin on my
Fedora 39 machine. I added the `luasockets` dependency to rockspec file
in my plugin like so:
```
rockspec_format = "3.0"
package = "typeracer.nvim"
version = "scm-1"
source = {
url = "git+https://github.com/carbon-steel/typeracer.nvim ",
}
dependencies = {
"luasocket",
}
test_dependencies = {
"nlua",
}
build = {
type = "builtin",
copy_directories = {},
}
```
I found that the dynamic libraries from the `luasockets` dependency were
installed like so:
`/home/username/.local/share/nvim/lazy-rocks/typeracer.nvim/lib64/lua/5.1/socket/core.so`.
However, the only entry related to my plugin `typeracer.nvim` was:
`/home/glyph/.local/share/nvim/lazy-rocks/typeracer.nvim/lib/lua/5.1/?.so`.
The issue is that we only have the plugin's `lib` directory in
`package.cpath` and not `lib64`.
I looked through `lazy.nvim`'s code and I think adding the `lib64`
directory should fix the issue. I don't know if we also want to worry
about `lib32` as well, but so far, this change works for me.
2024-08-31 08:58:43 +02:00
Christoph Zirkelbach
014a72b7a8
docs: update dev.path description ( #1711 )
...
## Description
In the issue (#1707 ) I was confused by the description of `dev.path`. I
thought functions must also return the general directory for local
plugins, but it must be the plugin directory.
## Related Issue(s)
#1707
2024-08-31 08:57:58 +02:00
github-actions[bot]
077102c5bf
chore(main): release 11.14.1 ( #1680 )
...
🤖 I have created a release *beep* *boop*
---
##
[11.14.1](https://github.com/folke/lazy.nvim/compare/v11.14.0...v11.14.1 )
(2024-07-25)
### Bug Fixes
* **plugins:** "Vim:E150: Not a directory" on plugin update
([#1679 ](https://github.com/folke/lazy.nvim/issues/1679 ))
([7108809
](7108809ab1
))
---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please ). See
[documentation](https://github.com/googleapis/release-please#release-please ).
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2024-07-25 13:38:23 +02:00
Alexander Grebennik
7108809ab1
fix(plugins): "Vim:E150: Not a directory" on plugin update ( #1679 )
...
## Description
On plugins update it fails with following error for any plugin.
```
~/.local/share/nvim/lazy/lazy.nvim/manage/task/plugin.lua:95: Vim:E150: Not a directory: ~/.local/share/nvim/lazy/gitsigns.nvim/doc/
```
2024-07-25 12:53:01 +02:00
github-actions[bot]
4496b4cad6
chore(main): release 11.14.0 ( #1673 )
...
🤖 I have created a release *beep* *boop*
---
##
[11.14.0](https://github.com/folke/lazy.nvim/compare/v11.13.5...v11.14.0 )
(2024-07-24)
### Features
* added `opts.git.cooldown` to allow updating plugins on slow
connections. Fixes
[#1656 ](https://github.com/folke/lazy.nvim/issues/1656 )
([d5686ef
](d5686efbd0
))
* **plugin:** improve error handling and show better error message
([c02268a
](c02268ac6e
))
### Bug Fixes
* **plugin:** make .lazy.lua work again
([b4a5a12
](b4a5a1209e
))
---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please ). See
[documentation](https://github.com/googleapis/release-please#release-please ).
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2024-07-24 07:38:49 +02:00
Folke Lemaitre
b4a5a1209e
fix(plugin): make .lazy.lua work again
2024-07-24 07:23:36 +02:00
Folke Lemaitre
c02268ac6e
feat(plugin): improve error handling and show better error message
2024-07-23 17:24:33 +02:00
Folke Lemaitre
d5686efbd0
feat: added `opts.git.cooldown` to allow updating plugins on slow connections. Fixes #1656
2024-07-23 13:31:25 +02:00
github-actions[bot]
839f9e78e7
chore(main): release 11.13.5 ( #1672 )
...
🤖 I have created a release *beep* *boop*
---
##
[11.13.5](https://github.com/folke/lazy.nvim/compare/v11.13.4...v11.13.5 )
(2024-07-22)
### Bug Fixes
* **health:** dont use vim.fn.system to get cmd versions
([7d29719
](7d29719ade
))
---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please ). See
[documentation](https://github.com/googleapis/release-please#release-please ).
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2024-07-22 14:41:58 +02:00
Folke Lemaitre
7d29719ade
fix(health): dont use vim.fn.system to get cmd versions
2024-07-22 14:38:00 +02:00
github-actions[bot]
16a5c46aa3
chore(main): release 11.13.4 ( #1670 )
...
🤖 I have created a release *beep* *boop*
---
##
[11.13.4](https://github.com/folke/lazy.nvim/compare/v11.13.3...v11.13.4 )
(2024-07-22)
### Bug Fixes
* **loader:** add plugins whose rtp got loaded early to start plugins
([34b0126
](34b0126e5b
))
* **loader:** explicitely set package.loaded.modname to nil to prevent
recursive loading errors
([12f2c74
](12f2c74244
))
---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please ). See
[documentation](https://github.com/googleapis/release-please#release-please ).
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2024-07-22 09:47:04 +02:00
Folke Lemaitre
12f2c74244
fix(loader): explicitely set package.loaded.modname to nil to prevent recursive loading errors
2024-07-22 09:45:03 +02:00
Folke Lemaitre
34b0126e5b
fix(loader): add plugins whose rtp got loaded early to start plugins
2024-07-22 09:45:03 +02:00
github-actions[bot]
a09c876f6e
chore(main): release 11.13.3 ( #1669 )
...
🤖 I have created a release *beep* *boop*
---
##
[11.13.3](https://github.com/folke/lazy.nvim/compare/v11.13.2...v11.13.3 )
(2024-07-21)
### Reverts
* fix(loader): add auto loaded module to package.loaded early to prevent
require loops
([a692bf8
](a692bf8688
))
---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please ). See
[documentation](https://github.com/googleapis/release-please#release-please ).
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2024-07-21 17:34:22 +02:00
Folke Lemaitre
a692bf8688
revert: fix(loader): add auto loaded module to package.loaded early to prevent require loops
...
This reverts commit 18d1c1b47e
.
2024-07-21 17:32:50 +02:00
github-actions[bot]
8bef0742a2
chore(main): release 11.13.2 ( #1668 )
...
🤖 I have created a release *beep* *boop*
---
##
[11.13.2](https://github.com/folke/lazy.nvim/compare/v11.13.1...v11.13.2 )
(2024-07-21)
### Bug Fixes
* **loader:** add auto loaded module to package.loaded early to prevent
require loops
([18d1c1b
](18d1c1b47e
))
---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please ). See
[documentation](https://github.com/googleapis/release-please#release-please ).
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2024-07-21 15:53:27 +02:00
Folke Lemaitre
18d1c1b47e
fix(loader): add auto loaded module to package.loaded early to prevent require loops
2024-07-21 12:41:54 +02:00
github-actions[bot]
9a374a0fb4
chore(main): release 11.13.1 ( #1664 )
...
🤖 I have created a release *beep* *boop*
---
##
[11.13.1](https://github.com/folke/lazy.nvim/compare/v11.13.0...v11.13.1 )
(2024-07-19)
### Bug Fixes
* **build:** only load the plugin before build for `:` build commands
([5bdb12a
](5bdb12a038
))
---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please ). See
[documentation](https://github.com/googleapis/release-please#release-please ).
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2024-07-19 11:50:14 +02:00
Folke Lemaitre
5bdb12a038
fix(build): only load the plugin before build for `:` build commands
2024-07-19 08:57:37 +02:00
github-actions[bot]
8f62257511
chore(main): release 11.13.0 ( #1660 )
...
🤖 I have created a release *beep* *boop*
---
##
[11.13.0](https://github.com/folke/lazy.nvim/compare/v11.12.0...v11.13.0 )
(2024-07-17)
### Features
* **ui:** added mapping descriptions
([6ca90a2
](6ca90a2120
))
---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please ). See
[documentation](https://github.com/googleapis/release-please#release-please ).
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2024-07-18 10:47:30 +02:00
Folke Lemaitre
6ca90a2120
feat(ui): added mapping descriptions
2024-07-18 00:40:42 +02:00
github-actions[bot]
5473e3d77c
chore(main): release 11.12.0 ( #1655 )
...
🤖 I have created a release *beep* *boop*
---
##
[11.12.0](https://github.com/folke/lazy.nvim/compare/v11.11.1...v11.12.0 )
(2024-07-16)
### Features
* **git:** added git network throttle to limit network related git ops
per interval. Closes
[#1635 ](https://github.com/folke/lazy.nvim/issues/1635 )
([d731a6b
](d731a6b005
))
---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please ). See
[documentation](https://github.com/googleapis/release-please#release-please ).
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2024-07-17 12:54:53 +02:00
Folke Lemaitre
d731a6b005
feat(git): added git network throttle to limit network related git ops per interval. Closes #1635
2024-07-16 16:50:31 +02:00
github-actions[bot]
b02c9eae6a
chore(main): release 11.11.1 ( #1643 )
...
🤖 I have created a release *beep* *boop*
---
##
[11.11.1](https://github.com/folke/lazy.nvim/compare/v11.11.0...v11.11.1 )
(2024-07-13)
### Bug Fixes
* **config:** check for lib64. Fixes
[#1343 ](https://github.com/folke/lazy.nvim/issues/1343 )
([93499c5
](93499c5deb
))
* **lockfile:** ensure newline at EOF for lockfile
([#1639 ](https://github.com/folke/lazy.nvim/issues/1639 ))
([7ed9f71
](7ed9f7173c
))
---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please ). See
[documentation](https://github.com/googleapis/release-please#release-please ).
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2024-07-13 22:50:19 +02:00
Folke Lemaitre
93499c5deb
fix(config): check for lib64. Fixes #1343
2024-07-13 18:07:56 +02:00
Ethan Wu
7ed9f7173c
fix(lockfile): ensure newline at EOF for lockfile ( #1639 )
...
## Description
The lockfile currently does not end with a newline at EOF. Text files
should [end with a newline](https://unix.stackexchange.com/a/18789 ).
This also lets you manually edit the lockfile in vim without 'fixeol'
creating a spurious change for the added newline.
This change however will create a change in users' lockfiles adding a
newline upon updating, but since the lockfile would be changing anyways
to update lazy.nvim itself, this is likely acceptable.
## Related Issue(s)
*none*
## Screenshots
*N/A*
2024-07-13 09:51:44 +02:00
Folke Lemaitre
54f70c757c
ci: add luassert to minitest for now
2024-07-13 09:45:01 +02:00
github-actions[bot]
070418dca1
chore(main): release 11.11.0 ( #1634 )
...
🤖 I have created a release *beep* *boop*
---
##
[11.11.0](https://github.com/folke/lazy.nvim/compare/v11.10.4...v11.11.0 )
(2024-07-11)
### Features
* add plugin name to handlers.managed
([17473db
](17473db1d7
))
### Bug Fixes
* **minit:** add tests to package.path when running busted (helpers.lua
etc)
([fadebdc
](fadebdc76b
))
* **util:** strip `-lua` in normname
([54b003c
](54b003c650
))
---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please ). See
[documentation](https://github.com/googleapis/release-please#release-please ).
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2024-07-13 09:25:55 +02:00
Folke Lemaitre
1d451b4c2c
ci: use mini.test instead of busted
2024-07-11 22:32:11 +02:00
Folke Lemaitre
17473db1d7
feat: add plugin name to handlers.managed
2024-07-11 22:04:06 +02:00
Folke Lemaitre
54b003c650
fix(util): strip `-lua` in normname
2024-07-11 22:03:53 +02:00
Folke Lemaitre
fadebdc76b
fix(minit): add tests to package.path when running busted (helpers.lua etc)
2024-07-09 15:02:18 +02:00
github-actions[bot]
f918318d21
chore(main): release 11.10.4 ( #1628 )
...
🤖 I have created a release *beep* *boop*
---
##
[11.10.4](https://github.com/folke/lazy.nvim/compare/v11.10.3...v11.10.4 )
(2024-07-08)
### Bug Fixes
* **rocks:** try building anyway even when prerequisits have not been
met. (will likely fail)
([f0324de
](f0324defdd
))
* **ui:** don't treat suspended as headless. Closes
[#1626 ](https://github.com/folke/lazy.nvim/issues/1626 )
([2dfccd7
](2dfccd7b94
))
---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please ). See
[documentation](https://github.com/googleapis/release-please#release-please ).
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2024-07-08 07:52:50 +02:00
Folke Lemaitre
f0324defdd
fix(rocks): try building anyway even when prerequisits have not been met. (will likely fail)
2024-07-08 07:45:45 +02:00
Folke Lemaitre
2dfccd7b94
fix(ui): don't treat suspended as headless. Closes #1626
2024-07-08 07:28:02 +02:00
github-actions[bot]
a6daaf68a2
chore(main): release 11.10.3 ( #1625 )
...
🤖 I have created a release *beep* *boop*
---
##
[11.10.3](https://github.com/folke/lazy.nvim/compare/v11.10.2...v11.10.3 )
(2024-07-07)
### Bug Fixes
* **git:** local plugin fixes
([#1624 ](https://github.com/folke/lazy.nvim/issues/1624 ))
([72c0dc9
](72c0dc9462
))
---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please ). See
[documentation](https://github.com/googleapis/release-please#release-please ).
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2024-07-07 21:25:12 +02:00
Andre Toerien
72c0dc9462
fix(git): local plugin fixes ( #1624 )
...
## Description
As I described in
https://github.com/folke/lazy.nvim/pull/1512#issuecomment-2212474372 ,
this makes it so that local plugins will only show as needing updates if
the local branch is behind the upstream branch. This is done by checking
the output of the `git log` command, and only setting `plugin._.updates`
if the output is not empty.
This seems to solve my issue where local plugins with unpushed changes
always show as needing updates, but if there's a easier/better way of
doing it then please feel free to edit/close this. Or if you don't agree
that the current behaviour is a bug, then that's also fine - it's not a
big deal and I can easily just ignore the "updates available" notice.
I also came across a minor issue where the plugin diff view (press `d`)
compares the wrong commits for local plugins, because
[lua/lazy/view/init.lua](c771cf4928/lua/lazy/view/init.lua (L268)
)
always uses `get_target`. I fixed this by moving `get_local_target` into
`get_target` - I think this is simpler and more straightforward than the
alternative of adding a ternary everywhere `get_target` is called.
This second bugfix is a very small change, so I've just included it
here, but I'm happy to make a second PR if you'd like.
## Related Issue(s)
Related PR: #1512
2024-07-07 17:13:49 +02:00
github-actions[bot]
89b264ac1d
chore(main): release 11.10.2 ( #1621 )
...
🤖 I have created a release *beep* *boop*
---
##
[11.10.2](https://github.com/folke/lazy.nvim/compare/v11.10.1...v11.10.2 )
(2024-07-07)
### Bug Fixes
* **git:** only check for new commits for local plugins. Closes
[#1512 ](https://github.com/folke/lazy.nvim/issues/1512 )
([81d2bff
](81d2bfffdc
))
---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please ). See
[documentation](https://github.com/googleapis/release-please#release-please ).
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2024-07-07 08:44:37 +02:00
Folke Lemaitre
81d2bfffdc
fix(git): only check for new commits for local plugins. Closes #1512
2024-07-07 08:42:21 +02:00
github-actions[bot]
6ca23c15f6
chore(main): release 11.10.1 ( #1612 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2024-07-05 16:13:11 +02:00
Folke Lemaitre
baac551777
fix(lockfile): keep cond=false and enabed=false in lockfile. Fixes #1535 . Fixes #1606
2024-07-05 09:01:04 +02:00
github-actions[bot]
407e65c792
chore(main): release 11.10.0 ( #1609 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2024-07-04 21:01:57 +02:00
Folke Lemaitre
1225f1dc60
ci: dont enable local specs for minit
2024-07-04 18:00:59 +02:00
Folke Lemaitre
a17ad27435
build: better minit
2024-07-04 17:53:45 +02:00
Folke Lemaitre
923e1aa7a4
fix(plugin): local spec name
2024-07-04 16:16:39 +02:00
Folke Lemaitre
6fdd904ee4
fix(config): determine headless only during startup. Fixes #1608
2024-07-04 15:19:41 +02:00
Folke Lemaitre
0f2786bcc9
feat(profiling): merge VeryLazy stats and show startuptime in profile view
2024-07-04 15:17:10 +02:00
github-actions[bot]
cea5920abb
chore(main): release 11.9.2 ( #1595 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2024-07-03 12:11:21 +02:00