]> git.sur5r.net Git - bacula/bacula/blob - bacula/technotes-2.1
6d7ddafddb3ab262b201956cf36f3291e9bc6b8d
[bacula/bacula] / bacula / technotes-2.1
1               Technical notes on version 2.1
2
3 General:
4 16Feb07
5 kes  Fix encryption deblocking bug, which caused some restored files
6      to be truncated. This fixes bug #763.
7 kes  Add FD event sequence order prepared by Eric -- for RunScripts.
8 kes  Fix 12am/pm bug as reported in bug #782.
9 13Feb07
10 kes  Apply Eric's ClientRunScriptAfter patch to 2.0 and 2.1.
11 ebl  Use btime_t instead of uint64_t in media patch.
12 11Feb07
13 kes  Optimize the use of the database a bit in the Status dir command.
14      Only open it when needed, ensure that if any previous database
15      was opened, it is closed.
16 10Feb07
17 kes  Correct VolCatBytes bug from media patch.
18 kes  Apply patch from bug #612 by Rudolf Cejka to speedup pruning
19      in the case of orphaned records.
20 kes  Modify dbcheck to handle orphaned JobMedia, Path, Filename,
21      and File records in 300K chunks to be more efficient. This
22      idea came from Juan Luis Frances (if I remember right).
23 kes  Apply Eric's scratch patch that moves a purged Volume to
24      the RecyclePool.  Question: how is RecyclePool set? what
25      happens to the ScratchPool?
26 kes  Apply Eric's media patch that collects read/write media
27      times as well as byte counts.  This patch requires a
28      simultaneous upgrade of the DIR and SD.  Note, there
29      should be some way to turn off timing. I'm not sure
30      times are in Bacula units.
31 kes  Apply Eric's batch-insert patch.
32 09Feb07
33 kes  Update projects list.
34 08Feb07
35 kes  Implement Include/Exclude file lists in FD as dlists using
36      the new dlistString class. This permits efficiently having
37      large include/exclude lists and completes project Item 25.
38 kes  Fix dird/ua_cmds.c so that a cancel command checks if the
39      console is authorized to cancel the job.  This fixes bug 
40      #767.
41 kes  Modify SD so that the VolCatJobs medium record is updated
42      at the beginning of a Job rather than the end.  This
43      fixes bug #775 where exceeding MaxVolJobs caused jobs
44      to fail.
45 kes  Added a mutex around getting and setting Volume information
46      so that multiple simultaneous jobs will single thread.
47 07Feb07
48      Switch to using Subversion
49 kes  Remove src/pygtk-console/ from configure
50 06Feb07
51 kes  Delete src/lib/btree.c from win32 build, then add rblist.c
52      plus the entrypoints.
53 kes  Apply patch supplied that corrects debug print
54      in canceling jobs for max run time.  Supplied as
55      part of bug #621, which was previously fixed.
56 05Feb07
57 kes  Test on job_canceled() and sd_msg_thread_done inside
58      loop starting the message thread to avoid a race condition.
59      Fixes bug #771.
60 kes  Remove rl_catch_signal from console.c as it conflicted
61      with the header definition. Fixes bug #765.
62 ebl  Fixes bug #766 about RunsOnClient = Yes
63 04Feb07
64 kes  Clarify some stored/acquire messages to indicate if the
65      problem is with read or append.
66 02Feb07
67 kes  Fix memory leak with storage ids in cats/sql_get.c
68 kes  Terminate watchdog earlier to avoid reference to released
69      memory -- reported by Jason Austin.
70 kes  Move closing the database from jobq.c to the director daemon
71      termination routine. This fixes memory leaks for shadow jobs
72      (i.e. migration jobs).
73 kes  Free up the unique jobid chain items in migrate.c.  This fixes
74      a memory leak problem.
75 kes  Convert some ugly looking for statements to use foreach_alist
76      in findlib/find.c.  This will facilitate converting the structures
77      to use dlist (for large include/exclude lists).
78 kes  Fix a bug in the btree.c and btree.h routines, then rename them
79      rblist and add them to be built in src/lib.  Include some new
80      methods written by Rudolf Cejka that make the code more readable
81      (hides some of the ugly casting).
82 kes  Add set_next() and set_prev() methods which make the code much more 
83      readable. Also add a new dlistString class that facilitates storing
84      strings in dlists.  To be used in the large include/exclude lists.
85 kes  Make some trivial modifications to lib/tree.h that use rblist
86      rather than dlist for storing the tree links. This was suggested
87      by Rudolf Cejka.  The result of this is that the restore tree now
88      uses red-black binary trees rather than simple linked lists. This
89      should give rather dramatic speed improvements for directories
90      contining large numbers of directories/files (more than 10000).
91 28Jan07 
92 kes  Fix maxruntime bug #621.
93 26Jan07
94 ebl  Implement the include JobID in spool file name project.
95 kes  Reorder projects file in order determined by Jan 2007 vote.
96 kes  Implement item #12 on project list -- quick release of FD by
97      the SD.
98 kes  Fix open of SQLite3 db where user does not have write permission
99      so that DIR does not crash. Fixes bug #761.
100 25Jan07
101 kes  Add back missing @ in Win32 Makefile.
102 kes  Change 'Device not configured to autolabel' from INFO
103      to WARNING.
104 kes  Fix jobq.c to restart failed jobs when Reschedule Times = 0 
105      which should restart an indefinite # of times.
106 kes  Fix configure --help to print --with-mysql[=DIR]. Same for
107      other DIR specifications.
108 23Jan07
109 rn   Fix msvc build problems. Fix bacula.dll exports for msvc build.
110      Fix path quoting in SQLite scripts.
111      Fix problems with SHGetFolderPath.
112 19Jan07
113 kes  Create patches/2.0.1-restart.patch. Fixes bug #755.
114 18Jan07
115 kes  Fix Job restart on error bug that promotes an Inc to a Full
116      backup.  This should fix bug #755.
117 kes  Add qt-console and first cut of code.
118
119 Version 2.0.1
120 12Jan07
121 kes  Fix Bacula->Documentation link on Win32 to point to index.html
122      instead of bacula.html. Fixed bug #750.
123 kes  Return JobId in db_get_job_record() when JobId==0. This should
124      fix bug #741.
125 kes  Do not release source pointers when restarting a failed job.
126 11Jan07
127 kes  Add dynamic dll entry point for SHGetFolderPath to Win32 code.
128      This *should* fix bug #747.
129 kes  Modify winbacula.nsi to substitute with g bin_dir_cmd. Should fix
130      bug #742.
131 09Jan07
132 kes  Modify USTORE constructor to set an empty store_source string, 
133      and don't copy the store_source string in a cancel.  Hopefully
134      this will fix Arno's seg fault, bug #744.
135 kes  Add back code to disable conio in configure. Fixes bug #743.
136 kes  Correct the Options scanner in the FD to correctly handle  
137      SHA1 option, which was eating the next option.  Reported by    
138      Sebastien Guilbaud.
139 kes  Add code to indicate when the SD is spooling, spool wait, and 
140      despooling as requested by Alan Brown.
141
142 Version 2.0.0 released: 4 January 2007