Why is 2.8.8 in https://www.haproxy.org/download/2.8/src/CHANGELOG but not https://github.com/haproxy/haproxy/blob/master/CHANGELOG?
The github mirror tracks the development branch only; stable branches are not mirrored on github, but you can see them in the origin git tree:
Thank you so much for clarifying that!
I’m still a tad bit confused though, I see recent commits from today on master
on the GitHub mirror here Commits · haproxy/haproxy · GitHub. Can you help clarify a bit more for me?
Also, I just see a next
branch and not a dev
or develop
or development
branch on GH mirror.
The upstream origin haproxy development tree is in:
http://git.haproxy.org/git/haproxy.git/
it can be accessed in a browser via Repositories - haproxy-2.9.git/summary
It contains only the development source code, and it is in master branch (I said development branch, what I meant was that the development is happening in this tree, in the master branch).
This is the git repository that is mirrored to github.
It does not contain any stable trees or branches, those are in dedicated git repositories, as mentioned above.
Thank you Lukas!