|
| 1 | +C#/.NET driver changes from 1.6.1 to 1.7 |
| 2 | + |
| 3 | +SafeModeResult.cs |
| 4 | + deprecated class |
| 5 | + use WriteConcernResult instead |
| 6 | + |
| 7 | +WriteConcernResult.cs |
| 8 | + new class |
| 9 | + replaces SafeModeResult |
| 10 | + derives from SafeModeResult for temporary backwards compatibiliy |
| 11 | + |
| 12 | +MongoClient.cs |
| 13 | + new root class (see Release Notes) |
| 14 | + use instead of MongoServer (or in addition to) |
| 15 | + |
| 16 | +MongoClientSettings.cs |
| 17 | + new class |
| 18 | + used instead of MongoServerSettings |
| 19 | + |
| 20 | +MongoCollection.cs |
| 21 | + all methods that used to return a SafeModeResult now return a WriteConcernResult |
| 22 | + all methods that used to take a SafeMode parameter now take a WriteConcern parameter |
| 23 | + |
| 24 | +MongoCollectionSettings.cs |
| 25 | + deprecated SafeMode property (use WriteConcern instead) |
| 26 | + added WriteConcern property |
| 27 | + |
| 28 | +MongoConnectionStringBuilder.cs |
| 29 | + deprecated SafeMode property (use FSync, Journal, W and WTimeout instead) |
| 30 | + added FSync, Journal, W and WTimeout properties |
| 31 | + added argument checking to many property set methods |
| 32 | + added GetWriteConcern method |
| 33 | + remove use of safe=true (Parse still supports it for backwards compatibility) |
| 34 | + |
| 35 | +MongoCredentialsStore.cs |
| 36 | + added IsFrozen property |
| 37 | + |
| 38 | +MongoDatabase.cs |
| 39 | + deprecated Create methods (use MongoClient and GetDatabase instead) |
| 40 | + all methods that used to take a SafeMode parameter now take a WriteConcern parameter |
| 41 | + |
| 42 | +MongoDatabaseSettings.cs |
| 43 | + deprecated SafeMode property (use WriteConcern instead) |
| 44 | + added WriteConcern property |
| 45 | + |
| 46 | +MongoInsertOptions.cs |
| 47 | + deprecated SafeMode property (use WriteConcern instead) |
| 48 | + added WriteConcern property |
| 49 | + |
| 50 | +MongoServer.cs |
| 51 | + deprecated Create methods (use MongoClient and GetServer instead) |
| 52 | + all methods that used to take a SafeMode parameter now take a WriteConcern parameter |
| 53 | + |
| 54 | +MongoServerAddress.cs |
| 55 | + fixed exception message for invalid server address |
| 56 | + |
| 57 | +MongoServerSettings.cs |
| 58 | + deprecated SafeMode property (use WriteConcern instead) |
| 59 | + added WriteConcern property |
| 60 | + fixed default connection mode to be Automatic |
| 61 | + deprecated one constructor that will be removed in a later version |
| 62 | + added FromClientSettings method |
| 63 | + added FromConnectionStringBuilder method |
| 64 | + added FromUrl method |
| 65 | + reimplemented Clone |
| 66 | + |
| 67 | +MongoUpdateOptions.cs |
| 68 | + deprecated SafeMode property (use WriteConcern instead) |
| 69 | + added WriteConcern property |
| 70 | + |
| 71 | +MongoUrl.cs |
| 72 | + added private fields for all values (instead of using an instance of MongoServerSettings to hold the values) |
| 73 | + deprecated SafeMode property (use FSync, Journal, W and WTimeout instead) |
| 74 | + added FSync, Journal, W and WTimeout properties |
| 75 | + added GetWriteConcern method |
| 76 | + deprecated ToServerSettings (use MongoServerSettings.FromUrl instead) |
| 77 | + |
| 78 | +MongoUrlBuilder.cs |
| 79 | + deprecated SafeMode property (use FSync, Journal, W and WTimeout instead) |
| 80 | + added FSync, Journal, W and WTimeout properties |
| 81 | + added argument checking to many property set methods |
| 82 | + added GetWriteConcern method |
| 83 | + deprecated ToServerSettings (use MongoServerSettings.FromUrl instead) |
| 84 | + remove use of safe=true (Parse still supports it for backwards compatibility) |
| 85 | + |
| 86 | +SafeMode.cs |
| 87 | + deprecated class (use WriteConcern instead) |
| 88 | + reimplemented to forward all operations to an underlying WriteConcern |
| 89 | + |
| 90 | +WriteConcern.cs |
| 91 | + new class (replaces SafeMode, see Release Notes) |
| 92 | + new nested abstract class WValue and subclasses WCount and WMode |
| 93 | + |
| 94 | +MongoSafeModeException.cs |
| 95 | + deprecated class (use WriteConcernException instead) |
| 96 | + |
| 97 | +WriteConcernException.cs |
| 98 | + new class (replaces MongoSafeModeException) |
| 99 | + derives from MongoSafeModeException for backward compatibility |
| 100 | + |
| 101 | +MongoGridFSSettings.cs |
| 102 | + deprecated SafeMode property (use WriteConcern instead) |
| 103 | + added WriteConcern property |
| 104 | + |
| 105 | +PredicateTranslator.cs |
| 106 | + added support for ToLowerInvariant and ToUpperInvariant in LINQ queries |
| 107 | + improved support for mapping array element references in LINQ queries to dotted field notation in more cases |
| 108 | + improved support for type related LINQ queries |
| 109 | + |
| 110 | +MongoDefaults.cs |
| 111 | + deprecated SafeMode property (no replacement, the default WriteConcern is always Acknowledged) |
0 commit comments