[prev in list] [next in list] [prev in thread] [next in thread] 

List:       bacula-commits
Subject:    [Bacula-commits] [bacula.org] Bacula Community source branch
From:       git () bacula ! org
Date:       2011-11-23 10:46:50
Message-ID: 20111123104650.E270C39B5E9 () bacula ! bacula ! org
[Download RAW message or body]

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Bacula Community source".

The branch, Branch-5.2 has been updated
       via  01f21c4272f0dbf889834bb407b6e1f9c028a774 (commit)
       via  e8c6e7877ba2ac46638f658a9e87b73df5d84f9d (commit)
       via  bd64cd5f2d8788de7db192bd9d4ba22d87a63832 (commit)
      from  3253917dd64efec75ef38b028503673d974f1720 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 01f21c4272f0dbf889834bb407b6e1f9c028a774
Author: Eric Bollengier <eric@baculasystems.com>
Date:   Wed Nov 23 11:45:52 2011 +0100

    update version.h

commit e8c6e7877ba2ac46638f658a9e87b73df5d84f9d
Author: Eric Bollengier <eric@baculasystems.com>
Date:   Wed Nov 23 11:44:48 2011 +0100

    update releasenotes

commit bd64cd5f2d8788de7db192bd9d4ba22d87a63832
Author: Kern Sibbald <kern@sibbald.com>
Date:   Wed Nov 23 11:18:27 2011 +0100

    Fix script to set mode of cats scripts

-----------------------------------------------------------------------

Summary of changes:
diff --git a/bacula/ChangeLog b/bacula/ChangeLog
index e8fbd56..32403f3 100644
--- a/bacula/ChangeLog
+++ b/bacula/ChangeLog
@@ -1,17 +1,61 @@
-              Changelog on version 5.2.1
+              Changelog on version 5.2.2
+
+
+23Nov11
+ - Add Systemd configure options
+
+17Nov11
+ - Split messages line by line before sending it to syslog() fix #3325
+
+16Nov11
+ - Fix bvfs_restore on MySQL
+ - Fix #3308 where a SMTP problem can block the director
+
+12Nov11
+ - Change locking scheme of the mountpoint cache.
+
+11Nov11
+ - Enhance mountcache with rescan option after interval.
+
+10Nov11
+ - Add %D option to edit_job_code, simplify callbacks on director side
+
+09Nov11
+ - Move Zdeflate and Zinflate to seperate file.
+ - Put libraries in the correct order for non shared libs.
+
+07Nov11
+ - Remove last traces of @SQL_BINDIR@ and @DB_TYPE@
+ - Fix bug #1774
+ - Move batch insert detection into db.m4
+
+06Nov11
+ - Free jcr in btape before other pointers
+
+04Nov11
+ - bat: try to fix offset button problem when clicking too much on previous
+ - bvfs: Use single transaction for each job during update
+
+02Nov11
+ - Add missing bwild & bregex man8 pages
+ - Fix compilation issue of wx-console #1778
+
+31Oct11
+ - bvfs: fix filter for pattern= bvfs parameter
+ - Improve speed of BVFS with SQLite, Thanks to J.Starek
+
+30May11
+ - bvfs: add clear_cache function
+ - bvfs: Handle windows drive when building path hierarchy
 
 Bug fixes
-1389 1444 1448 1466 1467 1468 1476 1481 1486 1488 1493 1494 1497 1499 1501
-1502 1504 1509 1511 1513 1516 1524 1526 1527 1532 1536 1538 1541 1542 1549
-1551 1553 1554 1558 1559 1560 1564 1567 1568 1569 1571 1574 1577 1581 1582
-1584 1587 1594 1595 1600 1601 1602 1603 1604 1606 1608 1610 1612 1623 1624
-1633 1643 1648 1655 1661 1664 1666 1669 1672 1675 1684 1685 1695 1696 1699
-1700 1703 1735 1741 1749 1751 1761 1762 1764 1768 1770 1771 2710
+1774 1778 3308 3325
+
 
+Version 5.2.1
 
 
 30Oct11
- - Change name of authors -- confuses Mac
  - Don't define HAVE_POSTGRESQL twice
  - Don't use the -R (runtime link path) when not using libtool for the linking.
 
@@ -116,6 +160,13 @@ Bug fixes
 05Aug11
  - Fix bat seg fault in FileSet view
 
+Bug fixes
+1389 1444 1448 1466 1467 1468 1476 1481 1486 1488 1493 1494 1497 1499 1501
+1502 1504 1509 1511 1513 1516 1524 1526 1527 1532 1536 1538 1541 1542 1549
+1551 1553 1554 1558 1559 1560 1564 1567 1568 1569 1571 1574 1577 1581 1582
+1584 1587 1594 1595 1600 1601 1602 1603 1604 1606 1608 1610 1612 1623 1624
+1633 1643 1648 1655 1661 1664 1666 1669 1672 1675 1684 1685 1695 1696 1699
+1700 1703 1735 1741 1749 1751 1761 1762 1764 1768 1770 1771 2710
 
 Version 5.2.0rc1
 
diff --git a/bacula/Makefile.in b/bacula/Makefile.in
index cd7434b..c970d91 100755
--- a/bacula/Makefile.in
+++ b/bacula/Makefile.in
@@ -194,11 +194,11 @@ Makefiles:
 	 chmod 755 grant_bacula_privileges drop_bacula_tables drop_bacula_database; \
 	 chmod 755 make_catalog_backup delete_catalog_backup)
 
-	(cd src/cats; \
-	 for db_type in @DB_BACKENDS@; do \
-	 chmod 755 create_$$db_type_database update_$$db_type_tables make_$$db_type_tables; \
-	 chmod 755 grant_$$db_type_privileges drop_$$db_type_tables drop_$$db_type_database; \
-	 done)
+	@for I in @DB_BACKENDS@ ; do \
+	  (cd src/cats; \
+	   chmod 755 create_$${I}_database update_$${I}_tables make_$${I}_tables; \
+	   chmod 755 grant_$${I}_privileges drop_$${I}_tables drop_$${I}_database); \
+	  done
 
 	(cd src/qt-console; \
 	 chmod 755 install_conf_file build-depkgs-qt-console)
diff --git a/bacula/ReleaseNotes b/bacula/ReleaseNotes
index ae058c7..a35c43b 100644
--- a/bacula/ReleaseNotes
+++ b/bacula/ReleaseNotes
@@ -1,18 +1,18 @@
 
-               Release Notes for Bacula 5.2.1
+               Release Notes for Bacula 5.2.2
 
   Bacula code: Total files = 1,110 Total lines = 231,439 (Using SLOCCount)
 
 General:
 --------
+The 5.2.2 version is an important bug fix release. It contains also some
+aditions and performance improvements. 
 
-This 5.2.1 version is a major release since the last version 5.0.3.
+The 5.2.1 version is a major release since the last version 5.0.3.
 It includes well over 299,387 lines of changes made by 20 contributors,
 lots of bug fixes (see below), 1,851 software commits,and a 
 number of important new features:
 
-Version 5.2.0
--------------
 Version 5.2.0 was short lived, because Marco (thanks) found
 a number of last minute bugs. So the first official release of 5.2
 is 5.2.1.
@@ -22,12 +22,12 @@ Compatibility:
  As always, both the Director and Storage daemon must be upgraded at
  the same time.
 
- Older 5.0.x and 3.0.x File Daemons are compatible with the 5.2.1
+ Older 5.0.x and 3.0.x File Daemons are compatible with the 5.2.2
  Director and Storage daemons. There should be no need to upgrade older File
  Daemons.
 
-Main New Features:
-------------------
+5.2 New Features:
+-----------------
 - LZO Compression
 - New Tray Monitor
 - Purge Migration Job
diff --git a/bacula/src/version.h b/bacula/src/version.h
index b24186b..d9f7e0a 100644
--- a/bacula/src/version.h
+++ b/bacula/src/version.h
@@ -1,8 +1,8 @@
 
 #undef  VERSION
-#define VERSION "5.2.1"
-#define BDATE   "30 October 2011"
-#define LSMDATE "30Oct11"
+#define VERSION "5.2.2"
+#define BDATE   "17 November 2011"
+#define LSMDATE "17Nov11"
 
 #define PROG_COPYRIGHT "Copyright (C) %d-2011 Free Software Foundation Europe e.V.\n"
 #define BYEAR "2011"       /* year for copyright messages in progs */


hooks/post-receive
-- 
Bacula Community source

------------------------------------------------------------------------------
All the data continuously generated in your IT infrastructure 
contains a definitive record of customers, application performance, 
security threats, fraudulent activity, and more. Splunk takes this 
data and makes sense of it. IT sense. And common sense.
http://p.sf.net/sfu/splunk-novd2d
_______________________________________________
Bacula-commits mailing list
Bacula-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-commits
[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic