I\'m about to upgrade a SVN server from version 1.5.5 to 1.6.5 - all is fine with the actual upgrade, but I\'m a little confused about upgrading the actual repositories.
there is a quick step-by-step in the Subversion FAQ:
- Shut down svnserve, Apache, and anything else that might be accessing the repository.
svnadmin dump /path/to/repository > dumpfile.txt, using version X of svnadmin.mv /path/to/repository /path/to/saved-old-repository- Now upgrade to Subversion Y (i.e., build and install Y, replacing X).
svnadmin create /path/to/repository, using version Y of svnadmin.svnadmin load /path/to/repository < dumpfile.txt, again using version Y of svnadmin.- Copy over hook scripts, etc, from the old repository to the new one.
- Restart svnserve, Apache, etc.
more details on dumping and loading in the Subversion book. i assume you studied the subversion 1.6 release notes.