Next | Query returned 75 messages, browsing 21 to 30 | Previous

History of commit frequency

CVS Commit History:


   2012-01-18 14:48:37 by Adam Ciarcinski | Files touched by this commit (2)
Log message:
Changes 5.3.0:
* Support Berkeley DB 5.3.x.
* Drop support for Berkeley DB 4.2 and Python 2.3. Our reference
  is Red Had Enterprise Linux 5, until march 2014.
* Support for "DBEnv->set_intermediate_dir()", available in
  Berkeley DB 4.3-4.6.  Patch by Garret Cooper.
* Support for "DB->set_dup_compare()".  Original patches by
  Nikita M. Kozlovsky and Ben Schmeckpeper.
* Fixed a testsuite compatibility problem with BDB 5.2.
* If we are running Solaris or derivatives, and 64bit python,
  try to find the library under "/usr/local/Berkeley.*.*/64/".
* Solaris 10 Update 10 exposes a very old race condition in the replication
  master election tests. Some details in
  https://forums.oracle.com/forums/thread.jspa?messageID=9902860 .
  Workaround proposed in a private email from Paula Bingham (Oracle),
  in 20110929.
* When doing the full matrix test for a release, stop the verification
  if any test failed.
   2011-07-14 09:45:28 by Adam Ciarcinski | Files touched by this commit (2)
Log message:
Changes 5.2.0:
* Support for Berkeley DB 5.2.
* Support for the newly available replication manager events:
  DB_EVENT_REP_SITE_ADDED, DB_EVENT_REP_SITE_REMOVED,
  DB_EVENT_REP_LOCAL_SITE_REMOVED, DB_EVENT_REP_CONNECT_BROKEN,
  DB_EVENT_REP_CONNECT_ESTD, DB_EVENT_REP_CONNECT_TRY_FAILED,
  DB_EVENT_REP_INIT_DONE.
* New Object: "DB_SITE". Support for all its methods.
* Parameters for "DB_SITE->set_config()": DB_BOOTSTRAP_HELPER,
  DB_GROUP_CREATOR, DB_LEGACY, DB_LOCAL_SITE, DB_REPMGR_PEER.
* Support for some stuff in the new "Dynamic Environment Configuration":
  DB_MEM_LOCK, DB_MEM_LOCKOBJECT, DB_MEM_LOCKER, DB_MEM_LOGID,
  DB_MEM_TRANSACTION, DB_MEM_THREAD.
* Add "bytes" to "DBEnv_memp_stat()".
   2011-05-04 15:09:01 by Adam Ciarcinski | Files touched by this commit (3)
Log message:
Changes 5.1.2:
* 5.1.1 install fails if the bsddb in the standard library is not installed,
  under Python 2.7.
* Since 5.0.0, we can't find 4.x libraries unless we specify a
  "--berkeley-db=/path/to/bsddb" option.
* Support "DB_ENV->get_open_flags()", \ 
"DB_ENV->set_intermediate_dir_mode()",
  "DB_ENV->get_intermediate_dir_mode()".
* Support "DB->get_dbname()", "DB->get_open_flags()".
* Support "db_full_version()".
* Document "version()". This top-level function has been supported forever.
* Bugfix when calling "DB->get_size()" on a zero length record.
* 'assertEquals()' is deprecated in Python 3.2.
* 'assert_()' is deprecated in Python 3.2.
* Solved 'ResourceWarning' under Python 3.2.
   2011-02-23 11:46:18 by Adam Ciarcinski | Files touched by this commit (3)
Log message:
Changes 5.1.1:
* Recent pre-releases of Python 3.2 issue ResourceWarnings about
  fileshandles deallocated without being closed first. Fix testsuite.
* Current "*.pyc" and "*.pyo" cleaning is not working in a \ 
PEP 3147
  world ("__pycache__"). I don't think this code is actually
  necessary anymore. Deleted.
* Python 2.7.0 deprecates CObject incorrectly. See Python issue 9675.
* Testsuite for "DB->get_transactional()" should not create databases
  outside the TMP directory, neither leave the files behind.
* If something happens while creating the CObject/Capsule object,
  keep going, even without exporting the C API, instead of crashing.
* Support for "DB_FORCESYNC", "DB_FAILCHK", \ 
"DB_SET_REG_TIMEOUT",
  "DB_TXN_BULK", "DB_HOTBACKUP_IN_PROGRESS".
* Support "DB_EVENT_REG_ALIVE", "DB_EVENT_REG_PANIC",
  "DB_EVENT_REP_DUPMASTER", "DB_REPMGR_CONF_ELECTIONS",
  "DB_EVENT_REP_ELECTION_FAILED", "DB_EVENT_REP_MASTER_FAILURE".
* Support for "DB_VERB_REP_ELECT", "DB_VERB_REP_LEASE", \ 
"DB_VERB_REP_MISC",
  "DB_VERB_REP_MSGS", "DB_VERB_REP_SYNC", \ 
"DB_VERB_REP_SYSTEM",
  "DB_VERB_REPMGR_CONNFAIL", "DB_VERB_REPMGR_MISC".
* Support for "DB_STAT_LOCK_CONF", "DB_STAT_LOCK_LOCKERS",
  "DB_STAT_LOCK_OBJECTS", "DB_STAT_LOCK_PARAMS".
* Support for "DB_REP_CONF_INMEM".
* Support for "DB_TIMEOUT ".
* Support for "DB_CURSOR_BULK".
   2010-09-16 10:06:18 by Adam Ciarcinski | Files touched by this commit (27)
Log message:
Revbump after updating databases/db5
   2010-06-07 21:36:41 by Guillaume Lasmayous | Files touched by this commit (2)
Log message:
This is a python egg, so s/extension/egg in Makefile, to install egg info files.
Bump PKGREVISION.

Noted by Ryo HAYASAKA in pkg PR/43428
   2010-06-02 17:07:53 by Adam Ciarcinski | Files touched by this commit (1)
Log message:
Patch-aa isn't needed any more
   2010-06-02 14:22:59 by Adam Ciarcinski | Files touched by this commit (4) | Package updated
Log message:
Changes 5.0.0:
* Support for Berkeley DB 5.0.
* Drop support for Python 3.0.
* Now you can use TMPDIR env variable to override default
  test directory ("/tmp").
* Versioning of C API. If you use the code from C, please
  check the bsddb_api->api_version number against
  PYBSDDB_API_VERSION macro.
* In C code, the bsddb_api->dbsequence_type component is always available,
  even if the Berkeley DB version used doesn't support sequences. In that
  case, the component will be NULL.
* In C code, "DBSequenceObject_Check()" macro always exists, even if the
  Berkeley DB version used doesn't suport sequences. In that case, the test
  macro always returns "false".
* For a long time, the API has been accesible via C using "_bsddb.api" or
  "_pybsddb.api". If you are using Python >=2.7, you acquire access \ 
to that
  API via the new Capsule protocol (see "bsddb.h").  If you use the C \ 
API and
  upgrade to Python 2.7 and up, you must update the access code (see
  "bsddb.h"). The Capsule protocol is not supported in Python 3.0, but
  pybsddb 5.0.x doesn't support Python 3.0 anymore.
* Capsule support was buggy. The string passed in to PyCapsule_New() must
  outlive the capsule.
* Solve an "Overflow" warning in the testsuite running under python 2.3.
* When doing a complete full-matrix test, any warning will be considered
  an error.
   2009-06-14 19:43:27 by Joerg Sonnenberger | Files touched by this commit (120)
Log message:
Remove @dirrm entries from PLISTs
   2009-06-04 19:24:08 by Matthias Drochner | Files touched by this commit (2) | Package updated
Log message:
update to 4.7.6
changes:
-Compatibility with Python 3.0.1
-"DB.has_key()" used to return 0 or 1. Changed to return
 True or False instead. Check your code!
-Change "DBSequence.init_value()" to \ 
"DBSequence.initial_value()",
 for consistence with Berkeley DB real method name. This could
 require minimal changes in your code. The documentation was
 right.
-add more bindings

Next | Query returned 75 messages, browsing 21 to 30 | Previous