Next | Query returned 79 messages, browsing 71 to 80 | previous

History of commit frequency

CVS Commit History:


   2015-06-10 19:22:57 by Filip Hajny | Files touched by this commit (3) | Package updated
Log message:
Update databases/mongo-c-driver to 1.1.7.

mongo-c-driver 1.1.7

- Thread-safe use of Cyrus SASL library.
- Experimental support for building with CMake and SASL.
- Faster reconnection to replica set with some hosts down.
- Crash iterating a cursor after reconnecting to a replica set.
- Unchecked errors decoding invalid UTF-8 in MongoDB URIs.
- Fix error reporting from mongoc_client_get_database_names.

mongo-c-driver 1.1.6

- mongoc_bulk_operation_execute now coalesces consecutive update operations
  into a single message to a MongoDB 2.6+ server, yielding huge performance
  gains. Same for remove operations. (Inserts were always coalesced.)
- Large numbers of insert operations are now properly batched according
  to number of documents and total data size.
- GSSAPI / Kerberos auth now works.
- The driver no longer tries three times in vain to reconnect to a primary,
  so socketTimeoutMS and connectTimeoutMS now behave closer to what you
  expect for replica sets with down members. A full fix awaits 1.2.0.
- mongoc_matcher_t now supports basic subdocument and array matching

mongo-c-driver 1.1.5

- The fsync and j write concern flags now imply acknowledged writes
- Prevent using fsync or j with conflicting w=0 write concern
- Obey socket timeout consistently in TLS/SSL mode
- Return an error promptly after a network hangup in TLS mode
- Prevent crash using SSL in FIPS mode
- Always return NULL from mongoc_database_get_collection_names on error
- Fix version check for GCC 5 and future versions of Clang
- Fix warnings and errors building on various platforms
- Add configure flag to enable/disable shared memory performance counters
- Minor docs improvements and fix links from C Driver docs to Libbson docs
   2015-04-21 09:59:39 by Filip Hajny | Files touched by this commit (3)
Log message:
Update mongo-c-driver to 1.1.4. Fix PLIST for the ssl option enabled.

- Fixed client pool concurrency issues
- Fixed some scenarios where replica sets would fail to reconnect on
  primary step down.
- Improved write concern handling
- Validate port number in URI
- Various other fixes
   2015-03-24 14:22:09 by Filip Hajny | Files touched by this commit (4) | Package updated
Log message:
Update databases/mongo-c-driver to 1.1.2.

mongo-c-driver 1.1.2
====================
 * Process connectTimeoutMS cast insensitively
 * Addition of missing trace macros
 * Improvement of internal error messages
 * Fix a segfault in OpenSSL cleanup routines
 * Fix for IPv66 support for replica sets
 * Coalesce small vectorized TLS writes
 * MinGW fixups
 * Fix for a memory leak in get_database_names()
 * Fixes for patching write concern through the bulk api
 * Fix to normalize hostnames in uri parsing
 * Fix for managing connections in the client pool
 * Various other fixes

mongo-c-driver 1.1.0
====================
 * ABI versioning for 1.1 versus 1.0 symbols
 * additional geo index options
 * authMechanismProperties in URI
 * fixes for OS X Yosemite
 * removal of replica set member limit
 * SCRAM-SHA-1 SASL mechanism
 * updated dependency on libbson 1.1 abi
 * validation for bulk insert
 * various memory leak fixes
 * Fixes to documentation typos
 * "How to Ask For Help" in the README
 * Removed dependency on sasl for PLAIN authentication
 * Use provided username, if available, for X.509 auth
 * Fixed WriteConcern error reporting for some writes
 * Check for closed sockets before attempting RPCs
 * Fixes for gridfs file seek
 * Fixes for mongoc_cursor_clone()
 * Fixes for unix domain socket support
 * Fixes for polling on win32
 * Improved warnings on failure to connect
 * Addition of wired tiger options
 * Fixes for examples

Additions to the ABI include:
 * support for extra option in count
   - mongoc_collection_count_with_opts
 * additional index options
   - mongoc_index_opt_geo_get_default
   - mongoc_index_opt_geo_init
   - mongoc_index_opt_wt_get_default
   - mongoc_index_opt_wt_init
 * rand interface to seed and verify the strong random number generation needed
   by some auth mechanisms
   - mongoc_rand_seed
   - mongoc_rand_add
   - mongoc_rand_status
 * URI additions to support more complicated auth credentials
   - mongoc_uri_get_credentials
   - mongoc_uri_get_mechanism_properties
 * Support for cursor returning metadata crud operations
   - mongoc_client_find_databases
   - mongoc_collection_find_indexes
   - mongoc_database_find_collections
 * Kill cursor supportp
   - mongoc_client_kill_cursor
 * Various get/setters on cursor
   - mongoc_cursor_get_batch_size
   - mongoc_cursor_get_id
   - mongoc_cursor_set_batch_size
 * More socket/stream options
   - mongoc_socket_check_closed
   - mongoc_socket_inet_ntop
   - mongoc_stream_check_closed
   - mongoc_stream_write
   2015-01-01 10:50:31 by David A. Holland | Files touched by this commit (1)
Log message:
This builds fine on NetBSD; remove bogus NOT_FOR_PLATFORM.
   2014-12-12 12:35:05 by Filip Hajny | Files touched by this commit (2)
Log message:
Update mongo-c-driver to 1.0.2.
- A variety of fixes for read preference based node selection
- Avoided inclusion of getLastError in 2.6 writeConcern
- Correct handling of pass through params for collection_aggregate
- Improved error reporting in socket connect
- Public MONGOC_DEFAULT_CONNECTTIMEOUTMS
   2014-10-02 12:23:23 by Filip Hajny | Files touched by this commit (3)
Log message:
Update mongo-c-driver to 1.0.0.

A new libmongoc-priv.so library is installed that does not have symbols
hidden. You can access private headers via the -private.h variants. This
means you will need to recompile your project every time the library is
changed (if you use those private headers, as they are subject to change).

For other minor changes, see commits made since 0.98.0:

https://github.com/mongodb/mongo-c-driver/compare/0.98.0...1.0.0
   2014-07-18 12:41:43 by Filip Hajny | Files touched by this commit (4)
Log message:
Update mongo-c-driver to 0.98.0.

Changes in 0.98.0:
- This release is primarily a bugfix release and stabilization effort as we
  approach 1.0 of the MongoDB C driver.
- This release requires 0.98.0 of Libbson for improvements to the memory
  management system. You can now setup custom memory allocators at the
  start of the process.

Changes in 0.96.4:
- build/mci.sh script for automatically building Debian packages, RPMs,
  and Solaris packaging based on the host operating system.
- Various libbson improvements, now depending on 0.8.4.
- Alignment fixes for Solaris Studio C compiler via libbson.
- Addition of mongoc_gridfs_remove_by_filename() for removing a file from
  gridfs by filename.
- client command functions can now take a fully qualified namespace.
- collections can now support names that indicate a command namespace.
- Commands will no longer fail if they do not contain an "ok" field.
- OP_QUERY will now set the slaveOk bit in the wire protocol if
  readPreferences are set to non-PRIMARY.
- Various documentation and build fixes.
   2014-06-11 16:31:29 by Filip Hajny | Files touched by this commit (3)
Log message:
Update mongo-c-driver to 0.96.2.

Changes in 0.96.2
-----------------
 * Ensure batchSize is used in cursor GETMORE operations with `aggregate`.
 * Ensure enough buffer space is allocated for incoming RPC when buffering
   from a stream.
 * Require libbson 0.8.2 for more robust `bson_next_power_of_two()` when
   using `size_t` and BCON compilation fix with C++.
 * Handle cursor id's that are not 64-bit values in response from
   `aggregate` command.
 * Handle upsert on MongoDB < 2.6 when _id does not contain an `ObjectId`.
 * Use 100 for default batchSize in `aggregate` command.

Changes in 0.96.0
-----------------
This release includes much new documentation, which can be found at
http://docs.mongodb.org/ecosystem/drivers/c/.

Additionally, this release improves support for various exotic systems.
Solaris 10 is supported much better on SPARC and x86_64 based systems.

Some workarounds for mixed-mode sharded-clusters have been added to improve
resiliency when rolling upgrades are performed.

Build improvements have been added to help us detect SASL and SSL
implementations on platforms that do not support pkg-config. This should
simplify building for some of you.

We've added some more logging to SASL authentication to help debug
authentication failures.

A bug causing an abort() when SSL is used and a server is down has been fixed.

We've renamed various _delete() functions to _remove() to provide consistency
with other MongoDB drivers.

You can now specify SSL options for client pools.

-D_REENTRANT is always defined now on Solaris to help with errno detection.
This may not have been done before if using a non-GCC platform with pthreads.

A bug was fixed where timeouts could have been 1000x longer than expected
due to failure to convert from microseconds to milliseconds.

A bug was fixed with authentication in sharded cluster and replica set
scenarios.
   2014-05-07 17:47:00 by Filip Hajny | Files touched by this commit (7)
Log message:
Import mongo-c-driver as databases/mongo-c-driver.

mongo-c-driver is a client library written in C for MongoDB.

Next | Query returned 79 messages, browsing 71 to 80 | previous