]> git.sur5r.net Git - bacula/bacula/blob - bacula/ReleaseNotes
Update ChangeLog and ReleaseNotes
[bacula/bacula] / bacula / ReleaseNotes
1
2           Release Notes for Bacula 1.31
3
4   Bacula code: Total files = 253 Total lines = 75,225 (*.h *.c *.in)
5
6 Major Changes this Release:
7 - The database format has changed. Please see below.
8 - Support to save and restore all files on WinNT/2K/XP systems 
9   including the permissions. Unfortunately files that are in use by another
10   program cannot be saved.
11 - Support for Win95 systems (untested since I don't have Win95).
12 - Heartbeat every 20 minutes between daemons to prevent network
13   timeouts. The heartbeat interval can be set.
14 - Volume names may now only contain letters, numbers, colon, period, dash,
15   and underscore.
16 - Added readline to depkgs (removed from depkgs1) and fixed configuration if
17   it is not installed in your system libraries.
18 - Implemented generalized tape label formats including counter variables 
19   for automatic naming of Volumes.
20 - Multiple simultaneous jobs now work.
21 - Implemented tape block rejection, which means that restores with
22   several incremental backups will run orders of magnitude faster.
23
24
25 Other Changes this Release:
26 - Restore checks block numbers to ensure that no block is lost.
27 - The new console var command allows testing variable expansion
28   used in automatic tape name generation.
29 - The new console estimate command allows you to test FileSets
30   to see how many files and bytes will be saved and optionally
31   to have an "ls -l" style listing of the files.
32 - During a normal restore (replace = yes), any existing file is deleted
33   and the restored file is then created. This corrects links and other
34   wierd files that changed between the backup and the restore.
35 - Preliminary support for BSDi.
36 - Use smtp instead of mail to send the traceback message.
37 - Fixed a race condition in the "list" command while a backup is
38   in progress.
39 - Improvements to gnome-console.
40 - Prune orphaned jobs (no files saved, no Volume used).
41 - Added non-fatal errors to Job reports.
42 - Eliminate need for SubsysDirectory in each daemon -- please remove
43   these records from your .conf files.
44 - Add a lot more "command line" options to console commands.
45 - More info in traceback (database type, ...).
46 - Better handling of errors with autochangers during restore.
47 - Better cancellation of jobs in Storage daemon (doesn't try
48   to cleanup twice).
49 - Better cancellation of File daemon (except on Cygwin systems).
50 - SD error messages such as autochanger errors are now properly
51   directed back to Console -- previously some were lost.
52 - A Storage daemon crash on FreeBSD systems (due to a different FreeBSD
53   pthreads implementation) is fixed.
54 - Better Job termination report particularly for Verify and Restore jobs.
55 - Update Verify VolumeToCatalog to use new BSR records.
56 - Fixed list last 20 jobs in restore command (previously reported any 
57   20 jobs).
58 - Gnome command line history works better.
59 - Better messages if a job is upgraded from Diff or Inc to Full.
60 - Replaced FileSet MD5 with date created -- more aestetic and readable.
61 - Fixed a FD crash on long directory names (Win32 specific).
62
63
64
65 Items to note:  !!!!!
66 - Recycle Oldest Volume has changed to be Purge Oldest Volume
67   Please change your Director's .conf file.
68 - The default time interval is now days instead of seconds. Please
69   check your .conf files!
70 - For MySQL users, you must have the thread safe client libraries 
71   available.  If you build MySQL yourself, add the --enable-thread-safe-client
72   option on the ./configure.  You will most likely need to do an ldconfig.
73   Please see the installation documentation for building MySQL.
74 - Version 1.31 and 1.30 daemons/Director are not compatible. You must
75   upgrade all or nothing.
76
77 - The format of the catalog database has changed, so you must either
78   re-initialize your database (losing all the old info) with:
79
80      ./drop_bacula_tables
81      ./make_bacula_tables
82
83   or you can use the appropriate script (you must choose the name according
84   to which database you have) in the <bacula-source>/src/cats directory.
85
86   BEFORE APPLYING THE ALTER SCRIPT PLEASE BACKUP YOUR DATABASE. 
87   If you have previously upgraded to version 1.31, please do not run
88   this procedure a second time.  Do one of the following only if you
89   wish to keep your old tables (not doing the re-initialize documented
90   above), and do this only after configuring an building the new Bacula,
91   but before trying to run it:
92
93   MySQL:
94      cd working-directory (or where you want to backup the catalog)
95      mysqladmin -f --opt bacula >bacula.sql
96      cd <bacula-source>/src/cats
97      ./alter_mysql_tables
98
99   SQLite:
100      cd working-directory
101      echo '.dump' sqlite bacula.db >bacula.sql
102      cd <bacula-source>/src/cats
103      ./alter_sqlite_tables
104       
105   When you are sure that Bacula is running with your upgraded database,
106   please delete the bacula.sql copy you made.
107