Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork268
feat: Lockfile support#1010
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
base:master
Are you sure you want to change the base?
Uh oh!
There was an error while loading.Please reload this page.
Conversation
d6cde5a toe9c523dCompare2642894 to54ff9eeCompareCouldn't this be achieved by the existing PR#849 ? |
@smhc: First off, I'm sorry for missing your PR for so long! I was too busy for Second:@EdenEast has laid out some of the justification for lockfiles over snapshots here:#1009 (comment). Personally, I find the arguments of avoiding the snapshot rollup on every start and having more diff-friendly output compelling, but I'll also admit that I do not use and am unlikely to ever use either snapshots or lockfiles, so I may be missing some important points. Perhaps there's a way we can combine the work from the two PRs? |
Also@EdenEast do you mind fixing the conflicts before I review? |
smhc commentedSep 5, 2022 • edited
Loading Uh oh!
There was an error while loading.Please reload this page.
edited
Uh oh!
There was an error while loading.Please reload this page.
The changes I made under my PR effectively resolve those issues. The snapshot file is loaded on startup and used as the 'commit' key for each plugin. Running 'upgrade' will ignore this key if it was set via the snapshot file. This allows upgrades even when a snapshot/lock file is in use. It doesn't support pretty-print, but I added that myself independently via a custom mechanism through jq. My changes aren't necessarily production quality, they were more just intended as a prototype to to explain how I think the snapshot stuff should work. I'm happy to throw away my PR. However my 2c is that the snapshot behaviour should just be fixed (similar to how my PR fixes it) instead of an additional lockfile feature. I think the way I modified the snapshot functionality leaves it backwards compatible with how people may have been using it anyway. If this PR improves the way clones are performed and has pretty printing that would be a useful addition. |
In the context of a package/plugin manager a lockfile is a known concept and is understandable for users. The snapshot feature only partially converts this aspect. Having an integrated lockfile feature instead of a side snapshot feature would make the most sense. In the current issue we are talking about how to preserve the functionalitty of the snapshots for people that still want to save them. People where mostly trying to use the snapshots as a lockfile anyways. Guessing that there will be a deprecation period for the snapshot feature.@wbthomason can speak more on how it would be migrated (I can see the feature depricated when this is merged and removed by the v2 rewrite for example). |
Converted this pr back to a draft while I implement the changes discussed in the feature request issue. Also have to update it with the recent PRs introduced. |
6136ac6 to865ef7eCompare@wbthomason I updated this pr with the latest changes from master and the discussion in the issue and should be ready for a first pass review. List of changes:
|
Here is a minimal_init.lua-- `minimal_init.lua` used for reproducible configuration-- Open with `nvim --clean -u minimal_init.lua`localis_windows=vim.fn.has'win32'==1localfunctionjoin(...)localsep=is_windowsand'\\'or'/'returntable.concat({... },sep)endlocalfunctionscript_path()localstr=debug.getinfo(2,'S').source:sub(2)returnstr:match'(.*/)'endlocalcwd=script_path()localroot_path=join(is_windowsandos.getenv'TEMP'or'/tmp','nvim')localpackage_root=join(root_path,'site','pack')localroot_plugin_path=join(package_root,'packer')localpacker_install_path=join(root_plugin_path,'start','packer.nvim')localpacker_compiled_path=join(root_path,'plugin','packer_compiled.lua')localpacker_lockfile_path=join(root_plugin_path,'start','packer.nvim','lockfile.lua')vim.opt.packpath=join(root_path,'site')vim.opt.runtimepath:prepend(root_path)vim.g.loaded_remote_plugins=1vim.opt.ignorecase=trueifvim.fn.isdirectory(packer_install_path)==0thenlocaldirname=vim.fs.dirname(packer_install_path)vim.fn.system {'mkdir','-p',dirname }vim.fn.system {'ln','-s',cwd,packer_install_path }vim.cmd.packadd'packer.nvim'endfunction_G.reload()forpack,_inpairs(package.loaded)doifvim.startswith('packer',pack)thenpackage.loaded[pack]=nilendendvim.cmd'source %'print'reloaded'endvim.keymap.set('n','<F1>',function()reload()end)vim.keymap.set('n','<F2>',function()vim.cmd'PackerUpdate'end)vim.keymap.set('n','<F3>',function()vim.cmd'PackerUpdate --nolockfile'end)localpacker=require'packer'localuse=packer.usepacker.init {compile_path=packer_compiled_path,package_root=package_root,log= {level='info'},lockfile= {enable=true,path=packer_lockfile_path,update_on_upgrade=true, },}use(cwd)use {'christoomey/vim-tmux-navigator'}use {'EdenEast/nightfox.nvim',as='nightfox',config=function()vim.cmd.colorscheme'nightfox'end,}use {'rcarriga/nvim-notify',config=function()vim.notify=require'notify'end,}use {'sonph/onehalf',rtp='vim',} |
EdenEast commentedOct 15, 2022 • edited
Loading Uh oh!
There was an error while loading.Please reload this page.
edited
Uh oh!
There was an error while loading.Please reload this page.
Reminder poke to@wbthomason for a review.😄 |
mutlusun commentedOct 24, 2022
Thank you for your work! I have tested your changes using my local config and so far everything works fine. The lockfile is created, taken into account when running Two small observations:
Again, thanks for your work! This makes my setup much easier (unfortunately working with different nvim version on different clients)! |
Thanks for testing the PR! As for the display, ya if a package is downgraded it does say that it has changed. I might be able to check how many commits behind the current commit is to origin. That might be something that would clarify the change. Would have to see how to show that in the display. |
This change introduces a way to pass optional arguments to packercommands. Optional arguments are denoted by `--`. There are two types ofoptional arguments: `option` and `flags`.Option contains `=` with the attached valueEx: --path=/some/pathFlags are standalone and set their value to true.Ex: --nolockfile ({ nolockfile = true })This is used to add `--path` argument to the `lockfile` command.There was an issue with a rebased change that was resolved.
If the status command is the first packer command run then the lockfilehas not been loaded yet. This would then end up not populating the`lockfile` key in the status command.
Co-authored-by: pynappo <43484729+pynappo@users.noreply.github.com>
iverberk commentedDec 8, 2022
I'd like to mention that I've been using this functionality without issues and look forward to seeing it merged. Nice work! |
I am not sure on the plan for this PR. This PR might be merged in as it is now into the current version of packer ()v1) or I will have to port this functionality to v2 of packer once the core of it is stabilized. I will keep this PR up to date with the master branch (v1). Anyone can use this branch until the feature is merged into either v1 or v2. |
iverberk commentedDec 9, 2022
@EdenEast thanks for keeping it up to date so that we can use this nice functionality. I'm quite happy with how things are setup with v1 and don't expect to benefit much from a rewrite (as an end-user), although I understand the motivation for it. |
@wbthomason could this pr be merged into packer. Version 2 will be some time before it is set as the main branch. This feature is done and can be used by users now. This feature will be added back into v2 when it is ready to be released. I know that there are a lot of people waiting for this feature to be added to packer. |
[packer.nvim](https://github.com/wbthomason/packer.nvim)has some anti-features and bugs that were a deal breaker for me:- Bootstrapping is not straightforward- Snapshots are fundamentally broken, i.e.if I removed a plugin I tried to restore a snapshot packer would not work.- Luarocks install doesn't work on macos- Packer compilation step is annoying and sometimes makes config files out of syncwith the current setup, which makes debugging and plugin development awkward[lazy.nvim](https://github.com/folke/lazy.nvim) doesn't have a compilation step,doesn't require [impatient.nvim](https://github.com/lewis6991/impatient.nvim) for speeding upmodules initialization, has a straightforward bootstrap process and in general has a better design than[packer.nvim](https://github.com/wbthomason/packer.nvim).SEE:wbthomason/packer.nvim#814SEE:wbthomason/packer.nvim#1010SEE:wbthomason/packer.nvim#180
[packer.nvim](https://github.com/wbthomason/packer.nvim)has some anti-features and bugs that were a deal breaker for me:- Bootstrapping is not straightforward- Snapshots are fundamentally broken, i.e.if I removed a plugin I tried to restore a snapshot packer would not work.- Luarocks install doesn't work on macos- Packer compilation step is annoying and sometimes makes config files out of syncwith the current setup, which makes debugging and plugin development awkward[lazy.nvim](https://github.com/folke/lazy.nvim) doesn't have a compilation step,doesn't require [impatient.nvim](https://github.com/lewis6991/impatient.nvim) for speeding upmodules initialization, has a straightforward bootstrap process and in general has a better design than[packer.nvim](https://github.com/wbthomason/packer.nvim).SEE:wbthomason/packer.nvim#814SEE:wbthomason/packer.nvim#1010SEE:wbthomason/packer.nvim#180

Uh oh!
There was an error while loading.Please reload this page.
Implementation of feature request#1009.
Resolves:#1009
Items from issue discussion: