move OptionOwner out to leaves
[tfs.git] / ChangeLog
blob1d1e22571e6cdd76f23d3bf4c6e7af905f08c9d6
1 2007-07-03  Joel Reed  <joelwreed@comcast.com>
3         * v0.5.0 release notes
4         
5         # NEW: support for tf add /recursive <path>
6         # NEW: --disable-magic option for windows/cygwin users
7         # BUGFIX: don't try to upload new directories on checkin, only files
8         # BUGFIX: Command.VerifiedFullPaths should accept directories too
9         # BUGFIX: shell wrapper tf should quote $@ so /C:"This is my comment" 
10         will work
11         # BUGFIX: uninstall man page and pkg-config file too
12         
13 2007-06-18  Joel Reed  <joelwreed@gmail.com>
15         * v0.4.7 release notes
17         # Implement label and unlabel commands
18         # Add "cache" command which shows workspace cache settings
19         # Add /added, /modified, /deleted flags to Online command to
20         show just additions, just modifications, or just deletions 
21         respectively. These flags may be combined. With no flags, all
22         changes are incorporated.
23         # Add tf diff /modified option to show locally modified files as a
24         unified diff. Can be used to review changes before using the online
25         command.
26         # Add File.Excludes config option. Use in "online" command.
27         # Add Online.Recursive setting. Make default non-recursive to match
28         standard MS client.
29         # Add tf ls-files /writable option (mainly for windows users)
30         # BUGFIX: Fixed multiple issues related to running tf4mono on windows.
31         these include deleting read-only files and deleting files still open,
32         which succeed on *nix platforms, but not on windows.
33         # BUGFIX: Online command on windows. Replace server item path separator 
34         with platform path separator.
35         # BUGFIX: Replace windows path separators in diff headers with nix path 
36         separator so /usr/bin/patch is happy
37         # BUGFIX: Show deleted files in tf status as state "Deleted" not "544"
38         # BUGFIX: Compare file hashes when looking for modifications in tf online 
39         command. Previously just looked for files marked writable.
40         
41 2007-06-08  Joel Reed  <joelwreed@gmail.com>
43         * v0.4.6 release notes:
45         # Add Get.Recursive and History.DefaultToCwd config options 
46         for those looking to override the less helpful defaults of the
47         standard client
48         # Add Checkout.Latest option to ensure checkout of latest version 
49         of file rather than workspace version
50         # Change /usr/bin/cli to /usr/bin/mono in tf.sh
51         # BUGFIX: several diff fixes, including off by one error for files
52         not ending in "\n", new file diff format fixes, and B file context
53         calculation fixes
54         # BUGFIX: send local version updates to server after pending deletes
55         # BUGFIX: trailing slash on path confused online command 
56         # BUGFIX: Online, TreeClean, and ls-files command should pull item
57         list based on WorkspaceVersion not LatestVersion.
58         # BUGFIX: dont print blank lines for directories and new files for 
59         ls-files /old subcommand.
60         # BUGFIX: when upload new/changed files, send correct file length
61         # BUGFIX: add support for local paths to dir subcommand, and output
62         listing in a more unix-y format (which is, imho, far more useful)
63         # HELP: Warn that invalid options can be mistaken for paths.
64         # HELP: Add more CodePlex usage examples to README
65         
66 2007-04-27  Joel Reed  <joelwreed@gmail.com>
67         
68         * v0.4.4 release notes:
69         
70         NOTE: in this release VersionControl.config is now stored in ~/.tf/Cache/,
71         instead of ~/.tf/ - this change was made for consistency with the 
72         MS versions of the TFS assemblies. If you've used the TF tool previously,
73         just move VersionControl.config from ~/.tf/ to ~/.tf/Cache/
74         
75         # add basic version of TF Power Tool 1.1 "online" command to tf.exe,
76           includes /preview mode.
77         # add basic version of TF Power Tool 1.2 "treeclean" command to tf.exe,
78           includes /preview mode.
79         # add changeset command 
80         # add diff command with support for diff against server latest,
81           diff of pending changes, diff view of any changeset.
82         # add support for response file processing and multiple commands 
83           on a single command line, please see documentation for usage    
84         # add /format:detailed option to history command
85         # add basic "help" command
86         # add config command with options "Checkin.Validate", "Credentials.Save",
87           and "History.Recursive"
88         
89         # read server setings from cache file, don't need /server 
90           quite as much now
91         # load/store credentials from gnome-keyring if available, prompt for
92           password when not supplied.
93         
94         # undoing a delete restores the file now
95         # numerous API additions including: WorkspaceVersionSpec, IDiffItem, 
96           DiffItemVersionedFile, DiffOutputType, DiffOptionFlags, DiffOptions, 
97           Conflict*, ExceptionEvent* types
98         # add DisplayString property for all VersionSpec classes and test cases
99         # better man page
100         # better error messages
102         # BUGFIX: when a file is checked in mark it should be marked read-only
103         # BUGFIX: do case insensitive string comparisons in ls-files and
104         online commands on windows, and use Path.DirectorySeparatorChar
105         # BUGFIX: GetLocalWorkspaceInfo should find longest matching path,
106         not first matching path
107         # BUGFIX: tf get should use CWD only to find workspace
108         # BUGFIX: properly handle checkin of files marked read-only
109         # BUGFIX: on windows find correct TFS VersionControl.config file
110         
111 2007-04-22  Joel Reed  <joelwreed@gmail.com>
113         * v0.4.2 release: add support for querying ExtendedItems. Implement
114         tf.exe property command which uses ExtendedItems. Add GettingEventHandler,
115         PendingChangeEventHandler, ProcessingChangeEventHandler, 
116         and OperationStatus.
118         tf.exe now compiles/runs on MS CLR. Many bug fixes were made to APIs,
119         and client utility while testing on Windows.
121         tf.exe supports two new commands: "ls-files" and "properties".
122         The "status" command output was cleaned up. 
124         Added debian packages via "make dist"
125         
126         Started MonoDevelop plugin based on Subversion plugin. Work in progress.
127         Lots of code cleanups and bug fixes. 
129         Improved handling of ~/.tf/VersionControl.config cache.
131 2007-03-28 joel reed  <joelwreed@gmail.com>
133         * v0.4 release: support for add, delete, rename, edit, and 
134         history, and checkin commands. added file permissions handling
135         using libmagic. show changeset id from server. doc updates.
136         multiple API additions and bug fixes.
137         
138 2007-03-10 joel reed  <joelwreed@gmail.com>
140         * v0.3 release: much better support for tracking a repository,
141         including new files, deleted files, and renames. A preliminary
142         man page has been added, and utility commands like add, delete, 
143         checkout, and rename now modify the state of the server. The 
144         checkin command has a mysterious bug which prevents these 
145         modifications from being added back to the repository, 
146         but that should be cleaned up soon.
148 2006-12-29 joel reed  <joelwreed@gmail.com>
150         * v0.1 release: dir, labels, workspaces, view,
151         and permissions commands have initial implementations
152         
153 2006-12-28 joel reed  <joelwreed@gmail.com>
155         * initial setup of separate TFS tree