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