diff --git a/CHANGELOG.md b/CHANGELOG.md index d42c658..73b25a2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +### [3.0.1](https://github.com/b2broker/exante-node/compare/v3.0.0...v3.0.1) (2021-05-31) + +### Performance Improvements + +- **JSONStream:** add the `chunk` property to errors ([fa4023d](https://github.com/b2broker/exante-node/commit/fa4023dea67fec113f19ee53a71d6e9f73fbacbf)) + ## [3.0.0](https://github.com/b2broker/exante-node/compare/v2.0.0...v3.0.0) (2021-04-21) ### ⚠ BREAKING CHANGES diff --git a/docs/assets/js/main.js b/docs/assets/js/main.js index 8871bdd..7bbc430 100644 --- a/docs/assets/js/main.js +++ b/docs/assets/js/main.js @@ -260,35 +260,41 @@ }, /******/ - }; // The module cache + }; /************************************************************************/ - /******/ /******/ var __webpack_module_cache__ = {}; // The require function + /******/ // The module cache + /******/ var __webpack_module_cache__ = {}; /******/ - /******/ /******/ function __webpack_require__(moduleId) { + /******/ // The require function + /******/ function __webpack_require__(moduleId) { /******/ // Check if module is in cache /******/ if (__webpack_module_cache__[moduleId]) { /******/ return __webpack_module_cache__[moduleId].exports; /******/ - } // Create a new module (and put it into the cache) - /******/ /******/ var module = (__webpack_module_cache__[moduleId] = { + } + /******/ // Create a new module (and put it into the cache) + /******/ var module = (__webpack_module_cache__[moduleId] = { /******/ // no module.id needed /******/ // no module.loaded needed /******/ exports: {}, /******/ - }); // Execute the module function + }); /******/ - /******/ /******/ __webpack_modules__[moduleId]( + /******/ // Execute the module function + /******/ __webpack_modules__[moduleId]( module, module.exports, __webpack_require__ - ); // Return the exports of the module + ); /******/ - /******/ /******/ return module.exports; + /******/ // Return the exports of the module + /******/ return module.exports; /******/ - } /* webpack/runtime/compat get default export */ + } /******/ /************************************************************************/ - /******/ /******/ (() => { + /******/ /* webpack/runtime/compat get default export */ + /******/ (() => { /******/ // getDefaultExport function for compatibility with non-harmony modules /******/ __webpack_require__.n = (module) => { /******/ var getter = @@ -300,9 +306,10 @@ /******/ }; /******/ - })(); /* webpack/runtime/define property getters */ + })(); /******/ - /******/ /******/ (() => { + /******/ /* webpack/runtime/define property getters */ + /******/ (() => { /******/ // define getter functions for harmony exports /******/ __webpack_require__.d = (exports, definition) => { /******/ for (var key in definition) { @@ -321,15 +328,17 @@ /******/ }; /******/ - })(); /* webpack/runtime/hasOwnProperty shorthand */ + })(); /******/ - /******/ /******/ (() => { + /******/ /* webpack/runtime/hasOwnProperty shorthand */ + /******/ (() => { /******/ __webpack_require__.o = (obj, prop) => Object.prototype.hasOwnProperty.call(obj, prop); /******/ - })(); /* webpack/runtime/make namespace object */ + })(); /******/ - /******/ /******/ (() => { + /******/ /* webpack/runtime/make namespace object */ + /******/ (() => { /******/ // define __esModule on exports /******/ __webpack_require__.r = (exports) => { /******/ if (typeof Symbol !== "undefined" && Symbol.toStringTag) { @@ -342,12 +351,12 @@ /******/ }; /******/ - })(); // startup // Load entry module + })(); /******/ /************************************************************************/ - /******/ /******/ /******/ __webpack_require__( - "./default/assets/js/src/bootstrap.ts" - ); + /******/ // startup + /******/ // Load entry module + /******/ __webpack_require__("./default/assets/js/src/bootstrap.ts"); /******/ // This entry module used 'exports' so it can't be inlined /******/ })(); diff --git a/docs/classes/jsonstream.html b/docs/classes/jsonstream.html index dc4e002..427ccad 100644 --- a/docs/classes/jsonstream.html +++ b/docs/classes/jsonstream.html @@ -106,7 +106,11 @@
Inherited from Transform.__@asyncIterator
+ Returns a list listener for a specific emitter event + name. +
+Inherited from Transform.once