| 1 |
$Id: CHANGELOG.txt,v 1.1 2007/12/07 17:44:06 allisterbeharry Exp $
|
| 2 |
|
| 3 |
5.x-2.1
|
| 4 |
--------------------------------------------------------------------------------
|
| 5 |
Bug Fixes from previous releases
|
| 6 |
--------------------------------
|
| 7 |
1. FIXED: http://drupal.org/node/176240 The docs text files are now properly
|
| 8 |
formatted - wrapped at 80 columns. I removed the duplicate installation section
|
| 9 |
in README.txt and put a pointer to INSTALL.txt.
|
| 10 |
|
| 11 |
What's New
|
| 12 |
----------
|
| 13 |
1. The behaviour of DAST looking for properties files has changed for the
|
| 14 |
better: instead of looking in DAST_HOME every time, by default properties files
|
| 15 |
are looked up in the build file's ${project.basedir} property (set as the
|
| 16 |
basedir attribute at the root <project> element, if not specified defaults to
|
| 17 |
'.') So you can run
|
| 18 |
./bin/dast -f mydir/myproject.xml
|
| 19 |
and the myproject.properties and myproject-base.properties file will be looked
|
| 20 |
for in mydir instead of DAST_HOME; so you don't have to explicitly say
|
| 21 |
-D"propertiesFile=mydir/myproject.properties"....
|
| 22 |
|
| 23 |
2. Added a -p or --project command-line parameter to help out with the long
|
| 24 |
command-lines you need to use sometimes. If you have a myproject.xml build
|
| 25 |
file and you put it in the directory DAST_HOME/projects/myproject you can now
|
| 26 |
run from DAST_HOME
|
| 27 |
|
| 28 |
./bin/dast -p myproject
|
| 29 |
This is equivalent to
|
| 30 |
./bin/dast -f ./projects/myproject
|
| 31 |
|
| 32 |
5.x-2.0
|
| 33 |
--------------------------------------------------------------------------------
|
| 34 |
Bug Fixes from previous releases
|
| 35 |
--------------------------------
|
| 36 |
1. FIXED: http://drupal.org/node/170479. Using checkout or co as
|
| 37 |
your drupal.core.Cvs.Command results in all files including CVS control dirs
|
| 38 |
placed in the correct location: ${drupal.dir}.
|
| 39 |
|
| 40 |
2. FIXED: http://drupal.org/node/170181. Added main
|
| 41 |
target to run set-db-url, fetch-profile, and run-installer targets in sequence.
|
| 42 |
|
| 43 |
3. FIXED: http://drupal.org/node/170222. file method fixed.
|
| 44 |
|
| 45 |
4. FIXED: http://drupal.org/node/170215. typo drupal.ext.patch
|
| 46 |
changed to dast.ext.patch
|
| 47 |
|
| 48 |
5. FIXED: http://drupal.org/node/170086. The correct properties
|
| 49 |
files are now used in site-fetch.xml
|
| 50 |
|
| 51 |
|
| 52 |
What's New
|
| 53 |
------------------
|
| 54 |
1. New Phing types and directives allow you to read and write to Apache web
|
| 55 |
server .conf, PHP .ini and MySQL .ini configuration files. See
|
| 56 |
the ApacheHttpdConfDirective, ApacheHttpdConfSection, and ApacheHttpdConfTask
|
| 57 |
classes in DAST_HOME/src for starters and the other
|
| 58 |
*ConfDirective, *ConfSection, and *ConfType classes for PHP and MySQL.
|
| 59 |
|
| 60 |
2. site-install.xml can now download profiles from CVS; see site-install nix or
|
| 61 |
Windows sample properties file ,
|
| 62 |
|
| 63 |
3. site-fetch now supports .tar.gz tarballs as a source for the core Drupal code
|
| 64 |
- set drupal.core.method = tarball and drupal.core.sourcetar = the tarball
|
| 65 |
containing the core code you wish to install.
|
| 66 |
|
| 67 |
4. Properties in user and base properties files can now be overriden on the
|
| 68 |
command line. The priority for properties is first those specified on the
|
| 69 |
command line using -D; those specified in the user properties file; and finally
|
| 70 |
those specified in the base properties file.
|
| 71 |
|
| 72 |
5. A dump-config task has been created which allows you to easily print the
|
| 73 |
current values of all properties loaded in your build file at run time.
|