]> git.ipfire.org Git - thirdparty/bacula.git/commitdiff
Update version + date + ReleaseNotes + ChangeLog
authorKern Sibbald <kern@sibbald.com>
Tue, 9 Jun 2020 12:25:17 +0000 (14:25 +0200)
committerKern Sibbald <kern@sibbald.com>
Tue, 9 Jun 2020 12:25:27 +0000 (14:25 +0200)
bacula/ChangeLog
bacula/ReleaseNotes
bacula/src/version.h

index efe23725f495c9db751ce6d99a9e6a7681612fcf..284852bad403217df1e9608febb46091eda9e87c 100644 (file)
@@ -1,5 +1,103 @@
-              Changelog for version 9.6.3
+              Changelog for version 9.6.4
 
+
+Release 9.6.4
+
+08Jun20
+ - Add configure variables to baculabackupreport. Patch from bug #2538
+ - Fix orphaned buffers in cloud by adding truncate argument to end_of_job()
+
+06Jun20
+ - Improve clarity of Cloud part mismatches and make it an INFO message rather 
+  than a WARNING since it corrects the catalog.
+ - Small trivial change to check_parts
+
+05Jun20
+ - Backport more Enterprise cloud parts changes
+ - Backport cloud upload code from Enterprise
+
+03Jun20
+ - Update s3_driver.c to new libs3 API calling sequence
+
+02Jun20
+ - Fix tray-monitor installation
+ - Recompile ./configure
+ - Add ./configure code to check for and enable/disable S3 support
+ - win32: Fix org#2547 About possible NULL pointer dereference in get_memory_info
+ - Ensure cloud driver loaded when listing cloud volumes
+
+29May20
+ - baculum: Request #2546 support for full restore when file records for backup 
+  job are pruned
+
+25May20
+ - baculum: Fix problem with authorization error after upgrade
+ - baculum: Add UPGRADE file
+
+24May20
+ - baculum: Fix returning value in TStyleDiff - generated notice with PHP 
+  7.4
+ - baculum: Remove execute bit for framework scripts
+
+22May20
+ - baculum: Fix displaying empty column button in table column visibility menu - 
+  reported by Wanderlei Huttel
+
+21May20
+ - baculum: Update Polish translations
+ - baculum: Update Portuguese translations
+
+19May20
+ - baculum: New user management. LDAP support. Role-based access control.
+
+12May20
+ - Fix new compiler warnings + always use bstrncpy not strncpy to ensure EOS at 
+  end of string
+
+11May20
+ - Return smartalloc buffers zeroed -- future performance improvement
+
+10May20
+ - Improve scanning data/time, fixes bug #2472
+ - Make ABORT mention segfault to clarify non-bug #2528
+ - Make reading a short block a warning rather than error
+
+09May20
+ - baculum: Fix validators in run job modal window
+
+02May20
+ - Remove unused -t option in dbcheck.c -- fixes bug #2453
+
+01May20
+ - Fix bug 2523 -- spurious extra linking
+ - Fix bug #2534 possible double free in error case
+ - Fix possible sscanf overflows
+ - Fix overflow from malicious FD reported by Pasi Saarinen
+
+18Apr20
+ - baculum: Add option to show time in job log - idea proposed by Wanderlei 
+  Huttel
+ - baculum: Add show log time parameter to job log endpoint
+
+16Apr20
+ - baculum: Add tip about using table row selection
+
+17Mar20
+ - Fix bug #2525 seg fault when doing estimate with accurate and MD5
+ - baculum: Fix issues with SELinux support reported by Neil MacGregor
+
+16Mar20
+ - Correct some copyrights
+
+07Mar20
+ - Add Docker plugin rpm spec files
+
+Bugs fixed/closed since last release:
+2453 2472 2525 2528 2534 2546 2547
+
+===========================================================
+
+Release Version 9.6.3
 09Mar20
  - Eliminate false error when droping postgres table MAC
  - Apply Carsten's character set fix for the docs. Many thanks!
index 0b33f0f70c7cd5abe03e06880d6808efbf656262..c3908c826447bdf4bab795bf26b31029da87748a 100644 (file)
@@ -1,5 +1,85 @@
 
-               Release Notes for Bacula 9.6.3
+               Release Notes for Bacula 9.6.4
+
+This is a major security and bug fix release. We suggest everyone
+to upgrade as soon as possible.
+
+One significant improvement is for the AWS S3 cloud driver. First the
+code base has been brought much closer to the Enterprise version (still
+a long ways to go). Second is that the community code now uses the latest
+version of libs3 as maintained by Bacula Systems.  The libs3 code is
+available as a tar file for Bacula version 9.6.4 at: 
+
+   www.bacula.org/downloads/libs3-20200523.tar.gz
+
+Note: Version 9.6.4 must be compiled with the above libs3 version or later.
+To build libs3:
+- Remove any libs3 package loaded by your OS
+- Download above link
+- tar xvfz libs3-20200523.tar.gz
+- cd libs3-20200523
+- make  # should have no errors
+- sudo make install
+
+Then when you do your Bacula ./configure <args> it should automatically
+detect and use the libs3. The output from the ./configure will show
+whether or not libs3 was found during the configuration. E.g.
+   S3 support:                yes
+in the output from ./configure.
+
+08Jun20
+ - Add configure variables to baculabackupreport. Patch from bug #2538
+ - Fix orphaned buffers in cloud by adding truncate argument to end_of_job()
+ - Improve clarity of Cloud part mismatches and make it an INFO message rather 
+   than a WARNING since it corrects the catalog.
+ - Small trivial change to check_parts
+ - Backport more Enterprise cloud parts changes
+ - Backport cloud upload code from Enterprise
+ - Update s3_driver.c to new libs3 API calling sequence
+ - Fix tray-monitor installation
+ - Recompile ./configure
+ - Add ./configure code to check for and enable/disable S3 support
+ - win32: Fix org#2547 About possible NULL pointer dereference in get_memory_info
+ - Ensure cloud driver loaded when listing cloud volumes
+ - baculum: Request #2546 support for full restore when file records for backup 
+   job are pruned
+ - baculum: Fix problem with authorization error after upgrade
+ - baculum: Add UPGRADE file
+ - baculum: Fix returning value in TStyleDiff - generated notice with PHP 
+   7.4
+ - baculum: Remove execute bit for framework scripts
+ - baculum: Fix displaying empty column button in table column visibility menu - 
+  reported by Wanderlei Huttel
+ - baculum: Update Polish translations
+ - baculum: Update Portuguese translations
+ - baculum: New user management. LDAP support. Role-based access control.
+ - Fix new compiler warnings + always use bstrncpy not strncpy to ensure EOS at 
+   end of string
+ - Return smartalloc buffers zeroed -- future performance improvement
+ - Improve scanning data/time, fixes bug #2472
+ - Make ABORT mention segfault to clarify non-bug #2528
+ - Make reading a short block a warning rather than error
+ - baculum: Fix validators in run job modal window
+ - Remove unused -t option in dbcheck.c -- fixes bug #2453
+ - Fix bug 2523 -- spurious extra linking
+ - Fix bug #2534 possible double free in error case
+ - Fix possible sscanf overflows
+ - Fix overflow from malicious FD reported by Pasi Saarinen
+ - baculum: Add option to show time in job log - idea proposed by Wanderlei 
+   Huttel
+ - baculum: Add show log time parameter to job log endpoint
+ - baculum: Add tip about using table row selection
+ - Fix bug #2525 seg fault when doing estimate with accurate and MD5
+ - baculum: Fix issues with SELinux support reported by Neil MacGregor
+ - Correct some copyrights
+ - Add Docker plugin rpm spec files
+
+Bugs fixed/closed since last release:
+2453 2472 2525 2528 2534 2538 2546 2547
+
+===================================================================
+
+Release 9.6.3
 
 This is a minor bug fix (mostly fixing incorrect copyrights) to Release-9.6.2.
 
index 34f58b513f0e0a6617d49947b16a31ae13056e44..fd892d55470aafb90d84595e770c3529ac593b18 100644 (file)
@@ -6,8 +6,8 @@
 
 /* Note: there can be only *one* VERSION in this file */
 #define VERSION "9.6.4"
-#define BDATE   "12 May 2020"
-#define LSMDATE "12May20"
+#define BDATE   "08 June 2020"
+#define LSMDATE "08Jun20"
 
 #define RELEASE 1   /* Use ONLY in rpms */