]> git.sur5r.net Git - bacula/bacula/blob - bacula/ReleaseNotes
First cut of estimate command
[bacula/bacula] / bacula / ReleaseNotes
1
2           Release Notes for Bacula 1.31
3
4   Bacula code: Total files = 251 Total lines = 74,587 (*.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 - Multiple simultaneous jobs now work.
20 - Implemented tape block rejection, which means that restores with
21   several incremental backups will run orders of magnitude faster.
22
23
24 Other Changes this Release:
25 - During a normal restore (replace = yes), any existing file is deleted
26   and the restored file is then created. This corrects links and other
27   wierd files that changed between the backup and the restore.
28 - Preliminary support for BSDi.
29 - Use smtp instead of mail to send the traceback message.
30 - Fixed a race condition in the "list" command while a backup is
31   in progress.
32 - Beginning of support for SSL encryption.
33 - Beggining of support for Base level backups.
34 - Improvements to gnome-console.
35 - Prune orphaned jobs (no files saved, no Volume used).
36 - Added non-fatal errors to Job reports.
37 - Eliminate need for SubsysDirectory in each daemon -- please remove
38   these records from your .conf files.
39 - Add a lot more "command line" options to console commands.
40 - More info in traceback (database type, ...).
41 - Better handling of errors with autochangers during restore.
42 - Better cancellation of jobs in Storage daemon (doesn't try
43   to cleanup twice).
44 - Better cancellation of File daemon (except on Cygwin systems).
45 - SD error messages such as autochanger errors are now properly
46   directed back to Console -- previously some were lost.
47 - A Storage daemon crash on FreeBSD systems (due to a different FreeBSD
48   pthreads implementation) is fixed.
49 - Better Job termination report particularly for Verify and Restore jobs.
50 - Update Verify VolumeToCatalog to use new BSR records.
51 - Fixed list last 20 jobs in restore command (previously reported any 
52   20 jobs).
53 - Gnome command line history works better.
54 - Better messages if a job is upgraded from Diff or Inc to Full.
55 - Replaced FileSet MD5 with date created -- more aestetic and readable.
56 - Fixed a FD crash on long directory names (Win32 specific).
57
58
59
60 Items to note:  !!!!!
61 - The default time interval is now days instead of seconds. Please
62   check your .conf files!
63 - For MySQL users, you must have the thread safe client libraries 
64   available.  If you build MySQL yourself, add the --enable-thread-safe-client
65   option on the ./configure.  You will most likely need to do an ldconfig.
66   Please see the installation documentation for building MySQL.
67 - Version 1.31 and 1.30 daemons/Director are not compatible. You must
68   upgrade all or nothing.
69 - The format of the catalog database has changed, so you must either
70   re-initialize your database (losing all the old info) with:
71
72      ./drop_bacula_tables
73      ./make_bacula_tables
74
75   or you can use the appropriate script (you must choose the name according
76   to which database you have) in the <bacula-source>/src/cats directory.
77
78   BEFORE APPLYING THE ALTER SCRIPT PLEASE BACKUP YOUR DATABASE. Do one
79   of the following only if you wish to keep your old tables (not doing
80   the re-initialize documented above), and do this only after configuring
81   an building the new Bacula, but before trying to run it:
82
83   MySQL:
84      cd working-directory (or where you want to backup the catalog)
85      mysqladmin -f --opt bacula >bacula.sql
86      cd <bacula-source>/src/cats
87      ./alter_mysql_tables
88
89   SQLite:
90      cd working-directory
91      echo '.dump' sqlite bacula.db >bacula.sql
92      cd <bacula-source>/src/cats
93      ./alter_sqlite_tables
94       
95   When you are sure that Bacula is running with your upgraded database,
96   please delete the bacula.sql copy you made.
97