Welcome to mirror list, hosted at ThFree Co, Russian Federation.

releasenotes.tex « main « en « manuals - github.com/bareos/bareos-docs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b49814f13ef2cd92c2e3b99c03a322cf1f2fc577 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
\label{releasenotes}

The technical changelog is automatically generated from the Bareos bug tracking system, see \url{http://bugs.bareos.org/changelog_page.php}.

Please note, that some of the subreleases are only internal development releases.

Open issues for a specific version are shown at
\url{http://bugs.bareos.org/roadmap_page.php}.

The overview about new feature of a release are shown at
\url{https://github.com/bareos/bareos} and in the \nameref{index} of this document.

This chapter concentrates on things to do when updating an existing Bareos installation.

\warning{While all the source code is published on \elink{GitHub}{https://github.com/bareos/bareos}, the releases of packages on \url{http://download.bareos.org} is limited to the initial versions of a major release. Later maintenance releases are only published on \url{https://download.bareos.com}.}

\section*{Bareos-16.2}

\releasenote{16.2.6}{

\begin{tabular}{p{0.2\textwidth} p{0.8\textwidth}}
Code Release      & 2017-06-22\\
Database Version  & 2004 (unchanged)\\
Release Ticket    & \ticket{794}\\
Url               & \releaseUrlDownloadBareosCom{16.2} \\
\end{tabular}

This release contains several bugfixes and enhancements. Excerpt:
\begin{itemize}
  \item Prevent from director crash when using incorrect paramaters of \bcommand{.bvfs_*}{} commands.
  \item Director now closes all configuration files when reloading failed.
  \item Storage daemon now closes the network connection when MaximumConcurrentJobs reached.
  \item New directive \configdirective{LanAddress} was added to the Client and Storage Resources of the director to facilitate a network topology where client and storage are situated inside of a LAN, but the Director is outside of that LAN. See \nameref{LanAddress} for details.
  \item A Problem in the storage abstraction layer was fixed where the director picked the wrong storage daemon when multiple storages/storage daemons were used.
  \item The device spool size calculation when using secure erase was fixed.
  \item \bcommand{.bvfs_lsdirs} no longer shows empty directories from accurate jobs.
    \begin{itemize}
        \item \warning{This decreases performance if your environment has a large numbers of directories. Creating an index improves the performance.}
        %In Bareos 16.2.6 the SQL Query used by \bcommand{.bvfs_lsdirs}{} was changed to not show
        %empty directories from accurate jobs. It turned out that that the changed
        %query causes performance issues when larger amounts of directories were backed up.\\
        \item \postgresql
        \begin{itemize}
            \item When using PostgreSQL, creating the following partial improves the performance sufficiently:\\
                \sqlcommand{CREATE INDEX file_jfnidpart_idx ON File(JobId, FilenameId) WHERE FileIndex = 0;}

            \item Run following command to create the partial index:\\
                \path@su - postgres -c 'echo "CREATE INDEX file_jfnidpart_idx ON File(JobId, FilenameId) WHERE FileIndex = 0; ANALYZE File;" | psql bareos'@

        \end{itemize}
        \item \mysql
        \begin{itemize}
            \item When using MySQL or MariaDB, creating the following index improves the performance:\\
                \sqlcommand{CREATE INDEX PathId_JobId_FileIndex_FileNameId ON File(PathId,JobId,FileIndex,FilenameId);}

            \item Run following command to create the index:\\
                \path@echo "CREATE INDEX PathId_JobId_FileIndex_FileNameId ON File(PathId,JobId,FileIndex,FilenameId);" | mysql -u root bareos@

            \item  However, with larger amounts of directories and/or involved jobs, even with this index
                the performance of \bcommand{.bvfs_lsdirs}{} may still be insufficient. We are working on optimizing
                the SQL query for MySQL/MariaDB to solve this problem.
        \end{itemize}
    \end{itemize}

  \item Packages for Univention UCS 4.2 have been added.
  \item Packages for Debian 9 (Stretch) have been added.
  \item WebUI: The post install script of the bareos-webui RPM package for RHEL/CentOS was fixed, it no longer tries to run a2enmod which does not exist on RHEL/CentOS.
  \item WebUI: The login form no longer allows redirects to arbitrary URLs
  \item WebUI: The used ZendFramework components were updated from version 2.4.10 to 2.4.11.
  \item WebUI: jQuery was updated from version 1.12.4 to version 3.2.0., some outdated browsers like Internet Explorer 6-8, Opera 12.1x or Safari 5.1+ will no longer be supported, see \elink{jQuery Browser Support}{http://jquery.com/browser-support/} for details.
\end{itemize}

}

\releasenote{16.2.5}{

\begin{tabular}{p{0.2\textwidth} p{0.8\textwidth}}
Code Release      & 2017-03-03\\
Database Version  & 2004 (unchanged)\\
Release Ticket    & \ticket{734}\\
Url               & \releaseUrlDownloadBareosCom{16.2} \\
\end{tabular}

This release contains several bugfixes and enhancements. Excerpt:
\begin{itemize}
  \item NDMP: critical bugfix when restoring large files.
  \item truncate command allows to free space on disk storages (replaces an purged volume by an empty volume).
  \item Some fixes were added regarding director crashes, Windows backups (VSS), soft-quota reset and API (bvfs) problems.
  \item WebUI: handle file names containing special characters, hostnames starting with numbers and long logfiles.
  \item WebUI: adds translations for Chinese, Italian and Spanish.
\end{itemize}

}

\releasenote{16.2.4}{

\begin{tabular}{p{0.2\textwidth} p{0.8\textwidth}}
Code Release      & 2016-10-28\\
Database Version  & 2004 (unchanged)\\
Release Ticket    & \ticket{698}\\
Url               & \releaseUrlDownloadBareosOrg{16.2} \\
                  & \releaseUrlDownloadBareosCom{16.2} \\
\end{tabular}

First stable release of the Bareos 16.2 branch.

\begin{itemize}
\item Configuration
     \begin{itemize}
     \item Bareos packages contain the default configuration in \nameref{sec:ConfigurationSubdirectories}. Please read \nameref{sec:UpdateToConfigurationSubdirectories} before updating (make a copy of your configuration directories for your \bareosDir and \bareosSd before updating). Note: as the old configuration files are still supported, in most cases no changes are required.
     \item The default configuration does no longer name the \resourcetype{Dir}{Director} and \resourcetype{Sd}{Storage} resources after the systems hostname (\path|$HOSTNAME-dir| resp. \path|$HOSTNAME-sd|) but use \resourcename{Dir}{Director}{bareos-dir} resp. \resourcename{Sd}{Storage}{bareos-sd} as defaults. The prior solution had the disadvantage, that \path|$HOSTNAME-dir|\hide{$} has also been set on \bareosFd not running on the \bareosDir, which almost ever did require changing this setting. Also the new approach aligns better with \nameref{sec:ConfigurationSubdirectories}.
     \item Due to limitation of the build system, the default resource \resourcename{Dir}{FileSet}{Linux All} have been renamed to \resourcename{Dir}{FileSet}{LinuxAll} (no space between Linux and All).
     \item The configuration of the \package{bareos-traymonitor} has also been split into resource files.
        Additional, these resource files are now packaged in other packages:
        \begin{itemize}
            \item \path|$CONFIGDIR/tray-monitor.d/monitor/bareos-mon.conf|: \package{bareos-traymonitor}
            \item \path|$CONFIGDIR/tray-monitor.d/client/FileDaemon-local.conf|: \package{bareos-filedaemon}
            \item \path|$CONFIGDIR/tray-monitor.d/storage/StorageDaemon-local.conf|: \package{bareos-storage}
            \item \path|$CONFIGDIR/tray-monitor.d/director/Director-local.conf|: \file{bareos-director}
        \end{itemize}
         This way, the \package{bareos-traymonitor} will be configured automatically for the installed components.
     \end{itemize}
\item Strict ACL handling
     \begin{itemize}
     \item Bareos Console \dt{Acl}s do no longer automatically matches substrings
        (to avoid that e.g. \linkResourceDirectiveValue{Dir}{Console}{Pool ACL}{Full} also matches \pool{VirtualFull}).
        To configure the ACL to work as before, \linkResourceDirectiveValue{Dir}{Console}{Pool ACL}{.*Full.*} must be set.
        Unfortunately the \bareosWebui 15.2 \resourcename{Dir}{Profile}{webui} did use \linkResourceDirectiveValue{Dir}{Console}{Command ACL}{.bvfs*}, which is also no longer works as intended. Moreover, to use all of \bareosWebui 16.2 features, some additional commands must be permitted, so best use the new \resourcename{Dir}{Profile}{webui-admin}.
     \end{itemize}
\item \bareosWebui
     \begin{itemize}
     \item Updating from Bareos 15.2: Adapt \resourcename{Dir}{Profile}{webui} (from bareos 15.2) to allow all commands of \resourcename{Dir}{Profile}{webui-admin} (\linkResourceDirective{Dir}{Console}{Command ACL}).
     Alternately modify all \resourcetype{Dir}{Console}s currently using \resourcename{Dir}{Profile}{webui} to use \resourcename{Dir}{Profile}{webui-admin} instead.
     \item While RHEL 6 and CentOS 6 are still platforms supported by Bareos, the package \package{bareos-webui} is not available for these platforms, as the required ZendFramework 2.4 do require PHP $>=$ 5.3.17 (5.3.23). However, it is possible to use \package{bareos-webui} 15.2 against \package{bareos-director} 16.2. Also here, the profile must be adapted.
     \end{itemize}
\end{itemize}
}

\section*{Bareos-15.2}

\releasenote{15.2.4}{

\begin{tabular}{p{0.2\textwidth} p{0.8\textwidth}}
Code Release      & 2016-06-10\\
Database Version  & 2004 (unchanged)\\
Release Ticket    & \ticket{641} \\
Url               & \releaseUrlDownloadBareosCom{15.2} \\
\end{tabular}

For upgrading from 14.2, please see release notes for 15.2.1.

This release contains several bugfixes and enhancements. Excerpt:
\begin{itemize}
 \item Automatic mount of disks by SD
 \item NDMP performance enhancements
 \item Windows: sparse file restore
 \item Director memory leak caused by frequent bconsole calls
\end{itemize}
}


\releasenote{15.2.3}{

\begin{tabular}{p{0.2\textwidth} p{0.8\textwidth}}
Code Release      & 2016-03-11\\
Database Version  & 2004 (unchanged)\\
Release Ticket    & \ticket{625} \\
Url               & \releaseUrlDownloadBareosCom{15.2} \\
\end{tabular}

For upgrading from 14.2, please see releasenotes for 15.2.1.

This release contains several bugfixes and enhancements. Excerpt:
\begin{itemize}
 \item VMWare plugin can now restore to VMDK file 
 \item Ceph support for SLES12 included
 \item Multiple gfapi and ceph enhancements 
 \item NDMP enhancements and bugfixes
 \item Windows: multiple VSS Jobs can now run concurrently in one FD, installer fixes
 \item bpipe: fix stderr/stdout problems
 \item reload command enhancements (limitations eliminated)
 \item label barcodes now can run without interaction 
\end{itemize}
}



\releasenote{15.2.2}{

\begin{tabular}{p{0.2\textwidth} p{0.8\textwidth}}
Code Release      & 2015-11-19\\
Database Version  & 2004\\
                  & Database update required (if coming from bareos-14.2). See the \nameref{bareos-update} section.\\
Release Ticket    & \ticket{554} \\
Url               & \releaseUrlDownloadBareosOrg{15.2} \\
                  & \releaseUrlDownloadBareosCom{15.2} \\
\end{tabular}

First stable release of the Bareos 15.2 branch.

When coming from bareos-14.2.x, the following things have changed (same as in bareos-15.2.1):
\begin{itemize}
    \item The default setting for the Bacula Compatbile mode in  \linkResourceDirective{Fd}{Client}{Compatible} and \linkResourceDirective{Sd}{Storage}{Compatible} have been changed from \argument{yes} to \argument{no}.
    \item The configuration syntax for Storage Daemon Cloud Backends Ceph and GlusterFS have changed.
	Before bareos-15.2, options have been configured as part of the \linkResourceDirective{Sd}{Device}{Archive Device} directive, while now the Archive Device contains only information text and options are defined via the \linkResourceDirective{Sd}{Device}{Device Options} directive. See examples in \linkResourceDirective{Sd}{Device}{Device Options}.
\end{itemize}

}



\releasenote{15.2.1}{

\begin{tabular}{p{0.2\textwidth} p{0.8\textwidth}}
Code Release      & 2015-09-16\\
Database Version  & 2004\\
                  & Database update required, see the \nameref{bareos-update} section.\\
Release Ticket    & \ticket{501} \\
Url               & \releaseUrlDownloadBareosOrg{15.2} \\
\end{tabular}

Beta release.

\begin{itemize}
    \item The default setting for the Bacula Compatbile mode in  \linkResourceDirective{Fd}{Client}{Compatible} and \linkResourceDirective{Sd}{Storage}{Compatible} have been changed from \argument{yes} to \argument{no}.
    \item The configuration syntax for Storage Daemon Cloud Backends Ceph and GlusterFS have changed.
	Before bareos-15.2, options have been configured as part of the \linkResourceDirective{Sd}{Device}{Archive Device} directive, while now the Archive Device contains only information text and options are defined via the \linkResourceDirective{Sd}{Device}{Device Options} directive. See examples in \linkResourceDirective{Sd}{Device}{Device Options}.
% # Old syntax:
% #    Archive Device = /etc/ceph/ceph.conf:poolname
% #
% # New syntax:
% #    Archive Device = <text>
% #    Device Options = "conffile=/etc/ceph/ceph.conf,poolname=poolname"
\end{itemize}

}


\section*{Bareos-14.2}

It is known, that \command{drop_database} scripts will not longer work on PostgreSQL $<$ 8.4. However, as \command{drop_database} scripts are very seldom needed, package dependencies do not yet enforce PostgreSQL $>=$ 8.4.
We plan to ensure this in future version of Bareos.

\releasenote{14.2.7}{

\begin{tabular}{p{0.2\textwidth} p{0.8\textwidth}}
Code Release      & 2016-07-11\\
Database Version  & 2003 (unchanged)\\
Release Ticket    & \ticket{584} \\
Url               & \releaseUrlDownloadBareosCom{14.2} \\
\end{tabular}

This release contains several bugfixes. Excerpt:
\begin{itemize}
    \item bareos-dir
    \begin{itemize}
        \item Fixes pretty printing of Fileset options block \\
            \ticket{591}: config pretty-printer does not print filesets correctly
        \item run command: fixes changing the pool when changing the backup level in interactive mode \\
            \ticket{633}: Interactive run doesn't update pool on level change
        \item Ignore the Fileset option DriveType on non Windows systems \\
            \ticket{644}: Setting DriveType causes empty backups on Linux
        \item Suppress already queued jobs for disabled schedules \\
            \ticket{659}: Suppress already queued jobs for disabled schedules
    \end{itemize}
    \item NDMP
    \begin{itemize}
        \item Fixes cancel of NDMP jobs\\
            \ticket{604}: Cancel a NDMP Job causes the sd to crash
    \end{itemize}
    \item bpipe-fd plugin
    \begin{itemize}
        \item Only take stdout into account, ignore stderr (like earlier versions) \\
            \ticket{632}: fd-bpipe plugin merges stderr with stdout, which can result in corrupted backups
    \end{itemize}
    \item win32
    \begin{itemize}
        \item Fix symlink and junction support\\
            \ticket{575}: charset problem in symlinks/junctions windows restore \\
            \ticket{615}: symlinks/junctions wrong target path on restore (wide chars)
        \item Fixes quoting for bmail.exe in bareos-dir.conf \\
            \ticket{581}: Installer is setting up a wrong path to bmail.exe without quotes / bmail not called
        \item Fix crash on restore of sparse files \\
            \ticket{640}: File daemon crashed after restoring sparse file on windows
    \end{itemize}
    \item win32 mssql plugin
    \begin{itemize}
        \item Allow connecting to non default instance \\
            \ticket{383}: mssqldvi problem with connection to mssql not default instance
        \item Fix backup/restore of incremental backups \\
            \ticket{588}: Incremental MSSQL backup fails when database name contains spaces
    \end{itemize}
\end{itemize}
}

\releasenote{14.2.6}{

\begin{tabular}{p{0.2\textwidth} p{0.8\textwidth}}
Code Release      & 2015-12-03\\
Database Version  & 2003 (unchanged)\\
Release Ticket    & \ticket{474} \\
Url               & \releaseUrlDownloadBareosCom{14.2} \\
\end{tabular}

This release contains several bugfixes.
}

\releasenote{14.2.5}{

\begin{tabular}{p{0.2\textwidth} p{0.8\textwidth}}
Code Release      & 2015-06-01\\
Database Version  & 2003 (unchanged)\\
Release Ticket    & \ticket{447} \\
Url               & \releaseUrlDownloadBareosCom{14.2} \\
\end{tabular}

This release contains several bugfixes and added the platforms \os{Debian}{8} and \os{Fedora}{21}.
}


\releasenote{14.2.4}{

\begin{tabular}{p{0.2\textwidth} p{0.8\textwidth}}
Code Release      & 2015-03-23 \\
Database Version  & 2003 (unchanged)\\
Release Ticket    & \ticket{420} \\
Url               & \releaseUrlDownloadBareosCom{14.2} \\
\end{tabular}

This release contains several bugfixes, including one major bugfix (\ticket{437}), relevant for those of you using backup to disk with autolabeling enabled.

It can lead to loss of a 64k block of data when all of this conditions apply:
\begin{itemize}
 \item backups are written to disk (tape backups are not affected)
 \item autolabelling is enabled
 \item a backup spans over multiple volumes
 \item the additional volumes are newly created and labeled during the backup
\end{itemize}
If existing volumes are used for backups spanning over multiple volumes, the problem does not occur.

We recommend to update to the latest packages as soon as possible.

If an update is not possible immediately,
autolabeling should be disabled and volumes should be labelled manually
until the update can be installed. 

If you are affected by the 64k bug, we recommend that you schedule a full backup after fixing the problem in order to get a
proper full backup of all files.
}

\releasenote{14.2.3}{

\begin{tabular}{p{0.2\textwidth} p{0.8\textwidth}}
Code Release      & 2015-02-02 \\
Database Version  & 2003 (unchanged)\\
Release Ticket    & \ticket{393}\\
Url               & \releaseUrlDownloadBareosCom{14.2} \\
\end{tabular}

}

\releasenote{14.2.2}{

\begin{tabular}{p{0.2\textwidth} p{0.8\textwidth}}
Code Release      & 2014-12-12 \\
Database Version  & 2003 (unchanged)\\
                  & Database update required if updating from version $<$ 14.2.\\
                  & See the \nameref{bareos-update} section for details.\\
Url               & \releaseUrlDownloadBareosOrg{14.2} \\
                  & \releaseUrlDownloadBareosCom{14.2} \\
\end{tabular}

First stable release of the Bareos 14.2 branch.
}

\releasenote{14.2.1}{

\begin{tabular}{p{0.2\textwidth} p{0.8\textwidth}}
Code Release & 2014-09-22 \\
Database Version  & 2003\\
                  & Database update required, see the \nameref{bareos-update} section.\\
Url               & \releaseUrlDownloadBareosOrg{14.2} \\
\end{tabular}

Beta release.
}

\section*{Bareos-13.2}

\releasenote{13.2.5}{

\begin{tabular}{p{0.2\textwidth} p{0.8\textwidth}}
Code Release      & 2015-12-03 \\
Database Version  & 2002 (unchanged)\\
Url               & \releaseUrlDownloadBareosCom{13.2} \\
\end{tabular}

This release contains several bugfixes.
}

\releasenote{13.2.4}{

\begin{tabular}{p{0.2\textwidth} p{0.8\textwidth}}
Code Release      & 2014-11-05 \\
Database Version  & 2002 (unchanged)\\
Url               & \releaseUrlDownloadBareosCom{13.2} \\
\end{tabular}
}

\releasenote{13.2.3}{

\begin{tabular}{p{0.2\textwidth} p{0.8\textwidth}}
Code Release      & 2014-03-11 \\
Database Version  & 2002\\
                  & Database update required, see the \nameref{bareos-update} section.\\
Url               & \releaseUrlDownloadBareosCom{13.2} \\
\end{tabular}

It is known, that \command{drop_database} scripts will not longer work on PostgreSQL $<$ 8.4. However, as \command{drop_database} scripts are very seldom needed, package dependencies do not yet enforce PostgreSQL $>=$ 8.4. We plan to ensure this in future version of Bareos.
}

\releasenote{13.2.2}{

\begin{tabular}{p{0.2\textwidth} p{0.8\textwidth}}
Code Release      & 2013-11-19 \\
Database Version  & 2001 (unchanged)\\
Url               & \releaseUrlDownloadBareosOrg{13.2} \\
                  & \releaseUrlDownloadBareosCom{13.2} \\
\end{tabular}
}



\section*{Bareos-12.4}


\releasenote{12.4.8}{

\begin{tabular}{p{0.2\textwidth} p{0.8\textwidth}}
Code Release      & 2015-11-18 \\
Database Version  & 2001 (unchanged)\\
Url               & \releaseUrlDownloadBareosCom{12.4} \\
\end{tabular}

This release contains several bugfixes.
}


\releasenote{12.4.6}{

\begin{tabular}{p{0.2\textwidth} p{0.8\textwidth}}
Code Release      & 2013-11-19 \\
Database Version  & 2001 (unchanged)\\
Url               & \releaseUrlDownloadBareosOrg{12.4} \\
                  & \releaseUrlDownloadBareosCom{12.4} \\
\end{tabular}
}



\releasenote{12.4.5}{

\begin{tabular}{p{0.2\textwidth} p{0.8\textwidth}}
Code Release      & 2013-09-10 \\
Database Version  & 2001 (unchanged)\\
Url               & \releaseUrlDownloadBareosCom{12.4} \\
\end{tabular}
}


\releasenote{12.4.4}{

\begin{tabular}{p{0.2\textwidth} p{0.8\textwidth}}
Code Release      & 2013-06-17 \\
Database Version  & 2001 (unchanged)\\
Url               & \releaseUrlDownloadBareosOrg{12.4} \\
                  & \releaseUrlDownloadBareosCom{12.4} \\
\end{tabular}
}


\releasenote{12.4.3}{

\begin{tabular}{p{0.2\textwidth} p{0.8\textwidth}}
Code Release      & 2013-04-15 \\
Database Version  & 2001 (unchanged)\\
Url               & \releaseUrlDownloadBareosOrg{12.4} \\
                  & \releaseUrlDownloadBareosCom{12.4} \\
\end{tabular}
}


\releasenote{12.4.2}{

\begin{tabular}{p{0.2\textwidth} p{0.8\textwidth}}
Code Release      & 2013-03-03 \\
Database Version  & 2001 (unchanged)\\
\end{tabular}
}

\releasenote{12.4.1}{

\begin{tabular}{p{0.2\textwidth} p{0.8\textwidth}}
Code Release      & 2013-02-06 \\
Database Version  & 2001 (initial)\\
\end{tabular}

This have been the initial release of Bareos.

Information about migrating from Bacula to Bareos are available at \elink{Howto upgrade from Bacula to Bareos}{http://www.bareos.org/en/HOWTO/articles/upgrade_bacula_bareos.html} and in section \nameref{compat-bacula}.
}