Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Subversive New and Noteworthy"

Line 1: Line 1:
'''Also see the New & Noteworthy for:''' [[Subversive New and Noteworthy for Juno|Juno]], [[Subversive New and Noteworthy for Indigo|Indigo]], [[Subversive New and Noteworthy for Helios|Helios]], [[Subversive New and Noteworthy for Galileo|Galileo]]
+
'''Also see the New & Noteworthy for:''' [[Subversive New and Noteworthy for Kepler|Kepler]], [[Subversive New and Noteworthy for Juno|Juno]], [[Subversive New and Noteworthy for Indigo|Indigo]], [[Subversive New and Noteworthy for Helios|Helios]], [[Subversive New and Noteworthy for Galileo|Galileo]]
  
 
== Introduction  ==
 
== Introduction  ==
  
This release's main goal was plug-in stability improvement and we've fixed more than 60 different issues. On the other hand we've implemented a set of features that should benefit those who uses SVN in their everyday work and those who uses Subversive plug-in in their products.  
+
In this release we spent a great deal of effort in order to improve plug-in's stability and usability, but the main point was to rework SVN integration API, introduce SVN 1.8 support and provide access to repository administration API.  
  
== Latest SVN client libraries included ==
+
== SVN 1.8 support ==
  
Bugs [https://bugs.eclipse.org/bugs/show_bug.cgi?id=406738 406738] and [https://bugs.eclipse.org/bugs/show_bug.cgi?id=406737 406737]. There were many issues fixed recently in the SVN support libraries and so, it's reasonable to update Subversive SVN Connectors with the most recent ones.  
+
Bugs [https://bugs.eclipse.org/bugs/show_bug.cgi?id=416782 416782], [https://bugs.eclipse.org/bugs/show_bug.cgi?id=416783 416783], [https://bugs.eclipse.org/bugs/show_bug.cgi?id=416784 416784], [https://bugs.eclipse.org/bugs/show_bug.cgi?id=416796 416796], [https://bugs.eclipse.org/bugs/show_bug.cgi?id=417768 417768] and [https://bugs.eclipse.org/bugs/show_bug.cgi?id=423701 423701]. SVN 1.8 support is a feature that is widely requested by community, since there are not just some new features were introduced, but the working copy format was made incompatible with the previous one yet again, which in turn breaks your work when you're trying to mix SVN 1.7 and SVN 1.8 clients usage.  
  
== Win64 platform support ==
+
== Rework of SVN integration API ==
  
Bug [https://bugs.eclipse.org/bugs/show_bug.cgi?id=376317 376317]. While installing JavaHL 64-binaries is easy enough task on unix-platform, that is not so for Win64 platform. Now there is a way to install them from the connectors update site or use those of the another distribution (SlikSVN, for example).
+
Since there was a long history of changes in SVN integration API dictated by the changes in SVN functionality, there were inevitably a few of odd things that could make its usage somewhat annoying. So, while working on bug [https://bugs.eclipse.org/bugs/show_bug.cgi?id=417768 417768] we've made a lot of changes in order to make SVN API look more uniform, easy to understand and use.
 +
What was changed:
 +
* ISVNConnector.Depth was moved level up and renamed to SVNDepth
 +
* repository administration-related APIs were moved to the separate interface ISVNManager
 +
* ISVNConnector.commit now returns revisions of successfull commits through ISVNProgressMonitor
 +
* in order to make naming conventions uniform, some methods were renamed: doImport -> importTo, doExport -> exportTo, logEntries -> listHistoryLog, info -> getInfo, list -> listEntries, getProperties -> listProperties, getRevisionProperties -> listRevisionProperties
 +
* some methods were renamed/deleted due to changes in SVN API in order to better reflect their functions: removeProperty and setProperty were replaced with setPropertyLocal and setPropertyRemote, remove was split to removeRemote and removeLocal, copy was split to copyRemote and copyLocal, move was split to moveRemote and moveLocal, merge, diff and diffStatus methods that were receiving two different URLs as their arguments were renamed to mergeTwo, diffTwo and diffStatusTwo accordingly.
 +
* SVNNotification.NodeLock.isKnownStatus was renamed to SVNNotification.NodeLock.isStatusKnown
 +
* SVNNotification.NodeStatus.isKnownStatus was renamed to SVNNotification.NodeStatus.isStatusKnown
 +
* SVNNotification.PerformedAction.isActionKnown was renamed to SVNNotification.PerformedAction.isKnownAction
  
== Plug-in integration API improvements ==
+
== SVN repository management API support  ==
  
Bugs [https://bugs.eclipse.org/bugs/show_bug.cgi?id=306806 306806],  [https://bugs.eclipse.org/bugs/show_bug.cgi?id=400575 400575] and [https://bugs.eclipse.org/bugs/show_bug.cgi?id=389933 389933]. There were important issues that needed our attention in order to simplify integrating our plug-in into other tools. That's why we've made improvements in the plug-in's integration API. Now there is a an extension point for declaring custom properties, post-commit hook's messages processing API, and the way to flexibly override SVN Core plug-in's configuration options provided by SVN UI or any other plug-in.
+
Bug [https://bugs.eclipse.org/bugs/show_bug.cgi?id=417769 417769]. For a long time we've been using one of repository management functions in order to support UI functionality (see bug [https://bugs.eclipse.org/bugs/show_bug.cgi?id=333202 333202]). So, is there a reason why we shouldn't provide access to all the other features? Definitely not! Now there is ISVNManager interface which provides support for all the repository management functions.
  
== Usability improvements ==
+
== Latest SVN client libraries included ==
  
Bug [https://bugs.eclipse.org/bugs/show_bug.cgi?id=390467 390467]. We've implemented a human-readable numeric ordering of branches' and tags' names which allows to sort them naturally (1.1 -> 1.2 -> ... -> 1.10 instead of 1.1 -> 1.10 -> 1.2 -> ...) in difference to previously used string-based comparision (special thanks to Claudio Weiler and Jörg Thönnes).
+
Bugs [https://bugs.eclipse.org/bugs/show_bug.cgi?id=434041 434041], [https://bugs.eclipse.org/bugs/show_bug.cgi?id=434042 434042], [https://bugs.eclipse.org/bugs/show_bug.cgi?id=430498 430498] and [https://bugs.eclipse.org/bugs/show_bug.cgi?id=430499 430499]. There were many issues fixed recently in the SVN support libraries and so, it's reasonable to update Subversive SVN Connectors with the most recent ones.  
  
Bugs [https://bugs.eclipse.org/bugs/show_bug.cgi?id=296239 296239] and [https://bugs.eclipse.org/bugs/show_bug.cgi?id=370254 370254]. There are some changes to clear misunderstandings on how the resource selection button works in Add/Commit/Replace dialogs, also there is an improvement with the default start and stop revisions of the SVN Annotate function.
+
== Usability improvements ==
  
Bug [https://bugs.eclipse.org/bugs/show_bug.cgi?id=354843 354843]. SVN 1.7 API allows to handle post-commit hook's meassages nicely, so now Subversive will display a message, returned by post-commit hook (special thanks to Martin Kutter).
+
Bug [https://bugs.eclipse.org/bugs/show_bug.cgi?id=419850 419850]. Since SVN provides versioning not just for the data in files but for the directory structure itself too, there is such a state as "replaced file" - it happens when you not just change the file content, but replace it as a whole. It is nice to know that a replacement took place, but it may be not so nice when you understand that you wanted to to change the file content by overwriting it, but instead lost the history of all the changes of the original file. So, while it is important to preserve SVN functionality there are some usability issues that should be solved and it is the reason why we've implemented the "Treat replacement as Edit" option which is present in commit dialog and preferences and allows you to override the default SVN behaviour.
  
Bug [https://bugs.eclipse.org/bugs/show_bug.cgi?id=401612 401612]. Also now Subversive strictly follows guidelines on which resource type the property could be set: a file, a folder, both or a revision.
+
Bug [https://bugs.eclipse.org/bugs/show_bug.cgi?id=427577 427577]. We've always concentrated on protecting users from entering invalid data were it is possible, so that there won't be any misunderstanding on how the SVN works and so on. But there are always exceptions from the general rule. Many users have found a way to benefit from a little missuse of svn:ignore property. When you're using an invalid character at the start of the line the whole line is ignored by SVN client and so, you may use it as a comment. That is why we've added the option "Allow svn:ignore's mask validation".
  
 
[[Category:Subversive]]
 
[[Category:Subversive]]

Revision as of 08:58, 28 May 2014

Also see the New & Noteworthy for: Kepler, Juno, Indigo, Helios, Galileo

Introduction

In this release we spent a great deal of effort in order to improve plug-in's stability and usability, but the main point was to rework SVN integration API, introduce SVN 1.8 support and provide access to repository administration API.

SVN 1.8 support

Bugs 416782, 416783, 416784, 416796, 417768 and 423701. SVN 1.8 support is a feature that is widely requested by community, since there are not just some new features were introduced, but the working copy format was made incompatible with the previous one yet again, which in turn breaks your work when you're trying to mix SVN 1.7 and SVN 1.8 clients usage.

Rework of SVN integration API

Since there was a long history of changes in SVN integration API dictated by the changes in SVN functionality, there were inevitably a few of odd things that could make its usage somewhat annoying. So, while working on bug 417768 we've made a lot of changes in order to make SVN API look more uniform, easy to understand and use. What was changed:

  • ISVNConnector.Depth was moved level up and renamed to SVNDepth
  • repository administration-related APIs were moved to the separate interface ISVNManager
  • ISVNConnector.commit now returns revisions of successfull commits through ISVNProgressMonitor
  • in order to make naming conventions uniform, some methods were renamed: doImport -> importTo, doExport -> exportTo, logEntries -> listHistoryLog, info -> getInfo, list -> listEntries, getProperties -> listProperties, getRevisionProperties -> listRevisionProperties
  • some methods were renamed/deleted due to changes in SVN API in order to better reflect their functions: removeProperty and setProperty were replaced with setPropertyLocal and setPropertyRemote, remove was split to removeRemote and removeLocal, copy was split to copyRemote and copyLocal, move was split to moveRemote and moveLocal, merge, diff and diffStatus methods that were receiving two different URLs as their arguments were renamed to mergeTwo, diffTwo and diffStatusTwo accordingly.
  • SVNNotification.NodeLock.isKnownStatus was renamed to SVNNotification.NodeLock.isStatusKnown
  • SVNNotification.NodeStatus.isKnownStatus was renamed to SVNNotification.NodeStatus.isStatusKnown
  • SVNNotification.PerformedAction.isActionKnown was renamed to SVNNotification.PerformedAction.isKnownAction

SVN repository management API support

Bug 417769. For a long time we've been using one of repository management functions in order to support UI functionality (see bug 333202). So, is there a reason why we shouldn't provide access to all the other features? Definitely not! Now there is ISVNManager interface which provides support for all the repository management functions.

Latest SVN client libraries included

Bugs 434041, 434042, 430498 and 430499. There were many issues fixed recently in the SVN support libraries and so, it's reasonable to update Subversive SVN Connectors with the most recent ones.

Usability improvements

Bug 419850. Since SVN provides versioning not just for the data in files but for the directory structure itself too, there is such a state as "replaced file" - it happens when you not just change the file content, but replace it as a whole. It is nice to know that a replacement took place, but it may be not so nice when you understand that you wanted to to change the file content by overwriting it, but instead lost the history of all the changes of the original file. So, while it is important to preserve SVN functionality there are some usability issues that should be solved and it is the reason why we've implemented the "Treat replacement as Edit" option which is present in commit dialog and preferences and allows you to override the default SVN behaviour.

Bug 427577. We've always concentrated on protecting users from entering invalid data were it is possible, so that there won't be any misunderstanding on how the SVN works and so on. But there are always exceptions from the general rule. Many users have found a way to benefit from a little missuse of svn:ignore property. When you're using an invalid character at the start of the line the whole line is ignored by SVN client and so, you may use it as a comment. That is why we've added the option "Allow svn:ignore's mask validation".

Back to the top