We have SVN repository under Subversion 1.5 server.
I need to move this repository to another Subversion 1.7 server.
As far as I understand there are 3 ways:
Just move repository to new server.
Create dump of a SVN 1.5 repository and import the dump to new 1.7 server with the so-called dump-load cycle.
svnadmin dump
svnadmin load
Move repository to new server and then upgrade it to the latest supported schema version:
svnadmin upgrade
Is it wrong just to move folder of my repository to the new 1.7 server from 1.5 server?
Could there be any problems? If yes - what problems?