Since we're on a major migration process of this website, some component documents here are out of sync right now. In the meantime you may want to look at the early version of the new website
https://camel.apache.org/staging/
We would very much like to receive any feedback on the new site, please join the discussion on the Camel user mailing list.
The Camel 2.x branches are here: What should be mergedThe idea is to be able to apply bug fixes and backwards compatible improvements and new features to our Camel maintenance branches (for example 2.10.x and 2.9.x) while leaving NON backwards compatible changes on the trunk. The idea is to give our users the best experience possible on any supported branch as long we have 100% backward compatibility on patch versions. What should be considered as NOT backwards compatible
Changes which SHOULD apply to maintenance branches
Changes which MUST NOT be applied to maintenance branches
Changes which MAY be applied to maintenance branchesFor all the changes in this category we have to be especially carefully to not break backwards compatibly. Again, the goal is to be 100% backward compatibility on patch versions. Take extra time to review and test your change. Even better, send a [HEADS UP] on the dev@ mailing list and ask for assistance/review.
Who should do the mergeIt is preferred that the committer who applied the change to trunk also merge it back to the maintenance branches. He knows best whether this fix should go into the maintenance branche(s) or not and he can also make sure the WIKI pages are up to date. However, other people may also merge fixes back if they require it there. In that case, those people should pay extra attention to make sure the changes meet the above criteria. How to mergeUsing svnmerge.py scriptI've set up svnmerge.py to track commits from the trunk to the 2.x branches. Example workflow: 1. You just committed a fix to the trunk in revision 123456 and think that it would be back ported to Camel 2.8.x users 2. Check out the branch svn co https://svn.apache.org/repos/asf/camel/branches/camel-2.8.x camel-2.8.x 3. In camel-2.8.x directory, you can get a list of commits available from the trunk svnmerge.py avail 4. Merge your commit by running svnmerge.py merge -r 123456 5. Resolve any conflicts in the merge 6. Commit it by running svn ci -F svnmerge-commit-message.txt 7. If you have a JIRA associated with this fix, make sure it says fix for 2.8.x. Trouble with svnmerge.pyIf you have trouble with the svnmerge.py file such as Claus Ibsen had, then he attached an older svnmerge.py file, to this wiki page that works. Using DoMerges toolIf you look in: there is a It lists all the outstanding commits that haven't been reviewed, allows you to merge commits individually, block commits, show the diffs, etc. To run the file do, from the directory with the branch. java DoMerges You need There is a compiled .class of the DoMerges attached to this wiki page you can download. However its easy to compile javac DoMerges.java Using gitIf you already use git-svn, you could consider using the great git merge capabilities. Create a local branch from the remote tracking branch (e.g. camel-2.8.x) git checkout -b camel-2.8.x remotes/camel-2.8.x or switch into the existing branch git checkout camel-2.8.x To merge one revision (e.g. 1176050) into this branch, run git cherry-pick 1176050 This will merge and commit the changes into your local git repository. Combining multiple revisions If you have to combine multiple revisions into one commit, run git cherry-pick -n <revision> for each revision (the -n options prevents the commit after the merge). Afterwards you have to run git commit -a -m "<commit message>" to commit all the changes with one commit into your local git repository. Run git svn dcommit to push your local changes into the Apache SVN repository. If you have a JIRA associated with this fix, make sure it says fix for 2.8.x. Git Tooling There is a number of Git Graphical Tools which can be used as well for backporting fixes. For example GitX or GitTower for Mac users. Closing github PRsThe PRs at github is only automatic closed if the commit log has words like closes, fixes etc. And therefore we often ask the author of the PR to close the PR after it has been merged, or rejected. However the author may not see the notification or he/she does not react. So the Camel team can force close the PRs using an empty git message: git commit --allow-empty -m "This closes #xxxx" You can then include multiple PRs etc. This closes #123. This closes #456.
|