/tools/Ruby/lib/ruby/gems/1.8/gems/rake-0.9.2/CHANGES

http://github.com/agross/netopenspace · #! · 509 lines · 368 code · 141 blank · 0 comment · 0 complexity · 86d6dbd055cae2ac83405969f2e56e4b MD5 · raw file

  1. = Rake Changelog
  2. == Version 0.9.1
  3. * Added deprecation warnings to the Rake DSL methods.
  4. == Version 0.9.0
  5. * *Incompatible* *change*: Rake DSL commands ('task', 'file', etc.) are
  6. no longer private methods in Object. If you need to call 'task :xzy' inside
  7. your class, include Rake::DSL into the class. The DSL is still available at
  8. the top level scope (via the top level object which extends Rake::DSL).
  9. * Rake now warns when the deprecated :needs syntax used.
  10. * Rake history is now UTF-8 encoded.
  11. * Rake now uses case-insensitive comparisons to find the Rakefile on Windows.
  12. Based on patch by Roger Pack.
  13. * Rake now requires (instead of loads) files in the test task. Patch by Cezary
  14. Baginski.
  15. * Fixed typos. Patches by Sean Scot August Moon and R.T. Lechow.
  16. * Rake now prints the Rakefile directory only when it's different from the
  17. current directory. Patch by Alex Chaffee.
  18. * Improved rakefile_location discovery on Windows. Patch by James Tucker.
  19. * Rake now recognizes "Windows Server" as a windows system. Patch by Matthias
  20. LĂźdtke
  21. * Rake::RDocTask is deprecated. Use RDoc::Task from RDoc 2.4.2+ (require
  22. 'rdoc/task')
  23. * Rake::GemPackageTask is deprecated. Use Gem::PackageTask (require
  24. 'rubygems/package_task')
  25. * Rake now outputs various messages to $stderr instead of $stdout.
  26. * Rake no longer emits warnings for Config. Patch by Santiago Pastorino.
  27. * Split rake.rb into individual files.
  28. * Support for the --where (-W) flag for showing where a task is defined.
  29. * Fixed quoting in test task.
  30. (http://onestepback.org/redmine/issues/show/44,
  31. http://www.pivotaltracker.com/story/show/1223138)
  32. * Fixed the silent option parsing problem.
  33. (http://onestepback.org/redmine/issues/show/47)
  34. * Fixed :verbose=>false flag on sh and ruby commands.
  35. * Rake command line options may be given by default in a RAKEOPT
  36. environment variable.
  37. * Errors in Rake will now display the task invocation chain in effect
  38. at the time of the error.
  39. * Accepted change by warnickr to not expand test patterns in shell
  40. (allowing more files in the test suite).
  41. * Fixed that file tasks did not perform prereq lookups in scope
  42. (Redmine #57).
  43. == Version 0.8.7
  44. * Fixed EXEEXT for JRuby on windows.
  45. == Version 0.8.6
  46. * Minor fixes to the RDoc generation (removed dependency on darkfish
  47. and removed inline source option).
  48. == PreVersion 0.8.6
  49. * Now allow # comments to comment a task definition.
  50. == Version 0.8.5
  51. * Better support for the system command on Windows.
  52. == Version 0.8.4
  53. * Preserve case when locating rakefiles (patch from James
  54. M. Lawrence/quix)
  55. * Better support for windows paths in the test task (patch from Simon
  56. Chiang/bahuvrihi)
  57. * Windows system dir search order is now: HOME, HOMEDRIVE + HOMEPATH,
  58. APPDATA, USERPROFILE (patch from Luis Lavena)
  59. * MingGW is now recognized as a windows platform. (patch from Luis
  60. Lavena)
  61. * Numerous fixes to the windows test suite (patch from Luis Lavena).
  62. * Improved Rakefile case insensitivity testing (patch from Luis
  63. Lavena).
  64. * Fixed stray ARGV option problem that was interfering with
  65. Test::Unit::Runner.
  66. * Fixed default verbose mode (was accidently changed to false).
  67. * Removed reference to manage_gem to fix the warning produced by the
  68. gem package task.
  69. == Version 0.8.3
  70. * Enhanced the system directory detection in windows. We now check
  71. HOMEDRIVE/HOMEPATH and USERPROFILE if APPDATA isn't found. (Patch
  72. supplied by James Tucker). Rake no long aborts if it can't find the
  73. directory.
  74. * Added fix to handle ruby installations in directories with spaces in
  75. their name.
  76. == Version 0.8.2
  77. * Fixed bug in package task so that it will include the subdir
  78. directory in the package for testing. (Bug found by Adam Majer)
  79. * Added ENV var to rakefile to prevent OS X from including extended
  80. attribute junk in a tar file. (Bug found by Adam Majer)
  81. * Fixed filename dependency order bug in test_inspect_pending and
  82. test_to_s_pending. (Bug found by Adam Majer)
  83. * Fixed check for file utils options to make them immune to the
  84. symbol/string differences. (Patch supplied by Edwin Pratomo)
  85. * Fixed bug with rules involving multiple source (Patch supplied by
  86. Emanuel IndermĂźhle)
  87. * Switched from getoptlong to optparse (patches supplied by Edwin
  88. Pratomo)
  89. * The -T option will now attempt to dynamically sense the size of the
  90. terminal. RAKE_COLUMNS will override any dynamic sensing.
  91. * FileList#clone and FileList#dup have better sematics w.r.t. taint
  92. and freeze.
  93. * Added ability clear prerequisites, and/or actions from an existing
  94. task.
  95. * Added the ability to reenable a task to be invoked a second time.
  96. * Changed RDoc test task to have no default template. This makes it
  97. easier for the tempate to pick up the template from the environment.
  98. * Changed from using Mutex to Monitor. Evidently Mutex causes thread
  99. join errors when Ruby is compiled with -disable-pthreads. (Patch
  100. supplied by Ittay Dror)
  101. * Fixed bug in makefile parser that had problems with extra spaces in
  102. file task names. (Patch supplied by Ittay Dror)
  103. * Added a performance patch for reading large makefile dependency
  104. files. (Patch supplied by Ittay Dror)
  105. * Default values for task arguments can easily be specified with the
  106. :with_defaults method. (Idea for default argument merging supplied
  107. by (Adam Q. Salter)
  108. * The -T output will only self-truncate if the output is a tty.
  109. However, if RAKE_COLUMNS is explicitly set, it will be honored in
  110. any case. (Patch provided by Gavin Stark).
  111. * Numerous fixes for running under windows. A big thanks to Bheeshmar
  112. Redheendran for spending a good part of the afternoon at the
  113. Lonestar Ruby Conference to help me work out these issues.
  114. == Version 0.8.1
  115. * Removed requires on parsedate.rb (in Ftptools)
  116. * Removed ftools from rake.rb. Made it options in sys.rb
  117. == Version 0.8.0
  118. * Added task parameters (e.g. "rake build[version7]")
  119. * Made task parameters passable to prerequisites.
  120. * Comments are limited to 80 columns or so (suggested by Jamis Buck).
  121. * Added -D to display full comments (suggested by Jamis Buck).
  122. * The rake program will set the status value used in any explicit
  123. exit(n) calls. (patch provided by Stephen Touset)
  124. * Fixed error in functional tests that were not including session (and
  125. silently skipping the functionl tests.
  126. * Removed --usage and make -h the same as -H.
  127. * Make a prettier inspect for tasks.
  128. == Version 0.7.3
  129. * Added existing and existing! methods to FileList
  130. * FileLists now claim to be Arrays (via is_a?) to get better support
  131. from the FileUtil module.
  132. * Added init and top_level for custom rake applications.
  133. == Version 0.7.2
  134. * Error messages are now send to stderr rather than stdout (from
  135. Payton Quackenbush).
  136. * Better error handling on invalid command line arguments (from Payton
  137. Quackenbush).
  138. * Added rcov task and updated unit testing for better code coverage.
  139. * Fixed some bugs where the application object was going to the global
  140. appliation instead of using its own data.
  141. * Added square and curly bracket patterns to FileList#include (Tilman
  142. Sauerbeck).
  143. * Added plain filename support to rule dependents (suggested by Nobu
  144. Nakada).
  145. * Added pathmap support to rule dependents.
  146. * Added a 'tasks' method to a namespace to get a list of tasks
  147. associated with the namespace.
  148. * Fixed the method name leak from FileUtils (bug found by Glenn
  149. Vanderburg).
  150. * Added rake_extension to handle detection of extension collisions.
  151. * Added test for noop, bad_option and verbose flags to sh command.
  152. * Removed dependency on internal fu_xxx functions from FileUtils.
  153. * Added a 'shame' task to the Rakefile.
  154. * Added tar_command and zip_command options to the Package task.
  155. * Added a description to the gem task in GemPackageTask.
  156. * Fixed a bug when rules have multiple prerequisites (patch by Joel
  157. VanderWerf)
  158. * Added a protected 'require "rubygems"' to test/test_application to
  159. unbreak cruisecontrol.rb.
  160. * Added the handful of RakeFileUtils to the private method as well.
  161. * Added block based exclusion.
  162. * The clean task will no longer delete 'core' if it is a directory.
  163. * Removed rake_dup. Now we just simply rescue a bad dup.
  164. * Refactored the FileList reject logic to remove duplication.
  165. * Removed if __FILE__ at the end of the rake.rb file.
  166. == Version 0.7.1
  167. * Added optional filter parameter to the --tasks command line option.
  168. * Added flatten to allow rule transform procs to return lists of
  169. prereqs (Joel VanderWerf provided patch).
  170. * Added pathmap to String and FileList.
  171. * The -r option will now load .rake files (but a straight require
  172. doesn't yet). NOTE: This is experimental ... it may be
  173. discontinued.
  174. * The -f option without a value will disable the search for a
  175. Rakefile. The assumption is that the -r files are adequate.
  176. * Fixed the safe_ln function to fall back to cp in more error
  177. scenarios.
  178. == Version 0.7.0
  179. * Added Rake.original_dir to return the original starting directory of
  180. the rake application.
  181. * Added safe_ln support for openAFS (from Ludvig Omholt).
  182. * Added --trace reminder on short exception messages (David Heinemeier
  183. Hansson suggestion).
  184. * Added multitask declaration that executes prerequisites in
  185. parallel. (Doug Young providied an initial implementation).
  186. * Fixed missing_const hack to be compatible with Rails. (Jamis Buck
  187. supplied test case).
  188. * Made the RDoc task default to internal (in-process) RDoc formatting.
  189. The old behavior is still available by setting the +external+ flag
  190. to true.
  191. * Rakefiles are now loaded with the expanded path to prevent
  192. accidental polution from the Ruby load path.
  193. * The +namespace+ command now returns a NameSpace object that can be
  194. used to lookup tasks defined in that namespace. This allows for
  195. better anonymous namespace behavior.
  196. * Task objects my now be used in prerequisite lists directly.
  197. == Version 0.6.1
  198. * Rebuilt 0.6.0 gem without signing.
  199. == Version 0.6.0
  200. * Fixed file creation bug in the unit tests (caused infinite loop on
  201. windows).
  202. * Fixed bug where session based functional tests were run under
  203. windows.
  204. * Fixed bug in directory tasks so that updating a directory will not
  205. retrigger file tasks depending on the directory (see
  206. FileCreationTask and EarlyTime).
  207. * Added egrep to FileList
  208. * ruby command now runs same ruby version as rake.
  209. * Added investigation to task object. (suggested by Martin Fowler)
  210. * Added ruby_opts to the test task to allow arbitrary ruby options to
  211. be passed to the test script. (Greg Fast)
  212. * Fixed the test loader to ignore options. (Greg Fast)
  213. * Moved Task, FileTask, FileCreationTask and RakeApp into the Rake
  214. module namespace. Old style namespace behavior can be invoked via
  215. the --classic-namespace option. (requested by Kelly Felkins).
  216. * GemTask is now sensitive to the gem platform (Masao Mutoh).
  217. * A non-existing file prerequisite will no longer cause an exception
  218. (Philipp Neubeck).
  219. * Multiple prerequisites on Rake rules now allowed (initial patch
  220. supplied by Stuart Jansen).
  221. == Version 0.5.4
  222. * Added double quotes to the test runner.
  223. * Added .svn to default ignore list.
  224. * Updated FileList#include to support nested arrays and filelists.
  225. == Version 0.5.3
  226. * Added support for importing Rakefile and other dependencies.
  227. * Fixed bug so that now rules can chain off of existing tasks as well
  228. as existing files.
  229. * Fixed verbose flag bug in the testing task. Shortened some failure
  230. messages.
  231. * Make FileUtils methods private at the top level module to avoid
  232. accidental method leaking into other objects.
  233. * Added test loader option to test task. "testrb" is no longer the
  234. default test loader. It is now eating syntax errors that should
  235. halt the unit tests.
  236. * Revamped FileList so that it works more like and array (addressed
  237. flatten bug). Added many tests around file list.
  238. * Added +ext+ method to both String and FileList.
  239. == Version 0.5.0
  240. * Fixed documentation that was lacking the Rake module name (Tilman
  241. Sauerbeck).
  242. * Added tar.gz and tar.bz2 support to package task (Tilman Sauerbeck).
  243. * Recursive rules are now supported (Tilman Sauerbeck).
  244. * Added warning option for the Test Task (requested by Eric Hodel).
  245. * The jamis rdoc template is only used if it exists.
  246. * Added fix for Ruby 1.8.2 test/unit and rails problem.
  247. * Added contributed rake man file (Jani Monoses).
  248. * Added Brian Candler's fix for problems in --trace and --dry-run
  249. mode.
  250. == Version 0.4.15
  251. * Fixed a bug that prevented the TESTOPTS flag from working with the
  252. revised for 1.8.2 test task.
  253. * Updated the docs on --trace to indicate that it also enables a full
  254. backtrace on errors.
  255. == Version 0.4.14
  256. * Modified the TestTask to workaround the Ruby 1.8.2 change in
  257. autoexecuting unit tests.
  258. == Version 0.4.13
  259. * Fixed the dry-run flag so it is operating again.
  260. * Multiple arguments to sh and ruby commands will not be interpreted
  261. by the shell (patch provided by Jonathan Paisley).
  262. == Version 0.4.12
  263. * Added --silent (-s) to suppress the (in directory) rake message.
  264. == Version 0.4.11
  265. * Changed the "don't know how to rake" message (finally)
  266. * Changes references to a literal "Rakefile" to reference the global
  267. variable $rakefile (which contains the actual name of the rakefile).
  268. == Version 0.4.10
  269. * Added block support to the "sh" command, allowing users to take
  270. special actions on the result of the system call. E.g.
  271. sh "shell_command" do |ok, res|
  272. puts "Program returned #{res.exitstatus}" if ! ok
  273. end
  274. == Version 0.4.9
  275. * Switched to Jamis Buck's RDoc template.
  276. * Removed autorequire from Rake's gem spec. This prevents the Rake
  277. libraries from loading while using rails.
  278. == Version 0.4.8
  279. * Added support for .rb versions of Rakefile.
  280. * Removed \\\n's from test task.
  281. * Fixed Ruby 1.9 compatibility issue with FileList.
  282. == Version 0.4.7
  283. * Fixed problem in FileList that caused Ruby 1.9 to go into infinite
  284. recursion. Since to_a was removed from Object, it does not need to
  285. added back into the list of methods to rewrite in FileList. (Thanks
  286. to Kent Sibilev for pointing this out).
  287. == Version 0.4.6
  288. * Removed test version of ln in FileUtils that prevented safe_ln from
  289. using ln.
  290. == Version 0.4.5
  291. * Upgraded comments in TestTask.
  292. * FileList to_s and inspect now automatically resolve pending changes.
  293. * FileList#exclude properly returns the FileList.
  294. == Version 0.4.4
  295. * Fixed initialization problem with @comment.
  296. * Now using multi -r technique in TestTask. Switch Rakefile back to
  297. using the built-in test task macros because the rake runtime is no
  298. longer needed.
  299. * Added 'TEST=filename' and 'TESTOPTS=options' to the Test Task
  300. macros.
  301. * Allow a +test_files+ attribute in test tasks. This allows more
  302. flexibility in specifying test files.
  303. == Version 0.4.3
  304. * Fixed Comment leakage.
  305. == Version 0.4.2
  306. * Added safe_ln that falls back to a copy if a file link is not supported.
  307. * Package builder now uses safe_ln.
  308. == Version 0.4.1
  309. * Task comments are now additive, combined with "/".
  310. * Works with (soon to be released) rubygems 0.6.2 (or 0.7.0)
  311. == Version 0.4.0
  312. * FileList now uses deferred loading. The file system is not searched
  313. until the first call that needs the file names.
  314. * VAR=VALUE options are now accepted on the command line and are
  315. treated like environment variables. The values may be tested in a
  316. Rakefile by referencing ENV['VAR'].
  317. * File.mtime is now used (instead of File.new().mtime).
  318. == Version 0.3.2.x
  319. * Removed some hidden dependencies on rubygems. Tests now will test
  320. gems only if they are installed.
  321. * Removed Sys from some example files. I believe that is that last
  322. reference to Sys outside of the contrib area.
  323. * Updated all copyright notices to include 2004.
  324. == Version 0.3.2
  325. * GEM Installation now works with the application stub.
  326. == Version 0.3.1
  327. * FileLists now automatically ignore CVS, .bak, !
  328. * GEM Installation now works.
  329. == Version 0.3.0
  330. Promoted 0.2.10.
  331. == Version 0.2.10
  332. General
  333. * Added title to Rake's rdocs
  334. * Contrib packages are no longer included in the documentation.
  335. RDoc Issues
  336. * Removed default for the '--main' option
  337. * Fixed rendering of the rdoc options
  338. * Fixed clean/clobber confusion with rerdoc
  339. * 'title' attribute added
  340. Package Task Library Issues
  341. * Version (or explicit :noversion) is required.
  342. * +package_file+ attribute is now writable
  343. FileList Issues
  344. * Dropped bang version of exclude. Now using ant-like include/exclude semantics.
  345. * Enabled the "yield self" idiom in FileList#initialize.
  346. == Version 0.2.9
  347. This version contains numerous changes as the RubyConf.new(2003)
  348. presentation was being prepared. The changes include:
  349. * The monolithic rubyapp task library is in the process of being
  350. dropped in favor of lighter weight task libraries.
  351. == Version 0.2.7
  352. * Added "desc" for task descriptions.
  353. * -T will now display tasks with descriptions.
  354. * -P will display tasks and prerequisites.
  355. * Dropped the Sys module in favor of the 1.8.x FileUtils module. Sys
  356. is still supported in the contrib area.
  357. == Version 0.2.6
  358. * Moved to RubyForge
  359. == Version 0.2.5
  360. * Switched to standard ruby app builder.
  361. * Added no_match option to file matcher.
  362. == Version 0.2.4
  363. * Fixed indir, which neglected to actually change directories.
  364. == Version 0.2.3
  365. * Added rake module for a help target
  366. * Added 'for_files' to Sys
  367. * Added a $rakefile constant
  368. * Added test for selecting proper rule with multiple targets.