2018-08-04 18:17:08 -07:00
|
|
|
Maintaining the Neovim project
|
|
|
|
==============================
|
|
|
|
|
|
|
|
Notes on maintaining the Neovim project.
|
|
|
|
|
2019-01-10 17:20:15 -07:00
|
|
|
General guidelines
|
|
|
|
------------------
|
|
|
|
|
|
|
|
* Decide by cost-benefit
|
|
|
|
* Write down what was decided
|
|
|
|
* Constraints are good
|
|
|
|
* Use automation to solve problems
|
2021-09-14 10:20:33 -07:00
|
|
|
* Never break the API... but sometimes break the UI
|
2019-01-10 17:20:15 -07:00
|
|
|
|
2019-08-25 16:00:52 -07:00
|
|
|
Ticket triage
|
2018-08-04 18:17:08 -07:00
|
|
|
-------------
|
|
|
|
|
2021-09-14 10:20:33 -07:00
|
|
|
In practice we haven't found a way to forecast more precisely than "next" and
|
|
|
|
"after next". So there are usually one or two (at most) planned milestones:
|
2018-08-04 18:17:08 -07:00
|
|
|
|
|
|
|
- Next bugfix-release (1.0.x)
|
|
|
|
- Next feature-release (1.x.0)
|
|
|
|
|
|
|
|
The forecasting problem might be solved with an explicit priority system (like
|
|
|
|
Bram's todo.txt). Meanwhile the Neovim priority system is defined by:
|
|
|
|
|
2021-09-14 10:20:33 -07:00
|
|
|
- PRs nearing completion.
|
2019-01-10 17:20:15 -07:00
|
|
|
- Issue labels. E.g. the `+plan` label increases the ticket's priority merely
|
|
|
|
for having a plan written down: it is _closer to completion_ than tickets
|
|
|
|
without a plan.
|
2018-08-04 18:17:08 -07:00
|
|
|
- Comment activity or new information.
|
|
|
|
|
2021-09-14 10:20:33 -07:00
|
|
|
Anything that isn't in the next milestone, and doesn't have a finished PR—is
|
2018-08-04 18:17:08 -07:00
|
|
|
just not something you care very much about, by construction. Post-release you
|
|
|
|
can review open issues, but chances are your next milestone is already getting
|
2021-09-14 10:20:33 -07:00
|
|
|
full... :)
|
2018-08-04 18:17:08 -07:00
|
|
|
|
2019-08-25 16:00:52 -07:00
|
|
|
Release policy
|
2018-08-04 18:17:08 -07:00
|
|
|
--------------
|
|
|
|
|
2019-01-10 17:20:15 -07:00
|
|
|
Release "often", but not "early".
|
2018-08-04 18:17:08 -07:00
|
|
|
|
2019-01-10 17:20:15 -07:00
|
|
|
The (unreleased) `master` branch is the "early" channel; it should not be
|
2019-04-27 09:25:55 -07:00
|
|
|
released if it's not stable. High-risk changes may be merged to `master` if
|
2019-08-25 16:00:52 -07:00
|
|
|
the next release is not imminent.
|
2018-08-04 18:17:08 -07:00
|
|
|
|
2019-04-27 09:25:55 -07:00
|
|
|
For maintenance releases, create a `release-x.y` branch. If the current release
|
|
|
|
has a major bug:
|
2018-08-04 18:17:08 -07:00
|
|
|
|
2019-01-10 17:20:15 -07:00
|
|
|
1. Fix the bug on `master`.
|
|
|
|
2. Cherry-pick the fix to `release-x.y`.
|
2019-04-27 09:25:55 -07:00
|
|
|
3. Cut a release from `release-x.y`.
|
|
|
|
- Run `./scripts/release.sh`
|
|
|
|
- Update (force-push) the remote `stable` tag.
|
2022-04-15 03:35:06 -07:00
|
|
|
- The [nightly job](https://github.com/neovim/neovim/blob/master/.github/workflows/release.yml#L4)
|
2019-08-25 16:00:52 -07:00
|
|
|
will update the release assets based on the `stable` tag.
|
|
|
|
|
2021-10-26 08:45:15 -07:00
|
|
|
The neovim repository includes a backport [github action](https://github.com/zeebe-io/backport-action).
|
|
|
|
In order to trigger the action, a PR must be labeled with a label matching the
|
2022-04-23 14:26:42 -07:00
|
|
|
form `backport release-0.X`. Note, the PR must have a description in the issue body,
|
|
|
|
or the backport will fail.
|
2021-10-26 08:45:15 -07:00
|
|
|
|
2021-09-26 17:24:20 -07:00
|
|
|
Third-party dependencies
|
|
|
|
--------------
|
|
|
|
|
|
|
|
These "bundled" dependencies can be updated by bumping their versions in `third-party/CMakeLists.txt`:
|
|
|
|
- [Lua](https://www.lua.org/download.html)
|
|
|
|
- [LuaJIT](https://github.com/LuaJIT/LuaJIT)
|
|
|
|
- [Luv](https://github.com/luvit/luv)
|
|
|
|
- [libtermkey](https://github.com/neovim/libtermkey)
|
|
|
|
- [libuv](https://github.com/libuv/libuv)
|
|
|
|
- [libvterm](http://www.leonerd.org.uk/code/libvterm/)
|
|
|
|
- [lua-compat](https://github.com/keplerproject/lua-compat-5.3)
|
|
|
|
- [tree-sitter](https://github.com/tree-sitter/tree-sitter)
|
|
|
|
|
2022-04-07 08:41:48 -07:00
|
|
|
`scripts/bump-dep.sh` is a script that can automate this process for `LuaJIT`, `Luv`, `libuv` & `tree-sitter`. See usage guide:
|
|
|
|
- Run `./scripts/bump-deps.sh --dep Luv --version 1.43.0-0` to update a dependency.
|
|
|
|
See `./scripts/bump-deps.sh -h` for more detailed usage
|
|
|
|
- Run `./scripts/bump-deps.sh --pr` to create a pr
|
|
|
|
To generate the default PR title and body, the script uses the most recent commit (not in `master`) with prefix `build(deps): `
|
|
|
|
|
2021-09-26 17:24:20 -07:00
|
|
|
These dependencies are "vendored" (inlined), we need to update the sources manually:
|
|
|
|
- [libmpack](https://github.com/libmpack/libmpack)
|
|
|
|
- [xdiff](https://github.com/git/git/tree/master/xdiff)
|
|
|
|
- [lua-cjson](https://github.com/openresty/lua-cjson)
|
|
|
|
- [Klib](https://github.com/attractivechaos/klib)
|
2022-04-21 07:23:10 -07:00
|
|
|
- [inspect.lua](https://github.com/kikito/inspect.lua)
|
2021-09-26 17:24:20 -07:00
|
|
|
|
|
|
|
We also maintain some forks, particularly for Windows, if we are waiting on upstream changes:
|
|
|
|
https://github.com/neovim/neovim/wiki/Deps
|
|
|
|
|
2019-08-25 16:00:52 -07:00
|
|
|
See also
|
|
|
|
--------
|
2018-08-04 18:17:08 -07:00
|
|
|
|
2019-08-25 16:00:52 -07:00
|
|
|
- https://github.com/neovim/neovim/issues/862
|
|
|
|
- https://github.com/git/git/blob/master/Documentation/howto/maintain-git.txt
|