Ohm-Management - Projektarbeit B-ME
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CHANGELOG.md 4.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210
  1. 2.0.3 / 2018-12-03
  2. ================
  3. * __Fix__ interval autoremove mode to use current date with every interval (#304, #305) (jlampise)
  4. 2.0.2 / 2018-11-20
  5. ================
  6. * __Fix__ #300 DeprecationWarning: collection.remove is deprecated. Use deleteOne, deleteMany, or bulkWrite instead
  7. * __Fix__ #297 DeprecationWarning: collection.update is deprecated. Use updateOne, updateMany, or bulkWrite instead
  8. 2.0.1 / 2018-01-04
  9. ================
  10. * __Fix__ #271 TypeError: cb is not a function (brainthinks)
  11. 2.0.0 / 2017-10-09
  12. =================
  13. * __Drop__ Node.js 0.12 and io.js support
  14. * __Drop__ MongoDB 2.x support
  15. * __Drop__ mongodb driver < 2.0.36 support
  16. * __Drop__ mongoose < 4.1.2 support
  17. * __Fix__ `ensureIndex` deprecation warning ([#268](https://github.com/jdesboeufs/connect-mongo/issues/268), [#269](https://github.com/jdesboeufs/connect-mongo/pulls/269), [#270](https://github.com/jdesboeufs/connect-mongo/pulls/270))
  18. * Improve `get()` ([#246](https://github.com/jdesboeufs/connect-mongo/pulls/246))
  19. * Pass session in `touch` event
  20. * Remove `bluebird` from dependencies
  21. 1.3.2 / 2016-07-27
  22. =================
  23. * __Fix__ #228 Broken with mongodb@1.x
  24. 1.3.1 / 2016-07-23
  25. =================
  26. * Restrict `bluebird` accepted versions to 3.x
  27. 1.3.0 / 2016-07-23
  28. =================
  29. * __Add__ `create` and `update` events ([#215](https://github.com/jdesboeufs/connect-mongo/issues/215))
  30. * Extend `mongodb` compatibility to `2.x`
  31. 1.2.1 / 2016-06-20
  32. =================
  33. * __Fix__ bluebird warning (Awk34)
  34. 1.2.0 / 2016-05-13
  35. =================
  36. * Accept `dbPromise` as connection param
  37. * __Add__ `close()` method to close current connection
  38. 1.1.0 / 2015-12-24
  39. =================
  40. * Support mongodb `2.1.x`
  41. 1.0.2 / 2015-12-18
  42. =================
  43. * Enforce entry-points
  44. 1.0.1 / 2015-12-17
  45. =================
  46. * __Fix__ entry-point
  47. 1.0.0 (deprecated) / 2015-12-17
  48. ==================
  49. __Breaking changes:__
  50. * __For older Node.js version (`< 4.0`), the module must be loaded using `require('connect-mongo/es5')`__
  51. * __Drop__ `hash` option (advanced)
  52. __Others changes:__
  53. * __Add__ `transformId` option to allow custom transformation on session id (advanced)
  54. * __Rewrite in ES6__ (w/ fallback)
  55. * Update dependencies
  56. * Improve compatibility
  57. 0.8.2 / 2015-07-14
  58. ==================
  59. * Bug fixes and improvements (whitef0x0, TimothyGu, behcet-li)
  60. 0.8.1 / 2015-04-21
  61. ==================
  62. * __Fix__ initialization when a connecting `mongodb` `2.0.x` instance is given (1999)
  63. 0.8.0 / 2015-03-24
  64. ==================
  65. * __Add__ `touchAfter` option to enable lazy update behavior on `touch()` method (rafaelcardoso)
  66. * __Add__ `fallbackMemory` option to switch to `MemoryStore` in some case.
  67. 0.7.0 / 2015-01-24
  68. ==================
  69. * __Add__ `touch()` method to be fully compliant with `express-session` `>= 1.10` (rafaelcardoso)
  70. 0.6.0 / 2015-01-12
  71. ==================
  72. * __Add__ `ttl` option
  73. * __Add__ `autoRemove` option
  74. * __Deprecate__ `defaultExpirationTime` option. Use `ttl` instead (in seconds)
  75. 0.5.3 / 2014-12-30
  76. ==================
  77. * Make callbacks optional
  78. 0.5.2 / 2014-12-29
  79. ==================
  80. * Extend compatibility to `mongodb` `2.0.x`
  81. 0.5.1 / 2014-12-28
  82. ==================
  83. * [bugfix] #143 Missing Sessions from DB should still make callback (brekkehj)
  84. 0.5.0 (deprecated) / 2014-12-25
  85. ==================
  86. * Accept full-featured [MongoDB connection strings](http://docs.mongodb.org/manual/reference/connection-string/) as `url` + [advanced options](http://mongodb.github.io/node-mongodb-native/1.4/driver-articles/mongoclient.html)
  87. * Re-use existing or upcoming mongoose connection
  88. * [DEPRECATED] `mongoose_connection` is renamed `mongooseConnection`
  89. * [DEPRECATED] `auto_reconnect` is renamed `autoReconnect`
  90. * [BREAKING] `autoReconnect` option is now `true` by default
  91. * [BREAKING] Insert `collection` option in `url` in not possible any more
  92. * [BREAKING] Replace for-testing-purpose `callback` by `connected` event
  93. * Add debug (use with `DEBUG=connect-mongo`)
  94. * Improve error management
  95. * Compatibility with `mongodb` `>= 1.2.0` and `< 2.0.0`
  96. * Fix many bugs
  97. 0.4.2 / 2014-12-18
  98. ==================
  99. * Bumped mongodb version from 1.3.x to 1.4.x (B0k0)
  100. * Add `sid` hash capability (ZheFeng)
  101. * Add `serialize` and `unserialize` options (ksheedlo)
  102. 0.3.3 / 2013-07-04
  103. ==================
  104. * Merged a change which reduces data duplication
  105. 0.3.0 / 2013-01-20
  106. ==================
  107. * Merged several changes by Ken Pratt, including Write Concern support
  108. * Updated to `mongodb` version 1.2
  109. 0.2.0 / 2012-09-09
  110. ==================
  111. * Integrated pull request for `mongoose_connection` option
  112. * Move to mongodb 1.0.x
  113. 0.1.5 / 2010-07-07
  114. ==================
  115. * Made collection setup more robust to avoid race condition
  116. 0.1.4 / 2010-06-28
  117. ==================
  118. * Added session expiry
  119. 0.1.3 / 2010-06-27
  120. ==================
  121. * Added url support
  122. 0.1.2 / 2010-05-18
  123. ==================
  124. * Added auto_reconnect option
  125. 0.1.1 / 2010-03-18
  126. ==================
  127. * Fixed authentication
  128. 0.1.0 / 2010-03-08
  129. ==================
  130. * Initial release