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.

HISTORY.md 7.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253
  1. <a name="1.1.0"></a>
  2. # [1.1.0](https://github.com/mongodb/js-bson/compare/v1.0.9...v1.1.0) (2018-08-13)
  3. ### Bug Fixes
  4. * **serializer:** do not use checkKeys for $clusterTime ([573e141](https://github.com/mongodb/js-bson/commit/573e141))
  5. <a name="1.0.9"></a>
  6. ## [1.0.9](https://github.com/mongodb/js-bson/compare/v1.0.8...v1.0.9) (2018-06-07)
  7. ### Bug Fixes
  8. * **serializer:** remove use of `const` ([5feb12f](https://github.com/mongodb/js-bson/commit/5feb12f))
  9. <a name="1.0.7"></a>
  10. ## [1.0.7](https://github.com/mongodb/js-bson/compare/v1.0.6...v1.0.7) (2018-06-06)
  11. ### Bug Fixes
  12. * **binary:** add type checking for buffer ([26b05b5](https://github.com/mongodb/js-bson/commit/26b05b5))
  13. * **bson:** fix custom inspect property ([080323b](https://github.com/mongodb/js-bson/commit/080323b))
  14. * **readme:** clarify documentation about deserialize methods ([20f764c](https://github.com/mongodb/js-bson/commit/20f764c))
  15. * **serialization:** normalize function stringification ([1320c10](https://github.com/mongodb/js-bson/commit/1320c10))
  16. <a name="1.0.6"></a>
  17. ## [1.0.6](https://github.com/mongodb/js-bson/compare/v1.0.5...v1.0.6) (2018-03-12)
  18. ### Features
  19. * **serialization:** support arbitrary sizes for the internal serialization buffer ([abe97bc](https://github.com/mongodb/js-bson/commit/abe97bc))
  20. <a name="1.0.5"></a>
  21. ## 1.0.5 (2018-02-26)
  22. ### Bug Fixes
  23. * **decimal128:** add basic guard against REDOS attacks ([bd61c45](https://github.com/mongodb/js-bson/commit/bd61c45))
  24. * **objectid:** if pid is 1, use random value ([e188ae6](https://github.com/mongodb/js-bson/commit/e188ae6))
  25. 1.0.4 2016-01-11
  26. ----------------
  27. - #204 remove Buffer.from as it's partially broken in early 4.x.x. series of node releases.
  28. 1.0.3 2016-01-03
  29. ----------------
  30. - Fixed toString for ObjectId so it will work with inspect.
  31. 1.0.2 2016-01-02
  32. ----------------
  33. - Minor optimizations for ObjectID to use Buffer.from where available.
  34. 1.0.1 2016-12-06
  35. ----------------
  36. - Reverse behavior for undefined to be serialized as NULL. MongoDB 3.4 does not allow for undefined comparisons.
  37. 1.0.0 2016-12-06
  38. ----------------
  39. - Introduced new BSON API and documentation.
  40. 0.5.7 2016-11-18
  41. -----------------
  42. - NODE-848 BSON Regex flags must be alphabetically ordered.
  43. 0.5.6 2016-10-19
  44. -----------------
  45. - NODE-833, Detects cyclic dependencies in documents and throws error if one is found.
  46. - Fix(deserializer): corrected the check for (size + index) comparison… (Issue #195, https://github.com/JoelParke).
  47. 0.5.5 2016-09-15
  48. -----------------
  49. - Added DBPointer up conversion to DBRef
  50. 0.5.4 2016-08-23
  51. -----------------
  52. - Added promoteValues flag (default to true) allowing user to specify if deserialization should be into wrapper classes only.
  53. 0.5.3 2016-07-11
  54. -----------------
  55. - Throw error if ObjectId is not a string or a buffer.
  56. 0.5.2 2016-07-11
  57. -----------------
  58. - All values encoded big-endian style for ObjectId.
  59. 0.5.1 2016-07-11
  60. -----------------
  61. - Fixed encoding/decoding issue in ObjectId timestamp generation.
  62. - Removed BinaryParser dependency from the serializer/deserializer.
  63. 0.5.0 2016-07-05
  64. -----------------
  65. - Added Decimal128 type and extended test suite to include entire bson corpus.
  66. 0.4.23 2016-04-08
  67. -----------------
  68. - Allow for proper detection of ObjectId or objects that look like ObjectId, improving compatibility across third party libraries.
  69. - Remove one package from dependency due to having been pulled from NPM.
  70. 0.4.22 2016-03-04
  71. -----------------
  72. - Fix "TypeError: data.copy is not a function" in Electron (Issue #170, https://github.com/kangas).
  73. - Fixed issue with undefined type on deserializing.
  74. 0.4.21 2016-01-12
  75. -----------------
  76. - Minor optimizations to avoid non needed object creation.
  77. 0.4.20 2015-10-15
  78. -----------------
  79. - Added bower file to repository.
  80. - Fixed browser pid sometimes set greater than 0xFFFF on browsers (Issue #155, https://github.com/rahatarmanahmed)
  81. 0.4.19 2015-10-15
  82. -----------------
  83. - Remove all support for bson-ext.
  84. 0.4.18 2015-10-15
  85. -----------------
  86. - ObjectID equality check should return boolean instead of throwing exception for invalid oid string #139
  87. - add option for deserializing binary into Buffer object #116
  88. 0.4.17 2015-10-15
  89. -----------------
  90. - Validate regexp string for null bytes and throw if there is one.
  91. 0.4.16 2015-10-07
  92. -----------------
  93. - Fixed issue with return statement in Map.js.
  94. 0.4.15 2015-10-06
  95. -----------------
  96. - Exposed Map correctly via index.js file.
  97. 0.4.14 2015-10-06
  98. -----------------
  99. - Exposed Map correctly via bson.js file.
  100. 0.4.13 2015-10-06
  101. -----------------
  102. - Added ES6 Map type serialization as well as a polyfill for ES5.
  103. 0.4.12 2015-09-18
  104. -----------------
  105. - Made ignore undefined an optional parameter.
  106. 0.4.11 2015-08-06
  107. -----------------
  108. - Minor fix for invalid key checking.
  109. 0.4.10 2015-08-06
  110. -----------------
  111. - NODE-38 Added new BSONRegExp type to allow direct serialization to MongoDB type.
  112. - Some performance improvements by in lining code.
  113. 0.4.9 2015-08-06
  114. ----------------
  115. - Undefined fields are omitted from serialization in objects.
  116. 0.4.8 2015-07-14
  117. ----------------
  118. - Fixed size validation to ensure we can deserialize from dumped files.
  119. 0.4.7 2015-06-26
  120. ----------------
  121. - Added ability to instruct deserializer to return raw BSON buffers for named array fields.
  122. - Minor deserialization optimization by moving inlined function out.
  123. 0.4.6 2015-06-17
  124. ----------------
  125. - Fixed serializeWithBufferAndIndex bug.
  126. 0.4.5 2015-06-17
  127. ----------------
  128. - Removed any references to the shared buffer to avoid non GC collectible bson instances.
  129. 0.4.4 2015-06-17
  130. ----------------
  131. - Fixed rethrowing of error when not RangeError.
  132. 0.4.3 2015-06-17
  133. ----------------
  134. - Start buffer at 64K and double as needed, meaning we keep a low memory profile until needed.
  135. 0.4.2 2015-06-16
  136. ----------------
  137. - More fixes for corrupt Bson
  138. 0.4.1 2015-06-16
  139. ----------------
  140. - More fixes for corrupt Bson
  141. 0.4.0 2015-06-16
  142. ----------------
  143. - New JS serializer serializing into a single buffer then copying out the new buffer. Performance is similar to current C++ parser.
  144. - Removed bson-ext extension dependency for now.
  145. 0.3.2 2015-03-27
  146. ----------------
  147. - Removed node-gyp from install script in package.json.
  148. 0.3.1 2015-03-27
  149. ----------------
  150. - Return pure js version on native() call if failed to initialize.
  151. 0.3.0 2015-03-26
  152. ----------------
  153. - Pulled out all C++ code into bson-ext and made it an optional dependency.
  154. 0.2.21 2015-03-21
  155. -----------------
  156. - Updated Nan to 1.7.0 to support io.js and node 0.12.0
  157. 0.2.19 2015-02-16
  158. -----------------
  159. - Updated Nan to 1.6.2 to support io.js and node 0.12.0
  160. 0.2.18 2015-01-20
  161. -----------------
  162. - Updated Nan to 1.5.1 to support io.js
  163. 0.2.16 2014-12-17
  164. -----------------
  165. - Made pid cycle on 0xffff to avoid weird overflows on creation of ObjectID's
  166. 0.2.12 2014-08-24
  167. -----------------
  168. - Fixes for fortify review of c++ extension
  169. - toBSON correctly allows returns of non objects
  170. 0.2.3 2013-10-01
  171. ----------------
  172. - Drying of ObjectId code for generation of id (Issue #54, https://github.com/moredip)
  173. - Fixed issue where corrupt CString's could cause endless loop
  174. - Support for Node 0.11.X > (Issue #49, https://github.com/kkoopa)
  175. 0.1.4 2012-09-25
  176. ----------------
  177. - Added precompiled c++ native extensions for win32 ia32 and x64