-
Hello, So the 1st tag where I see the same thing using CLI: $ git tag --contains bf70c9f4c | sort -V
v6.9.0.202402211805-m3
v6.9.0.202402281855-rc1
v6.9.0.202403050045-r
v6.9.0.202403050737-r
v6.10.0.202405212237-m3
v6.10.0.202405282244-rc1
v6.10.0.202405290101-rc1
v6.10.0.202406032110-r
v6.10.0.202406032230-r But when I check branches, I can see $ git branch -a --contains bf70c9f4c | sort -V
remotes/origin/HEAD -> origin/master
remotes/origin/master
remotes/origin/master%private
remotes/origin/next
remotes/origin/stable-6.7
remotes/origin/stable-6.8
remotes/origin/stable-6.9
remotes/origin/stable-6.10
* master I'm confused. Which one is valid? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Beta Was this translation helpful? Give feedback.
-
Most bug fixes are shipped in the next regular release with the next minor or major version. Only if there's a severe problem or security issue we create a service release on older releases. |
Beta Was this translation helpful? Give feedback.
This is both correct, looking at the version graph around that commit you can see that the commit was done on the stable-6.7 branch but no 6.7 version was tagged after this merge. The first tag after the commit was submitted is v6.9.0.202402211805-m3.
Here the version graph as displayed in EGit: