Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(type-guards): fix user-defined type guards #83

Merged
merged 1 commit into from
Oct 17, 2017

Conversation

trxcllnt
Copy link
Member

also ran prettier on everything, so there's that :/

closes #44 for real now tho

Description:

Related issue (if exists):

also ran prettier on everything, so there's that :/

closes #44 for real now tho
@mattpodwysocki mattpodwysocki merged commit fd45455 into master Oct 17, 2017
@mattpodwysocki mattpodwysocki deleted the fix-user-defined-typeguards branch October 17, 2017 01:29
@patsissons
Copy link
Contributor

patsissons commented Nov 3, 2017

The change appears to have broken some generated predicate signatures? my 2.3.0 single.ts module has required predicate param instead of optional.

// node_modules/ix/add/iterable-operators/single.ts
export function singleProto<T, S extends T>(
  this: IterableX<T>,
  predicate: (value: T, index: number) => value is S
): S | undefined;
export function singleProto<T>(
  this: IterableX<T>,
  predicate: (value: T, index: number) => boolean
): T | undefined;
export function singleProto<T>(
  this: IterableX<T>,
  predicate: (value: T, index: number) => boolean = () => true
): T | undefined {
  return single(this, predicate);
}

@trxcllnt
Copy link
Member Author

trxcllnt commented Nov 5, 2017

@patsissons ah shit, thanks for reporting. will review the rest of the changes here and do a patch release with all the fixes

bors bot added a commit to neo-one-suite/neo-one that referenced this pull request Jan 4, 2019
848: docs(Reference): Give object parameters a name if they will be includ… r=davemneo a=afragapane

With dgeni typescript parsing, function parameters display awkwardly if they are unnamed objects.
Giving them a name like "options" fixes the issue and displays them properly.

#702

900: chore(dep-update): Updating code style of ReferenceGrid r=dicarlo2 a=davemneo

### Requirements

Update asserted code per new lint rules.

### Description of the Change

remove 'any' type casting from identified file.

### Test Plan

Standard lint test
    yarn lint

### Benefits

Green lint test.

### Applicable Issues

#758

903: chore(deps): update dependency @reactivex/ix-es2015-cjs to v2.4.3 r=davemneo a=renovate[bot]

This PR contains the following updates:

| Package | Type | Update | Change | References |
|---|---|---|---|---|
| @&#8203;reactivex/ix-es2015-cjs | devDependencies | minor | `2.3.5` -> `2.4.3` | [source](https://renovatebot.com/gh/ReactiveX/IxJS) |

---

### Release Notes

<details>
<summary>ReactiveX/IxJS</summary>

### [`v2.4.3`](https://renovatebot.com/gh/ReactiveX/IxJS/releases/v2.4.3)

[Compare Source](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.4.2...v2.4.3)

New release of IxJS is now available.  This includes a number of new features and improvements to existing APIs.

#### New APIs are available

The following APIs have been added to `AsyncIterable`

-   [`batch`](https://renovatebot.com/gh/ReactiveX/IxJS/blob/master/src/asynciterable/batch.ts)
-   [`toNodeStream`](https://renovatebot.com/gh/ReactiveX/IxJS/blob/master/src/asynciterable/tonodestream.ts)

The following APIs have been added to `Iterable`

-   [`toNodeStream`](https://renovatebot.com/gh/ReactiveX/IxJS/blob/master/src/iterable/tonodestream.ts)

##### API Fixes

-   [`AsyncIterable.fromNodeStream`](https://renovatebot.com/gh/ReactiveX/IxJS/blob/master/src/asynciterable/fromnodestream.ts) has been optimized for streams and `AsyncIterables`
-   [`AsyncIterable.prototype.pipe`](https://renovatebot.com/gh/ReactiveX/IxJS/blob/master/src/Ix.node.ts) now accepts Node.js `WritableStream` values in addition to operators.

##### Bug Fixes

-   **dependencies:** add rxjs to the production dependencies list ([54e5cf7](https://renovatebot.com/gh/ReactiveX/IxJS/commit/54e5cf7))

### [`v2.4.2`](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.4.0...v2.4.2)

[Compare Source](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.4.0...v2.4.2)

### [`v2.4.0`](https://renovatebot.com/gh/ReactiveX/IxJS/blob/master/CHANGELOG.md#&#8203;240httpsgithubcomReactiveXIxJScomparev235v240-2019-01-03)

[Compare Source](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.3.5...v2.4.0)

##### Bug Fixes

-   **toObservable:** adds symbol-observable for rxjs interop ([273e697](https://renovatebot.com/gh/ReactiveX/IxJS/commit/273e697)), closes [#&#8203;245](https://renovatebot.com/gh/ReactiveX/IxJS/issues/245)

##### Features

-   add support for passing Node WritableStreams to `AsyncIterableX#pipe()` ([#&#8203;257](https://renovatebot.com/gh/ReactiveX/IxJS/issues/257)) ([9a1c5cc](https://renovatebot.com/gh/ReactiveX/IxJS/commit/9a1c5cc))

-   add `AsyncIterableX#toNodeStream()` ([#&#8203;257](https://renovatebot.com/gh/ReactiveX/IxJS/issues/257)) ([9a1c5cc](https://renovatebot.com/gh/ReactiveX/IxJS/commit/9a1c5cc))

-   add `AsyncIterableX#batch()` ([#&#8203;222](https://renovatebot.com/gh/ReactiveX/IxJS/issues/222)) ([9c9bd7e](https://renovatebot.com/gh/ReactiveX/IxJS/commit/9c9bd7e))

#### [2.3.5](https://renovatebot.com/gh/ReactiveX/IxJS/compare/9.2.0...v2.3.5) (2018-02-19)

##### Bug Fixes

-   **compile:** adding some missing exports to deal with typescript 2.7.x compat issue ([0b0c837](https://renovatebot.com/gh/ReactiveX/IxJS/commit/0b0c837)), closes [#&#8203;214](https://renovatebot.com/gh/ReactiveX/IxJS/issues/214)

##### Features

-   **orderby:** add piped orderby ([#&#8203;190](https://renovatebot.com/gh/ReactiveX/IxJS/issues/190)) ([aaa527a](https://renovatebot.com/gh/ReactiveX/IxJS/commit/aaa527a))

#### [2.3.4](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.3.3...v2.3.4) (2017-11-29)

##### Bug Fixes

-   **typings:** Fix optional predicate typings for user-defined typeguard predicates ([fedd563](https://renovatebot.com/gh/ReactiveX/IxJS/commit/fedd563))
-   **typings:** workaround typescript bugs when noImplicitAny or strictNullChecks are not true ([ce03239](https://renovatebot.com/gh/ReactiveX/IxJS/commit/ce03239))

#### [2.3.3](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.3.2...v2.3.3) (2017-11-21)

##### Reverts

-   **npm:** revert [`4493754`](https://renovatebot.com/gh/ReactiveX/IxJS/commit/4493754d9fbbc061347d8ef785704b61ecb486c5) ([564c600](https://renovatebot.com/gh/ReactiveX/IxJS/commit/564c600)), closes [#&#8203;163](https://renovatebot.com/gh/ReactiveX/IxJS/issues/163)

#### [2.3.2](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.3.1...v2.3.2) (2017-11-21)

##### Bug Fixes

-   **fromnodestream:** enable fromnodestream tests, fix minification problems ([#&#8203;156](https://renovatebot.com/gh/ReactiveX/IxJS/issues/156)) ([745d763](https://renovatebot.com/gh/ReactiveX/IxJS/commit/745d763))
-   **fromnodestream:** type fromNodeStream to accept NodeJS.ReadableStream interface ([3cbf2dd](https://renovatebot.com/gh/ReactiveX/IxJS/commit/3cbf2dd))
-   **FromObservableAsyncIterable:** Fix handling of asynchronously emitting Observables ([#&#8203;150](https://renovatebot.com/gh/ReactiveX/IxJS/issues/150)) ([2c7222c](https://renovatebot.com/gh/ReactiveX/IxJS/commit/2c7222c))
-   **readme:** fix lettable syntax ([0e46181](https://renovatebot.com/gh/ReactiveX/IxJS/commit/0e46181))

##### Features

-   **as:** Add static as convenience methods to wrap values as Async/Iterables ([#&#8203;154](https://renovatebot.com/gh/ReactiveX/IxJS/issues/154)) ([79a14c5](https://renovatebot.com/gh/ReactiveX/IxJS/commit/79a14c5))

#### [2.3.1](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.3.0...v2.3.1) (2017-11-08)

##### Bug Fixes

-   **single:** make iterable prototype single predicate an optional parameter again ([2bea5ab](https://renovatebot.com/gh/ReactiveX/IxJS/commit/2bea5ab)), closes [/github.com/ReactiveX/IxJS/pull/83#issuecomment-341832266](https://renovatebot.com/gh//github.com/ReactiveX/IxJS/pull/83/issues/issuecomment-341832266)

</details>

---

### Renovate configuration

:date: **Schedule**: At any time (no schedule defined).

:vertical_traffic_light: **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

:recycle: **Rebasing**: Whenever PR becomes conflicted, or if you modify the PR title to begin with "`rebase!`".

:no_bell: **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- renovate-rebase -->If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Renovate Bot](https://renovatebot.com/gh/marketplace/renovate). View repository job log [here](https://renovatebot.com/dashboard#neo-one-suite/neo-one).

906: chore(deps): update dependency cache-loader to v2.0.1 r=davemneo a=renovate[bot]

This PR contains the following updates:

| Package | Type | Update | Change | References |
|---|---|---|---|---|
| cache-loader | devDependencies | patch | `2.0.0` -> `2.0.1` | [source](https://renovatebot.com/gh/webpack-contrib/cache-loader) |

---

### Release Notes

<details>
<summary>webpack-contrib/cache-loader</summary>

### [`v2.0.1`](https://renovatebot.com/gh/webpack-contrib/cache-loader/blob/master/CHANGELOG.md#&#8203;201httpsgithubcomwebpack-contribcache-loadercomparev200v201-2019-01-04)

[Compare Source](https://renovatebot.com/gh/webpack-contrib/cache-loader/compare/v2.0.0...v2.0.1)

##### Bug Fixes

-   generate normalized cache context relative paths ([#&#8203;54](https://renovatebot.com/gh/webpack-contrib/cache-loader/issues/54)) ([5b37474](https://renovatebot.com/gh/webpack-contrib/cache-loader/commit/5b37474))

</details>

---

### Renovate configuration

:date: **Schedule**: At any time (no schedule defined).

:vertical_traffic_light: **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

:recycle: **Rebasing**: Whenever PR becomes conflicted, or if you modify the PR title to begin with "`rebase!`".

:no_bell: **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- renovate-rebase -->If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Renovate Bot](https://renovatebot.com/gh/marketplace/renovate). View repository job log [here](https://renovatebot.com/dashboard#neo-one-suite/neo-one).

Co-authored-by: afragapane <[email protected]>
Co-authored-by: Dave M <[email protected]>
Co-authored-by: Renovate Bot <[email protected]>
bors bot added a commit to neo-one-suite/neo-one that referenced this pull request Jan 4, 2019
841: chore(deps): update babel monorepo r=davemneo a=renovate[bot]

This PR contains the following updates:

| Package | Type | Update | Change | References |
|---|---|---|---|---|
| @&#8203;babel/core | devDependencies | patch | `7.2.0` -> `7.2.2` | [homepage](https://babeljs.io/), [source](https://renovatebot.com/gh/babel/babel) |
| @&#8203;babel/preset-env | devDependencies | patch | `7.2.0` -> `7.2.3` | [homepage](https://babeljs.io/), [source](https://renovatebot.com/gh/babel/babel) |

---

### Release Notes

<details>
<summary>babel/babel</summary>

### [`v7.2.2`](https://renovatebot.com/gh/babel/babel/releases/v7.2.2)

[Compare Source](https://renovatebot.com/gh/babel/babel/compare/v7.2.0...v7.2.2)

#### v7.2.2 (2018-12-15)

Mostrly bug fixes and internal changes.
Thanks to [@&#8203;paleite](https://renovatebot.com/gh/paleite), [@&#8203;saschanaz](https://renovatebot.com/gh/saschanaz) and [@&#8203;joeldenning](https://renovatebot.com/gh/joeldenning) for their first PRs!

##### 🐛 Bug Fix

-   `babel-plugin-transform-destructuring`, `babel-plugin-transform-spread`
    -   [#&#8203;9108](https://renovatebot.com/gh/babel/babel/pull/9108) Correctly transform spreads to use proper concat method. ([@&#8203;danez](https://renovatebot.com/gh/danez))
-   `babel-parser`
    -   [#&#8203;9168](https://renovatebot.com/gh/babel/babel/pull/9168) [parser] Handle flow comments with leading spaces. ([@&#8203;vikr01](https://renovatebot.com/gh/vikr01))
-   `babel-helper-module-transforms`, `babel-plugin-transform-modules-commonjs`
    -   [#&#8203;9171](https://renovatebot.com/gh/babel/babel/pull/9171) Fix transforming empty export statement. ([@&#8203;danez](https://renovatebot.com/gh/danez))
-   `babel-node`
    -   [#&#8203;9148](https://renovatebot.com/gh/babel/babel/pull/9148) Fix --root-mode option in babel-node. ([@&#8203;nicolo-ribaudo](https://renovatebot.com/gh/nicolo-ribaudo))
-   `babel-plugin-transform-classes`
    -   [#&#8203;9135](https://renovatebot.com/gh/babel/babel/pull/9135) Inherit properties in function from method in loose mode. ([@&#8203;rubennorte](https://renovatebot.com/gh/rubennorte))
-   `babel-preset-env`
    -   [#&#8203;9140](https://renovatebot.com/gh/babel/babel/pull/9140) Disable parameter-destructuring in Edge 18. ([@&#8203;saschanaz](https://renovatebot.com/gh/saschanaz))
-   `babel-plugin-transform-arrow-functions`, `babel-traverse`
    -   [#&#8203;9060](https://renovatebot.com/gh/babel/babel/pull/9060) Not depending on return value of super(). Closes [#&#8203;9020](https://renovatebot.com/gh/babel/babel/issues/9020).. ([@&#8203;joeldenning](https://renovatebot.com/gh/joeldenning))

##### 🏠 Internal

-   `babel-helper-create-class-features-plugin`, `babel-plugin-proposal-nullish-coalescing-operator`, `babel-plugin-syntax-bigint`, `babel-plugin-transform-dotall-regex`
    -   [#&#8203;9176](https://renovatebot.com/gh/babel/babel/pull/9176) Fix package.json repository URLs. ([@&#8203;paleite](https://renovatebot.com/gh/paleite))
-   Other
    -   [#&#8203;9158](https://renovatebot.com/gh/babel/babel/pull/9158) add triage label to new issues [skip ci]. ([@&#8203;danez](https://renovatebot.com/gh/danez))
    -   [#&#8203;9143](https://renovatebot.com/gh/babel/babel/pull/9143) Fix a typo from the issue template for bugs. ([@&#8203;saschanaz](https://renovatebot.com/gh/saschanaz))
    -   [#&#8203;9133](https://renovatebot.com/gh/babel/babel/pull/9133) Move to travis vm based builds. ([@&#8203;danez](https://renovatebot.com/gh/danez))
    -   [#&#8203;9132](https://renovatebot.com/gh/babel/babel/pull/9132) Ensure we always use repository versions of babel dependencies in tests. ([@&#8203;danez](https://renovatebot.com/gh/danez))
    -   [#&#8203;9131](https://renovatebot.com/gh/babel/babel/pull/9131) Update issue templates [skip ci]. ([@&#8203;hzoo](https://renovatebot.com/gh/hzoo))
-   `babel-helper-create-class-features-plugin`, `babel-plugin-proposal-class-properties`, `babel-plugin-proposal-decorators`
    -   [#&#8203;9059](https://renovatebot.com/gh/babel/babel/pull/9059) Move decorators transform to [@&#8203;babel/helper-create-class-features-plugin](https://renovatebot.com/gh/babel/helper-create-class-features-plugin). ([@&#8203;nicolo-ribaudo](https://renovatebot.com/gh/nicolo-ribaudo))
-   `babel-core`, `babel-parser`, `babel-template`
    -   [#&#8203;9128](https://renovatebot.com/gh/babel/babel/pull/9128) Fix running flow on travis and update flow. ([@&#8203;danez](https://renovatebot.com/gh/danez))

##### Committers: 10

-   Brian Ng ([existentialism](https://renovatebot.com/gh/existentialism))
-   Daniel Tschinder ([danez](https://renovatebot.com/gh/danez))
-   Henry Zhu ([hzoo](https://renovatebot.com/gh/hzoo))
-   Joel Denning ([joeldenning](https://renovatebot.com/gh/joeldenning))
-   Kagami Sascha Rosylight ([saschanaz](https://renovatebot.com/gh/saschanaz))
-   Nicolò Ribaudo ([nicolo-ribaudo](https://renovatebot.com/gh/nicolo-ribaudo))
-   Patrick Eriksson ([paleite](https://renovatebot.com/gh/paleite))
-   Rubén Norte ([rubennorte](https://renovatebot.com/gh/rubennorte))
-   Thiago Arrais ([thiagoarrais](https://renovatebot.com/gh/thiagoarrais))
-   Vikram Rangaraj ([vikr01](https://renovatebot.com/gh/vikr01))

</details>

---

### Renovate configuration

:date: **Schedule**: At any time (no schedule defined).

:vertical_traffic_light: **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

:recycle: **Rebasing**: Whenever PR becomes conflicted, or if you modify the PR title to begin with "`rebase!`".

:ghost: **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://renovatebot.com/gh/renovatebot/config-help/issues) if that's undesired.

---

 - [ ] <!-- renovate-rebase -->If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Renovate Bot](https://renovatebot.com/gh/marketplace/renovate). View repository job log [here](https://renovatebot.com/dashboard#neo-one-suite/neo-one).

898: chore(deps): update dependency autoprefixer to v9.4.4 r=davemneo a=renovate[bot]

This PR contains the following updates:

| Package | Type | Update | Change | References |
|---|---|---|---|---|
| autoprefixer | devDependencies | patch | `9.4.3` -> `9.4.4` | [source](https://renovatebot.com/gh/postcss/autoprefixer) |

---

### Release Notes

<details>
<summary>postcss/autoprefixer</summary>

### [`v9.4.4`](https://renovatebot.com/gh/postcss/autoprefixer/blob/master/CHANGELOG.md#&#8203;944)

[Compare Source](https://renovatebot.com/gh/postcss/autoprefixer/compare/9.4.3...9.4.4)

-   Use `direction` value for `-ms-writing-mode` (by Denys Kniazevych).
-   Fix warning text (by [@&#8203;zzzzBov](https://renovatebot.com/gh/zzzzBov)).

</details>

---

### Renovate configuration

:date: **Schedule**: At any time (no schedule defined).

:vertical_traffic_light: **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

:recycle: **Rebasing**: Whenever PR becomes conflicted, or if you modify the PR title to begin with "`rebase!`".

:no_bell: **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- renovate-rebase -->If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Renovate Bot](https://renovatebot.com/gh/marketplace/renovate). View repository job log [here](https://renovatebot.com/dashboard#neo-one-suite/neo-one).

901: chore(deps): update dependency tslint-consistent-codestyle to v1.15.0 r=davemneo a=renovate[bot]

This PR contains the following updates:

| Package | Type | Update | Change | References |
|---|---|---|---|---|
| tslint-consistent-codestyle | devDependencies | minor | `1.14.1` -> `1.15.0` | [source](https://renovatebot.com/gh/ajafff/tslint-consistent-codestyle) |

---

### Release Notes

<details>
<summary>ajafff/tslint-consistent-codestyle</summary>

### [`v1.15.0`](https://renovatebot.com/gh/ajafff/tslint-consistent-codestyle/blob/master/CHANGELOG.md#&#8203;1150)

[Compare Source](https://renovatebot.com/gh/ajafff/tslint-consistent-codestyle/compare/v1.14.1...v1.15.0)

**Features:**

-   `no-unnecessary-else` and `no-else-after-return` are now automatically fixable

</details>

---

### Renovate configuration

:date: **Schedule**: At any time (no schedule defined).

:vertical_traffic_light: **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

:recycle: **Rebasing**: Whenever PR becomes conflicted, or if you modify the PR title to begin with "`rebase!`".

:no_bell: **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- renovate-rebase -->If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Renovate Bot](https://renovatebot.com/gh/marketplace/renovate). View repository job log [here](https://renovatebot.com/dashboard#neo-one-suite/neo-one).

904: chore(deps): update dependency @reactivex/ix-esnext-esm to v2.4.3 r=davemneo a=renovate[bot]

This PR contains the following updates:

| Package | Type | Update | Change | References |
|---|---|---|---|---|
| @&#8203;reactivex/ix-esnext-esm | devDependencies | minor | `2.3.5` -> `2.4.3` | [source](https://renovatebot.com/gh/ReactiveX/IxJS) |

---

### Release Notes

<details>
<summary>ReactiveX/IxJS</summary>

### [`v2.4.3`](https://renovatebot.com/gh/ReactiveX/IxJS/releases/v2.4.3)

[Compare Source](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.4.2...v2.4.3)

New release of IxJS is now available.  This includes a number of new features and improvements to existing APIs.

#### New APIs are available

The following APIs have been added to `AsyncIterable`

-   [`batch`](https://renovatebot.com/gh/ReactiveX/IxJS/blob/master/src/asynciterable/batch.ts)
-   [`toNodeStream`](https://renovatebot.com/gh/ReactiveX/IxJS/blob/master/src/asynciterable/tonodestream.ts)

The following APIs have been added to `Iterable`

-   [`toNodeStream`](https://renovatebot.com/gh/ReactiveX/IxJS/blob/master/src/iterable/tonodestream.ts)

##### API Fixes

-   [`AsyncIterable.fromNodeStream`](https://renovatebot.com/gh/ReactiveX/IxJS/blob/master/src/asynciterable/fromnodestream.ts) has been optimized for streams and `AsyncIterables`
-   [`AsyncIterable.prototype.pipe`](https://renovatebot.com/gh/ReactiveX/IxJS/blob/master/src/Ix.node.ts) now accepts Node.js `WritableStream` values in addition to operators.

##### Bug Fixes

-   **dependencies:** add rxjs to the production dependencies list ([54e5cf7](https://renovatebot.com/gh/ReactiveX/IxJS/commit/54e5cf7))

### [`v2.4.2`](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.4.0...v2.4.2)

[Compare Source](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.4.0...v2.4.2)

### [`v2.4.0`](https://renovatebot.com/gh/ReactiveX/IxJS/blob/master/CHANGELOG.md#&#8203;240httpsgithubcomReactiveXIxJScomparev235v240-2019-01-03)

[Compare Source](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.3.5...v2.4.0)

##### Bug Fixes

-   **toObservable:** adds symbol-observable for rxjs interop ([273e697](https://renovatebot.com/gh/ReactiveX/IxJS/commit/273e697)), closes [#&#8203;245](https://renovatebot.com/gh/ReactiveX/IxJS/issues/245)

##### Features

-   add support for passing Node WritableStreams to `AsyncIterableX#pipe()` ([#&#8203;257](https://renovatebot.com/gh/ReactiveX/IxJS/issues/257)) ([9a1c5cc](https://renovatebot.com/gh/ReactiveX/IxJS/commit/9a1c5cc))

-   add `AsyncIterableX#toNodeStream()` ([#&#8203;257](https://renovatebot.com/gh/ReactiveX/IxJS/issues/257)) ([9a1c5cc](https://renovatebot.com/gh/ReactiveX/IxJS/commit/9a1c5cc))

-   add `AsyncIterableX#batch()` ([#&#8203;222](https://renovatebot.com/gh/ReactiveX/IxJS/issues/222)) ([9c9bd7e](https://renovatebot.com/gh/ReactiveX/IxJS/commit/9c9bd7e))

#### [2.3.5](https://renovatebot.com/gh/ReactiveX/IxJS/compare/9.2.0...v2.3.5) (2018-02-19)

##### Bug Fixes

-   **compile:** adding some missing exports to deal with typescript 2.7.x compat issue ([0b0c837](https://renovatebot.com/gh/ReactiveX/IxJS/commit/0b0c837)), closes [#&#8203;214](https://renovatebot.com/gh/ReactiveX/IxJS/issues/214)

##### Features

-   **orderby:** add piped orderby ([#&#8203;190](https://renovatebot.com/gh/ReactiveX/IxJS/issues/190)) ([aaa527a](https://renovatebot.com/gh/ReactiveX/IxJS/commit/aaa527a))

#### [2.3.4](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.3.3...v2.3.4) (2017-11-29)

##### Bug Fixes

-   **typings:** Fix optional predicate typings for user-defined typeguard predicates ([fedd563](https://renovatebot.com/gh/ReactiveX/IxJS/commit/fedd563))
-   **typings:** workaround typescript bugs when noImplicitAny or strictNullChecks are not true ([ce03239](https://renovatebot.com/gh/ReactiveX/IxJS/commit/ce03239))

#### [2.3.3](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.3.2...v2.3.3) (2017-11-21)

##### Reverts

-   **npm:** revert [`4493754`](https://renovatebot.com/gh/ReactiveX/IxJS/commit/4493754d9fbbc061347d8ef785704b61ecb486c5) ([564c600](https://renovatebot.com/gh/ReactiveX/IxJS/commit/564c600)), closes [#&#8203;163](https://renovatebot.com/gh/ReactiveX/IxJS/issues/163)

#### [2.3.2](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.3.1...v2.3.2) (2017-11-21)

##### Bug Fixes

-   **fromnodestream:** enable fromnodestream tests, fix minification problems ([#&#8203;156](https://renovatebot.com/gh/ReactiveX/IxJS/issues/156)) ([745d763](https://renovatebot.com/gh/ReactiveX/IxJS/commit/745d763))
-   **fromnodestream:** type fromNodeStream to accept NodeJS.ReadableStream interface ([3cbf2dd](https://renovatebot.com/gh/ReactiveX/IxJS/commit/3cbf2dd))
-   **FromObservableAsyncIterable:** Fix handling of asynchronously emitting Observables ([#&#8203;150](https://renovatebot.com/gh/ReactiveX/IxJS/issues/150)) ([2c7222c](https://renovatebot.com/gh/ReactiveX/IxJS/commit/2c7222c))
-   **readme:** fix lettable syntax ([0e46181](https://renovatebot.com/gh/ReactiveX/IxJS/commit/0e46181))

##### Features

-   **as:** Add static as convenience methods to wrap values as Async/Iterables ([#&#8203;154](https://renovatebot.com/gh/ReactiveX/IxJS/issues/154)) ([79a14c5](https://renovatebot.com/gh/ReactiveX/IxJS/commit/79a14c5))

#### [2.3.1](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.3.0...v2.3.1) (2017-11-08)

##### Bug Fixes

-   **single:** make iterable prototype single predicate an optional parameter again ([2bea5ab](https://renovatebot.com/gh/ReactiveX/IxJS/commit/2bea5ab)), closes [/github.com/ReactiveX/IxJS/pull/83#issuecomment-341832266](https://renovatebot.com/gh//github.com/ReactiveX/IxJS/pull/83/issues/issuecomment-341832266)

</details>

---

### Renovate configuration

:date: **Schedule**: At any time (no schedule defined).

:vertical_traffic_light: **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

:recycle: **Rebasing**: Whenever PR becomes conflicted, or if you modify the PR title to begin with "`rebase!`".

:no_bell: **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- renovate-rebase -->If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Renovate Bot](https://renovatebot.com/gh/marketplace/renovate). View repository job log [here](https://renovatebot.com/dashboard#neo-one-suite/neo-one).

905: chore(deps): update dependency babel-loader to v8.0.5 r=davemneo a=renovate[bot]

This PR contains the following updates:

| Package | Type | Update | Change | References |
|---|---|---|---|---|
| babel-loader | devDependencies | patch | `8.0.4` -> `8.0.5` | [source](https://renovatebot.com/gh/babel/babel-loader) |

---

### Release Notes

<details>
<summary>babel/babel-loader</summary>

### [`v8.0.5`](https://renovatebot.com/gh/babel/babel-loader/releases/v8.0.5)

[Compare Source](https://renovatebot.com/gh/babel/babel-loader/compare/v8.0.4...v8.0.5)

-   Update `find-cache-dir` to 2.0

</details>

---

### Renovate configuration

:date: **Schedule**: At any time (no schedule defined).

:vertical_traffic_light: **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

:recycle: **Rebasing**: Whenever PR becomes conflicted, or if you modify the PR title to begin with "`rebase!`".

:no_bell: **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- renovate-rebase -->If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Renovate Bot](https://renovatebot.com/gh/marketplace/renovate). View repository job log [here](https://renovatebot.com/dashboard#neo-one-suite/neo-one).

Co-authored-by: Renovate Bot <[email protected]>
bors bot added a commit to neo-one-suite/neo-one that referenced this pull request Jan 5, 2019
848: docs(Reference): Give object parameters a name if they will be includ… r=davemneo a=afragapane

With dgeni typescript parsing, function parameters display awkwardly if they are unnamed objects.
Giving them a name like "options" fixes the issue and displays them properly.

#702

900: chore(dep-update): Updating code style of ReferenceGrid r=dicarlo2 a=davemneo

### Requirements

Update asserted code per new lint rules.

### Description of the Change

remove 'any' type casting from identified file.

### Test Plan

Standard lint test
    yarn lint

### Benefits

Green lint test.

### Applicable Issues

#758

903: chore(deps): update dependency @reactivex/ix-es2015-cjs to v2.4.3 r=davemneo a=renovate[bot]

This PR contains the following updates:

| Package | Type | Update | Change | References |
|---|---|---|---|---|
| @&#8203;reactivex/ix-es2015-cjs | devDependencies | minor | `2.3.5` -> `2.4.3` | [source](https://renovatebot.com/gh/ReactiveX/IxJS) |

---

### Release Notes

<details>
<summary>ReactiveX/IxJS</summary>

### [`v2.4.3`](https://renovatebot.com/gh/ReactiveX/IxJS/releases/v2.4.3)

[Compare Source](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.4.2...v2.4.3)

New release of IxJS is now available.  This includes a number of new features and improvements to existing APIs.

#### New APIs are available

The following APIs have been added to `AsyncIterable`

-   [`batch`](https://renovatebot.com/gh/ReactiveX/IxJS/blob/master/src/asynciterable/batch.ts)
-   [`toNodeStream`](https://renovatebot.com/gh/ReactiveX/IxJS/blob/master/src/asynciterable/tonodestream.ts)

The following APIs have been added to `Iterable`

-   [`toNodeStream`](https://renovatebot.com/gh/ReactiveX/IxJS/blob/master/src/iterable/tonodestream.ts)

##### API Fixes

-   [`AsyncIterable.fromNodeStream`](https://renovatebot.com/gh/ReactiveX/IxJS/blob/master/src/asynciterable/fromnodestream.ts) has been optimized for streams and `AsyncIterables`
-   [`AsyncIterable.prototype.pipe`](https://renovatebot.com/gh/ReactiveX/IxJS/blob/master/src/Ix.node.ts) now accepts Node.js `WritableStream` values in addition to operators.

##### Bug Fixes

-   **dependencies:** add rxjs to the production dependencies list ([54e5cf7](https://renovatebot.com/gh/ReactiveX/IxJS/commit/54e5cf7))

### [`v2.4.2`](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.4.0...v2.4.2)

[Compare Source](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.4.0...v2.4.2)

### [`v2.4.0`](https://renovatebot.com/gh/ReactiveX/IxJS/blob/master/CHANGELOG.md#&#8203;240httpsgithubcomReactiveXIxJScomparev235v240-2019-01-03)

[Compare Source](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.3.5...v2.4.0)

##### Bug Fixes

-   **toObservable:** adds symbol-observable for rxjs interop ([273e697](https://renovatebot.com/gh/ReactiveX/IxJS/commit/273e697)), closes [#&#8203;245](https://renovatebot.com/gh/ReactiveX/IxJS/issues/245)

##### Features

-   add support for passing Node WritableStreams to `AsyncIterableX#pipe()` ([#&#8203;257](https://renovatebot.com/gh/ReactiveX/IxJS/issues/257)) ([9a1c5cc](https://renovatebot.com/gh/ReactiveX/IxJS/commit/9a1c5cc))

-   add `AsyncIterableX#toNodeStream()` ([#&#8203;257](https://renovatebot.com/gh/ReactiveX/IxJS/issues/257)) ([9a1c5cc](https://renovatebot.com/gh/ReactiveX/IxJS/commit/9a1c5cc))

-   add `AsyncIterableX#batch()` ([#&#8203;222](https://renovatebot.com/gh/ReactiveX/IxJS/issues/222)) ([9c9bd7e](https://renovatebot.com/gh/ReactiveX/IxJS/commit/9c9bd7e))

#### [2.3.5](https://renovatebot.com/gh/ReactiveX/IxJS/compare/9.2.0...v2.3.5) (2018-02-19)

##### Bug Fixes

-   **compile:** adding some missing exports to deal with typescript 2.7.x compat issue ([0b0c837](https://renovatebot.com/gh/ReactiveX/IxJS/commit/0b0c837)), closes [#&#8203;214](https://renovatebot.com/gh/ReactiveX/IxJS/issues/214)

##### Features

-   **orderby:** add piped orderby ([#&#8203;190](https://renovatebot.com/gh/ReactiveX/IxJS/issues/190)) ([aaa527a](https://renovatebot.com/gh/ReactiveX/IxJS/commit/aaa527a))

#### [2.3.4](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.3.3...v2.3.4) (2017-11-29)

##### Bug Fixes

-   **typings:** Fix optional predicate typings for user-defined typeguard predicates ([fedd563](https://renovatebot.com/gh/ReactiveX/IxJS/commit/fedd563))
-   **typings:** workaround typescript bugs when noImplicitAny or strictNullChecks are not true ([ce03239](https://renovatebot.com/gh/ReactiveX/IxJS/commit/ce03239))

#### [2.3.3](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.3.2...v2.3.3) (2017-11-21)

##### Reverts

-   **npm:** revert [`4493754`](https://renovatebot.com/gh/ReactiveX/IxJS/commit/4493754d9fbbc061347d8ef785704b61ecb486c5) ([564c600](https://renovatebot.com/gh/ReactiveX/IxJS/commit/564c600)), closes [#&#8203;163](https://renovatebot.com/gh/ReactiveX/IxJS/issues/163)

#### [2.3.2](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.3.1...v2.3.2) (2017-11-21)

##### Bug Fixes

-   **fromnodestream:** enable fromnodestream tests, fix minification problems ([#&#8203;156](https://renovatebot.com/gh/ReactiveX/IxJS/issues/156)) ([745d763](https://renovatebot.com/gh/ReactiveX/IxJS/commit/745d763))
-   **fromnodestream:** type fromNodeStream to accept NodeJS.ReadableStream interface ([3cbf2dd](https://renovatebot.com/gh/ReactiveX/IxJS/commit/3cbf2dd))
-   **FromObservableAsyncIterable:** Fix handling of asynchronously emitting Observables ([#&#8203;150](https://renovatebot.com/gh/ReactiveX/IxJS/issues/150)) ([2c7222c](https://renovatebot.com/gh/ReactiveX/IxJS/commit/2c7222c))
-   **readme:** fix lettable syntax ([0e46181](https://renovatebot.com/gh/ReactiveX/IxJS/commit/0e46181))

##### Features

-   **as:** Add static as convenience methods to wrap values as Async/Iterables ([#&#8203;154](https://renovatebot.com/gh/ReactiveX/IxJS/issues/154)) ([79a14c5](https://renovatebot.com/gh/ReactiveX/IxJS/commit/79a14c5))

#### [2.3.1](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.3.0...v2.3.1) (2017-11-08)

##### Bug Fixes

-   **single:** make iterable prototype single predicate an optional parameter again ([2bea5ab](https://renovatebot.com/gh/ReactiveX/IxJS/commit/2bea5ab)), closes [/github.com/ReactiveX/IxJS/pull/83#issuecomment-341832266](https://renovatebot.com/gh//github.com/ReactiveX/IxJS/pull/83/issues/issuecomment-341832266)

</details>

---

### Renovate configuration

:date: **Schedule**: At any time (no schedule defined).

:vertical_traffic_light: **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

:recycle: **Rebasing**: Whenever PR becomes conflicted, or if you modify the PR title to begin with "`rebase!`".

:no_bell: **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- renovate-rebase -->If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Renovate Bot](https://renovatebot.com/gh/marketplace/renovate). View repository job log [here](https://renovatebot.com/dashboard#neo-one-suite/neo-one).

906: chore(deps): update dependency cache-loader to v2.0.1 r=davemneo a=renovate[bot]

This PR contains the following updates:

| Package | Type | Update | Change | References |
|---|---|---|---|---|
| cache-loader | devDependencies | patch | `2.0.0` -> `2.0.1` | [source](https://renovatebot.com/gh/webpack-contrib/cache-loader) |

---

### Release Notes

<details>
<summary>webpack-contrib/cache-loader</summary>

### [`v2.0.1`](https://renovatebot.com/gh/webpack-contrib/cache-loader/blob/master/CHANGELOG.md#&#8203;201httpsgithubcomwebpack-contribcache-loadercomparev200v201-2019-01-04)

[Compare Source](https://renovatebot.com/gh/webpack-contrib/cache-loader/compare/v2.0.0...v2.0.1)

##### Bug Fixes

-   generate normalized cache context relative paths ([#&#8203;54](https://renovatebot.com/gh/webpack-contrib/cache-loader/issues/54)) ([5b37474](https://renovatebot.com/gh/webpack-contrib/cache-loader/commit/5b37474))

</details>

---

### Renovate configuration

:date: **Schedule**: At any time (no schedule defined).

:vertical_traffic_light: **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

:recycle: **Rebasing**: Whenever PR becomes conflicted, or if you modify the PR title to begin with "`rebase!`".

:no_bell: **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- renovate-rebase -->If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Renovate Bot](https://renovatebot.com/gh/marketplace/renovate). View repository job log [here](https://renovatebot.com/dashboard#neo-one-suite/neo-one).

Co-authored-by: afragapane <[email protected]>
Co-authored-by: Dave M <[email protected]>
Co-authored-by: Renovate Bot <[email protected]>
bors bot added a commit to neo-one-suite/neo-one that referenced this pull request Jan 6, 2019
897: chore(deps): update dependency rollup to v1.0.2 r=davemneo a=renovate[bot]

This PR contains the following updates:

| Package | Type | Update | Change | References |
|---|---|---|---|---|
| rollup | devDependencies | patch | `1.0.0` -> `1.0.2` | [source](https://renovatebot.com/gh/rollup/rollup) |

---

### Release Notes

<details>
<summary>rollup/rollup</summary>

### [`v1.0.2`](https://renovatebot.com/gh/rollup/rollup/blob/master/CHANGELOG.md#&#8203;102)

[Compare Source](https://renovatebot.com/gh/rollup/rollup/compare/v1.0.1...v1.0.2)

_2019-01-05_

##### Bug Fixes

-   Make sure the transform hook is always reevaluated when a file watched by the hook changes ([#&#8203;2633](https://renovatebot.com/gh/rollup/rollup/issues/2633))
-   Fix a crash when generating hashes for tree-shaken dynamic imports ([#&#8203;2638](https://renovatebot.com/gh/rollup/rollup/issues/2638))
-   Fix a crash and some inconsistencies when using the acorn-bigint plugin ([#&#8203;2640](https://renovatebot.com/gh/rollup/rollup/issues/2640))

##### Pull Requests

-   [#&#8203;2633](https://renovatebot.com/gh/rollup/rollup/pull/2633): Document `this.addWatchFile` and make sure it also declares transform dependencies ([@&#8203;lukastaegert](https://renovatebot.com/gh/lukastaegert))
-   [#&#8203;2635](https://renovatebot.com/gh/rollup/rollup/pull/2635): Make sure `code` is optional in warning type ([@&#8203;lukastaegert](https://renovatebot.com/gh/lukastaegert))
-   [#&#8203;2638](https://renovatebot.com/gh/rollup/rollup/pull/2638): Do not fail when generating hashes for tree-shaken dynamic imports ([@&#8203;lukastaegert](https://renovatebot.com/gh/lukastaegert))
-   [#&#8203;2640](https://renovatebot.com/gh/rollup/rollup/pull/2640): Always treat bigints as unknown ([@&#8203;lukastaegert](https://renovatebot.com/gh/lukastaegert))
-   [#&#8203;2641](https://renovatebot.com/gh/rollup/rollup/pull/2641): Make sure all CLI options are listed in the summary ([@&#8203;lukastaegert](https://renovatebot.com/gh/lukastaegert))

### [`v1.0.1`](https://renovatebot.com/gh/rollup/rollup/blob/master/CHANGELOG.md#&#8203;101)

[Compare Source](https://renovatebot.com/gh/rollup/rollup/compare/v1.0.0...v1.0.1)

_2019-01-03_

##### Bug Fixes

-   Properly handle reexporting an external default export for non-ESM targets when using named exports mode ([#&#8203;2620](https://renovatebot.com/gh/rollup/rollup/issues/2620))
-   Do not (wrongly) re-declare input options in the merged `RollupOptions` type ([#&#8203;2622](https://renovatebot.com/gh/rollup/rollup/issues/2622))

##### Pull Requests

-   [#&#8203;2620](https://renovatebot.com/gh/rollup/rollup/pull/2620): Fixed issue with reexporting default as default with `{exports: named, interop: true}` options ([@&#8203;Andarist](https://renovatebot.com/gh/Andarist))
-   [#&#8203;2622](https://renovatebot.com/gh/rollup/rollup/pull/2622): Simplify RollupOptions ([@&#8203;Kinrany](https://renovatebot.com/gh/Kinrany))
-   [#&#8203;2627](https://renovatebot.com/gh/rollup/rollup/pull/2627): Show how to skip imports for optional plugins ([@&#8203;chris-morgan](https://renovatebot.com/gh/chris-morgan))

</details>

---

### Renovate configuration

:date: **Schedule**: At any time (no schedule defined).

:vertical_traffic_light: **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

:recycle: **Rebasing**: Whenever PR becomes conflicted, or if you modify the PR title to begin with "`rebase!`".

:no_bell: **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- renovate-rebase -->If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Renovate Bot](https://renovatebot.com/gh/marketplace/renovate). View repository job log [here](https://renovatebot.com/dashboard#neo-one-suite/neo-one).

898: chore(deps): update dependency autoprefixer to v9.4.4 r=davemneo a=renovate[bot]

This PR contains the following updates:

| Package | Type | Update | Change | References |
|---|---|---|---|---|
| autoprefixer | devDependencies | patch | `9.4.3` -> `9.4.4` | [source](https://renovatebot.com/gh/postcss/autoprefixer) |

---

### Release Notes

<details>
<summary>postcss/autoprefixer</summary>

### [`v9.4.4`](https://renovatebot.com/gh/postcss/autoprefixer/blob/master/CHANGELOG.md#&#8203;944)

[Compare Source](https://renovatebot.com/gh/postcss/autoprefixer/compare/9.4.3...9.4.4)

-   Use `direction` value for `-ms-writing-mode` (by Denys Kniazevych).
-   Fix warning text (by [@&#8203;zzzzBov](https://renovatebot.com/gh/zzzzBov)).

</details>

---

### Renovate configuration

:date: **Schedule**: At any time (no schedule defined).

:vertical_traffic_light: **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

:recycle: **Rebasing**: Whenever PR becomes conflicted, or if you modify the PR title to begin with "`rebase!`".

:no_bell: **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- renovate-rebase -->If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Renovate Bot](https://renovatebot.com/gh/marketplace/renovate). View repository job log [here](https://renovatebot.com/dashboard#neo-one-suite/neo-one).

901: chore(deps): update dependency tslint-consistent-codestyle to v1.15.0 r=davemneo a=renovate[bot]

This PR contains the following updates:

| Package | Type | Update | Change | References |
|---|---|---|---|---|
| tslint-consistent-codestyle | devDependencies | minor | `1.14.1` -> `1.15.0` | [source](https://renovatebot.com/gh/ajafff/tslint-consistent-codestyle) |

---

### Release Notes

<details>
<summary>ajafff/tslint-consistent-codestyle</summary>

### [`v1.15.0`](https://renovatebot.com/gh/ajafff/tslint-consistent-codestyle/blob/master/CHANGELOG.md#&#8203;1150)

[Compare Source](https://renovatebot.com/gh/ajafff/tslint-consistent-codestyle/compare/v1.14.1...v1.15.0)

**Features:**

-   `no-unnecessary-else` and `no-else-after-return` are now automatically fixable

</details>

---

### Renovate configuration

:date: **Schedule**: At any time (no schedule defined).

:vertical_traffic_light: **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

:recycle: **Rebasing**: Whenever PR becomes conflicted, or if you modify the PR title to begin with "`rebase!`".

:no_bell: **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- renovate-rebase -->If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Renovate Bot](https://renovatebot.com/gh/marketplace/renovate). View repository job log [here](https://renovatebot.com/dashboard#neo-one-suite/neo-one).

903: chore(deps): update dependency @reactivex/ix-es2015-cjs to v2.4.3 r=davemneo a=renovate[bot]

This PR contains the following updates:

| Package | Type | Update | Change | References |
|---|---|---|---|---|
| @&#8203;reactivex/ix-es2015-cjs | devDependencies | minor | `2.3.5` -> `2.4.3` | [source](https://renovatebot.com/gh/ReactiveX/IxJS) |

---

### Release Notes

<details>
<summary>ReactiveX/IxJS</summary>

### [`v2.4.3`](https://renovatebot.com/gh/ReactiveX/IxJS/releases/v2.4.3)

[Compare Source](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.4.2...v2.4.3)

New release of IxJS is now available.  This includes a number of new features and improvements to existing APIs.

#### New APIs are available

The following APIs have been added to `AsyncIterable`

-   [`batch`](https://renovatebot.com/gh/ReactiveX/IxJS/blob/master/src/asynciterable/batch.ts)
-   [`toNodeStream`](https://renovatebot.com/gh/ReactiveX/IxJS/blob/master/src/asynciterable/tonodestream.ts)

The following APIs have been added to `Iterable`

-   [`toNodeStream`](https://renovatebot.com/gh/ReactiveX/IxJS/blob/master/src/iterable/tonodestream.ts)

##### API Fixes

-   [`AsyncIterable.fromNodeStream`](https://renovatebot.com/gh/ReactiveX/IxJS/blob/master/src/asynciterable/fromnodestream.ts) has been optimized for streams and `AsyncIterables`
-   [`AsyncIterable.prototype.pipe`](https://renovatebot.com/gh/ReactiveX/IxJS/blob/master/src/Ix.node.ts) now accepts Node.js `WritableStream` values in addition to operators.

##### Bug Fixes

-   **dependencies:** add rxjs to the production dependencies list ([54e5cf7](https://renovatebot.com/gh/ReactiveX/IxJS/commit/54e5cf7))

### [`v2.4.2`](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.4.0...v2.4.2)

[Compare Source](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.4.0...v2.4.2)

### [`v2.4.0`](https://renovatebot.com/gh/ReactiveX/IxJS/blob/master/CHANGELOG.md#&#8203;240httpsgithubcomReactiveXIxJScomparev235v240-2019-01-03)

[Compare Source](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.3.5...v2.4.0)

##### Bug Fixes

-   **toObservable:** adds symbol-observable for rxjs interop ([273e697](https://renovatebot.com/gh/ReactiveX/IxJS/commit/273e697)), closes [#&#8203;245](https://renovatebot.com/gh/ReactiveX/IxJS/issues/245)

##### Features

-   add support for passing Node WritableStreams to `AsyncIterableX#pipe()` ([#&#8203;257](https://renovatebot.com/gh/ReactiveX/IxJS/issues/257)) ([9a1c5cc](https://renovatebot.com/gh/ReactiveX/IxJS/commit/9a1c5cc))

-   add `AsyncIterableX#toNodeStream()` ([#&#8203;257](https://renovatebot.com/gh/ReactiveX/IxJS/issues/257)) ([9a1c5cc](https://renovatebot.com/gh/ReactiveX/IxJS/commit/9a1c5cc))

-   add `AsyncIterableX#batch()` ([#&#8203;222](https://renovatebot.com/gh/ReactiveX/IxJS/issues/222)) ([9c9bd7e](https://renovatebot.com/gh/ReactiveX/IxJS/commit/9c9bd7e))

#### [2.3.5](https://renovatebot.com/gh/ReactiveX/IxJS/compare/9.2.0...v2.3.5) (2018-02-19)

##### Bug Fixes

-   **compile:** adding some missing exports to deal with typescript 2.7.x compat issue ([0b0c837](https://renovatebot.com/gh/ReactiveX/IxJS/commit/0b0c837)), closes [#&#8203;214](https://renovatebot.com/gh/ReactiveX/IxJS/issues/214)

##### Features

-   **orderby:** add piped orderby ([#&#8203;190](https://renovatebot.com/gh/ReactiveX/IxJS/issues/190)) ([aaa527a](https://renovatebot.com/gh/ReactiveX/IxJS/commit/aaa527a))

#### [2.3.4](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.3.3...v2.3.4) (2017-11-29)

##### Bug Fixes

-   **typings:** Fix optional predicate typings for user-defined typeguard predicates ([fedd563](https://renovatebot.com/gh/ReactiveX/IxJS/commit/fedd563))
-   **typings:** workaround typescript bugs when noImplicitAny or strictNullChecks are not true ([ce03239](https://renovatebot.com/gh/ReactiveX/IxJS/commit/ce03239))

#### [2.3.3](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.3.2...v2.3.3) (2017-11-21)

##### Reverts

-   **npm:** revert [`4493754`](https://renovatebot.com/gh/ReactiveX/IxJS/commit/4493754d9fbbc061347d8ef785704b61ecb486c5) ([564c600](https://renovatebot.com/gh/ReactiveX/IxJS/commit/564c600)), closes [#&#8203;163](https://renovatebot.com/gh/ReactiveX/IxJS/issues/163)

#### [2.3.2](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.3.1...v2.3.2) (2017-11-21)

##### Bug Fixes

-   **fromnodestream:** enable fromnodestream tests, fix minification problems ([#&#8203;156](https://renovatebot.com/gh/ReactiveX/IxJS/issues/156)) ([745d763](https://renovatebot.com/gh/ReactiveX/IxJS/commit/745d763))
-   **fromnodestream:** type fromNodeStream to accept NodeJS.ReadableStream interface ([3cbf2dd](https://renovatebot.com/gh/ReactiveX/IxJS/commit/3cbf2dd))
-   **FromObservableAsyncIterable:** Fix handling of asynchronously emitting Observables ([#&#8203;150](https://renovatebot.com/gh/ReactiveX/IxJS/issues/150)) ([2c7222c](https://renovatebot.com/gh/ReactiveX/IxJS/commit/2c7222c))
-   **readme:** fix lettable syntax ([0e46181](https://renovatebot.com/gh/ReactiveX/IxJS/commit/0e46181))

##### Features

-   **as:** Add static as convenience methods to wrap values as Async/Iterables ([#&#8203;154](https://renovatebot.com/gh/ReactiveX/IxJS/issues/154)) ([79a14c5](https://renovatebot.com/gh/ReactiveX/IxJS/commit/79a14c5))

#### [2.3.1](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.3.0...v2.3.1) (2017-11-08)

##### Bug Fixes

-   **single:** make iterable prototype single predicate an optional parameter again ([2bea5ab](https://renovatebot.com/gh/ReactiveX/IxJS/commit/2bea5ab)), closes [/github.com/ReactiveX/IxJS/pull/83#issuecomment-341832266](https://renovatebot.com/gh//github.com/ReactiveX/IxJS/pull/83/issues/issuecomment-341832266)

</details>

---

### Renovate configuration

:date: **Schedule**: At any time (no schedule defined).

:vertical_traffic_light: **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

:recycle: **Rebasing**: Whenever PR becomes conflicted, or if you modify the PR title to begin with "`rebase!`".

:no_bell: **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- renovate-rebase -->If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Renovate Bot](https://renovatebot.com/gh/marketplace/renovate). View repository job log [here](https://renovatebot.com/dashboard#neo-one-suite/neo-one).

904: chore(deps): update dependency @reactivex/ix-esnext-esm to v2.4.3 r=davemneo a=renovate[bot]

This PR contains the following updates:

| Package | Type | Update | Change | References |
|---|---|---|---|---|
| @&#8203;reactivex/ix-esnext-esm | devDependencies | minor | `2.3.5` -> `2.4.3` | [source](https://renovatebot.com/gh/ReactiveX/IxJS) |

---

### Release Notes

<details>
<summary>ReactiveX/IxJS</summary>

### [`v2.4.3`](https://renovatebot.com/gh/ReactiveX/IxJS/releases/v2.4.3)

[Compare Source](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.4.2...v2.4.3)

New release of IxJS is now available.  This includes a number of new features and improvements to existing APIs.

#### New APIs are available

The following APIs have been added to `AsyncIterable`

-   [`batch`](https://renovatebot.com/gh/ReactiveX/IxJS/blob/master/src/asynciterable/batch.ts)
-   [`toNodeStream`](https://renovatebot.com/gh/ReactiveX/IxJS/blob/master/src/asynciterable/tonodestream.ts)

The following APIs have been added to `Iterable`

-   [`toNodeStream`](https://renovatebot.com/gh/ReactiveX/IxJS/blob/master/src/iterable/tonodestream.ts)

##### API Fixes

-   [`AsyncIterable.fromNodeStream`](https://renovatebot.com/gh/ReactiveX/IxJS/blob/master/src/asynciterable/fromnodestream.ts) has been optimized for streams and `AsyncIterables`
-   [`AsyncIterable.prototype.pipe`](https://renovatebot.com/gh/ReactiveX/IxJS/blob/master/src/Ix.node.ts) now accepts Node.js `WritableStream` values in addition to operators.

##### Bug Fixes

-   **dependencies:** add rxjs to the production dependencies list ([54e5cf7](https://renovatebot.com/gh/ReactiveX/IxJS/commit/54e5cf7))

### [`v2.4.2`](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.4.0...v2.4.2)

[Compare Source](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.4.0...v2.4.2)

### [`v2.4.0`](https://renovatebot.com/gh/ReactiveX/IxJS/blob/master/CHANGELOG.md#&#8203;240httpsgithubcomReactiveXIxJScomparev235v240-2019-01-03)

[Compare Source](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.3.5...v2.4.0)

##### Bug Fixes

-   **toObservable:** adds symbol-observable for rxjs interop ([273e697](https://renovatebot.com/gh/ReactiveX/IxJS/commit/273e697)), closes [#&#8203;245](https://renovatebot.com/gh/ReactiveX/IxJS/issues/245)

##### Features

-   add support for passing Node WritableStreams to `AsyncIterableX#pipe()` ([#&#8203;257](https://renovatebot.com/gh/ReactiveX/IxJS/issues/257)) ([9a1c5cc](https://renovatebot.com/gh/ReactiveX/IxJS/commit/9a1c5cc))

-   add `AsyncIterableX#toNodeStream()` ([#&#8203;257](https://renovatebot.com/gh/ReactiveX/IxJS/issues/257)) ([9a1c5cc](https://renovatebot.com/gh/ReactiveX/IxJS/commit/9a1c5cc))

-   add `AsyncIterableX#batch()` ([#&#8203;222](https://renovatebot.com/gh/ReactiveX/IxJS/issues/222)) ([9c9bd7e](https://renovatebot.com/gh/ReactiveX/IxJS/commit/9c9bd7e))

#### [2.3.5](https://renovatebot.com/gh/ReactiveX/IxJS/compare/9.2.0...v2.3.5) (2018-02-19)

##### Bug Fixes

-   **compile:** adding some missing exports to deal with typescript 2.7.x compat issue ([0b0c837](https://renovatebot.com/gh/ReactiveX/IxJS/commit/0b0c837)), closes [#&#8203;214](https://renovatebot.com/gh/ReactiveX/IxJS/issues/214)

##### Features

-   **orderby:** add piped orderby ([#&#8203;190](https://renovatebot.com/gh/ReactiveX/IxJS/issues/190)) ([aaa527a](https://renovatebot.com/gh/ReactiveX/IxJS/commit/aaa527a))

#### [2.3.4](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.3.3...v2.3.4) (2017-11-29)

##### Bug Fixes

-   **typings:** Fix optional predicate typings for user-defined typeguard predicates ([fedd563](https://renovatebot.com/gh/ReactiveX/IxJS/commit/fedd563))
-   **typings:** workaround typescript bugs when noImplicitAny or strictNullChecks are not true ([ce03239](https://renovatebot.com/gh/ReactiveX/IxJS/commit/ce03239))

#### [2.3.3](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.3.2...v2.3.3) (2017-11-21)

##### Reverts

-   **npm:** revert [`4493754`](https://renovatebot.com/gh/ReactiveX/IxJS/commit/4493754d9fbbc061347d8ef785704b61ecb486c5) ([564c600](https://renovatebot.com/gh/ReactiveX/IxJS/commit/564c600)), closes [#&#8203;163](https://renovatebot.com/gh/ReactiveX/IxJS/issues/163)

#### [2.3.2](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.3.1...v2.3.2) (2017-11-21)

##### Bug Fixes

-   **fromnodestream:** enable fromnodestream tests, fix minification problems ([#&#8203;156](https://renovatebot.com/gh/ReactiveX/IxJS/issues/156)) ([745d763](https://renovatebot.com/gh/ReactiveX/IxJS/commit/745d763))
-   **fromnodestream:** type fromNodeStream to accept NodeJS.ReadableStream interface ([3cbf2dd](https://renovatebot.com/gh/ReactiveX/IxJS/commit/3cbf2dd))
-   **FromObservableAsyncIterable:** Fix handling of asynchronously emitting Observables ([#&#8203;150](https://renovatebot.com/gh/ReactiveX/IxJS/issues/150)) ([2c7222c](https://renovatebot.com/gh/ReactiveX/IxJS/commit/2c7222c))
-   **readme:** fix lettable syntax ([0e46181](https://renovatebot.com/gh/ReactiveX/IxJS/commit/0e46181))

##### Features

-   **as:** Add static as convenience methods to wrap values as Async/Iterables ([#&#8203;154](https://renovatebot.com/gh/ReactiveX/IxJS/issues/154)) ([79a14c5](https://renovatebot.com/gh/ReactiveX/IxJS/commit/79a14c5))

#### [2.3.1](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.3.0...v2.3.1) (2017-11-08)

##### Bug Fixes

-   **single:** make iterable prototype single predicate an optional parameter again ([2bea5ab](https://renovatebot.com/gh/ReactiveX/IxJS/commit/2bea5ab)), closes [/github.com/ReactiveX/IxJS/pull/83#issuecomment-341832266](https://renovatebot.com/gh//github.com/ReactiveX/IxJS/pull/83/issues/issuecomment-341832266)

</details>

---

### Renovate configuration

:date: **Schedule**: At any time (no schedule defined).

:vertical_traffic_light: **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

:recycle: **Rebasing**: Whenever PR becomes conflicted, or if you modify the PR title to begin with "`rebase!`".

:no_bell: **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- renovate-rebase -->If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Renovate Bot](https://renovatebot.com/gh/marketplace/renovate). View repository job log [here](https://renovatebot.com/dashboard#neo-one-suite/neo-one).

905: chore(deps): update dependency babel-loader to v8.0.5 r=davemneo a=renovate[bot]

This PR contains the following updates:

| Package | Type | Update | Change | References |
|---|---|---|---|---|
| babel-loader | devDependencies | patch | `8.0.4` -> `8.0.5` | [source](https://renovatebot.com/gh/babel/babel-loader) |

---

### Release Notes

<details>
<summary>babel/babel-loader</summary>

### [`v8.0.5`](https://renovatebot.com/gh/babel/babel-loader/releases/v8.0.5)

[Compare Source](https://renovatebot.com/gh/babel/babel-loader/compare/v8.0.4...v8.0.5)

-   Update `find-cache-dir` to 2.0

</details>

---

### Renovate configuration

:date: **Schedule**: At any time (no schedule defined).

:vertical_traffic_light: **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

:recycle: **Rebasing**: Whenever PR becomes conflicted, or if you modify the PR title to begin with "`rebase!`".

:no_bell: **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- renovate-rebase -->If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Renovate Bot](https://renovatebot.com/gh/marketplace/renovate). View repository job log [here](https://renovatebot.com/dashboard#neo-one-suite/neo-one).

906: chore(deps): update dependency cache-loader to v2.0.1 r=davemneo a=renovate[bot]

This PR contains the following updates:

| Package | Type | Update | Change | References |
|---|---|---|---|---|
| cache-loader | devDependencies | patch | `2.0.0` -> `2.0.1` | [source](https://renovatebot.com/gh/webpack-contrib/cache-loader) |

---

### Release Notes

<details>
<summary>webpack-contrib/cache-loader</summary>

### [`v2.0.1`](https://renovatebot.com/gh/webpack-contrib/cache-loader/blob/master/CHANGELOG.md#&#8203;201httpsgithubcomwebpack-contribcache-loadercomparev200v201-2019-01-04)

[Compare Source](https://renovatebot.com/gh/webpack-contrib/cache-loader/compare/v2.0.0...v2.0.1)

##### Bug Fixes

-   generate normalized cache context relative paths ([#&#8203;54](https://renovatebot.com/gh/webpack-contrib/cache-loader/issues/54)) ([5b37474](https://renovatebot.com/gh/webpack-contrib/cache-loader/commit/5b37474))

</details>

---

### Renovate configuration

:date: **Schedule**: At any time (no schedule defined).

:vertical_traffic_light: **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

:recycle: **Rebasing**: Whenever PR becomes conflicted, or if you modify the PR title to begin with "`rebase!`".

:no_bell: **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- renovate-rebase -->If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Renovate Bot](https://renovatebot.com/gh/marketplace/renovate). View repository job log [here](https://renovatebot.com/dashboard#neo-one-suite/neo-one).

907: chore(deps): update dependency ts-loader to v5.3.3 r=davemneo a=renovate[bot]

This PR contains the following updates:

| Package | Type | Update | Change | References |
|---|---|---|---|---|
| ts-loader | devDependencies | patch | `5.3.2` -> `5.3.3` | [source](https://renovatebot.com/gh/TypeStrong/ts-loader) |

---

### Release Notes

<details>
<summary>TypeStrong/ts-loader</summary>

### [`v5.3.3`](https://renovatebot.com/gh/TypeStrong/ts-loader/blob/master/CHANGELOG.md#v533)

[Compare Source](https://renovatebot.com/gh/TypeStrong/ts-loader/compare/v5.3.2...v5.3.3)

-   [fix: Pass ts.Program to getCustomTransformers](https://renovatebot.com/gh/TypeStrong/ts-loader/pull/889) ([#&#8203;860](https://renovatebot.com/gh/TypeStrong/ts-loader/issues/860)) - thanks [@&#8203;andersekdahl](https://renovatebot.com/gh/andersekdahl)!

</details>

---

### Renovate configuration

:date: **Schedule**: At any time (no schedule defined).

:vertical_traffic_light: **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

:recycle: **Rebasing**: Whenever PR becomes conflicted, or if you modify the PR title to begin with "`rebase!`".

:no_bell: **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- renovate-rebase -->If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Renovate Bot](https://renovatebot.com/gh/marketplace/renovate). View repository job log [here](https://renovatebot.com/dashboard#neo-one-suite/neo-one).

Co-authored-by: Renovate Bot <[email protected]>
bors bot added a commit to neo-one-suite/neo-one that referenced this pull request Jan 6, 2019
903: chore(deps): update dependency @reactivex/ix-es2015-cjs to v2.4.3 r=davemneo a=renovate[bot]

This PR contains the following updates:

| Package | Type | Update | Change | References |
|---|---|---|---|---|
| @&#8203;reactivex/ix-es2015-cjs | devDependencies | minor | `2.3.5` -> `2.4.3` | [source](https://renovatebot.com/gh/ReactiveX/IxJS) |

---

### Release Notes

<details>
<summary>ReactiveX/IxJS</summary>

### [`v2.4.3`](https://renovatebot.com/gh/ReactiveX/IxJS/releases/v2.4.3)

[Compare Source](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.4.2...v2.4.3)

New release of IxJS is now available.  This includes a number of new features and improvements to existing APIs.

#### New APIs are available

The following APIs have been added to `AsyncIterable`

-   [`batch`](https://renovatebot.com/gh/ReactiveX/IxJS/blob/master/src/asynciterable/batch.ts)
-   [`toNodeStream`](https://renovatebot.com/gh/ReactiveX/IxJS/blob/master/src/asynciterable/tonodestream.ts)

The following APIs have been added to `Iterable`

-   [`toNodeStream`](https://renovatebot.com/gh/ReactiveX/IxJS/blob/master/src/iterable/tonodestream.ts)

##### API Fixes

-   [`AsyncIterable.fromNodeStream`](https://renovatebot.com/gh/ReactiveX/IxJS/blob/master/src/asynciterable/fromnodestream.ts) has been optimized for streams and `AsyncIterables`
-   [`AsyncIterable.prototype.pipe`](https://renovatebot.com/gh/ReactiveX/IxJS/blob/master/src/Ix.node.ts) now accepts Node.js `WritableStream` values in addition to operators.

##### Bug Fixes

-   **dependencies:** add rxjs to the production dependencies list ([54e5cf7](https://renovatebot.com/gh/ReactiveX/IxJS/commit/54e5cf7))

### [`v2.4.2`](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.4.0...v2.4.2)

[Compare Source](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.4.0...v2.4.2)

### [`v2.4.0`](https://renovatebot.com/gh/ReactiveX/IxJS/blob/master/CHANGELOG.md#&#8203;240httpsgithubcomReactiveXIxJScomparev235v240-2019-01-03)

[Compare Source](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.3.5...v2.4.0)

##### Bug Fixes

-   **toObservable:** adds symbol-observable for rxjs interop ([273e697](https://renovatebot.com/gh/ReactiveX/IxJS/commit/273e697)), closes [#&#8203;245](https://renovatebot.com/gh/ReactiveX/IxJS/issues/245)

##### Features

-   add support for passing Node WritableStreams to `AsyncIterableX#pipe()` ([#&#8203;257](https://renovatebot.com/gh/ReactiveX/IxJS/issues/257)) ([9a1c5cc](https://renovatebot.com/gh/ReactiveX/IxJS/commit/9a1c5cc))

-   add `AsyncIterableX#toNodeStream()` ([#&#8203;257](https://renovatebot.com/gh/ReactiveX/IxJS/issues/257)) ([9a1c5cc](https://renovatebot.com/gh/ReactiveX/IxJS/commit/9a1c5cc))

-   add `AsyncIterableX#batch()` ([#&#8203;222](https://renovatebot.com/gh/ReactiveX/IxJS/issues/222)) ([9c9bd7e](https://renovatebot.com/gh/ReactiveX/IxJS/commit/9c9bd7e))

#### [2.3.5](https://renovatebot.com/gh/ReactiveX/IxJS/compare/9.2.0...v2.3.5) (2018-02-19)

##### Bug Fixes

-   **compile:** adding some missing exports to deal with typescript 2.7.x compat issue ([0b0c837](https://renovatebot.com/gh/ReactiveX/IxJS/commit/0b0c837)), closes [#&#8203;214](https://renovatebot.com/gh/ReactiveX/IxJS/issues/214)

##### Features

-   **orderby:** add piped orderby ([#&#8203;190](https://renovatebot.com/gh/ReactiveX/IxJS/issues/190)) ([aaa527a](https://renovatebot.com/gh/ReactiveX/IxJS/commit/aaa527a))

#### [2.3.4](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.3.3...v2.3.4) (2017-11-29)

##### Bug Fixes

-   **typings:** Fix optional predicate typings for user-defined typeguard predicates ([fedd563](https://renovatebot.com/gh/ReactiveX/IxJS/commit/fedd563))
-   **typings:** workaround typescript bugs when noImplicitAny or strictNullChecks are not true ([ce03239](https://renovatebot.com/gh/ReactiveX/IxJS/commit/ce03239))

#### [2.3.3](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.3.2...v2.3.3) (2017-11-21)

##### Reverts

-   **npm:** revert [`4493754`](https://renovatebot.com/gh/ReactiveX/IxJS/commit/4493754d9fbbc061347d8ef785704b61ecb486c5) ([564c600](https://renovatebot.com/gh/ReactiveX/IxJS/commit/564c600)), closes [#&#8203;163](https://renovatebot.com/gh/ReactiveX/IxJS/issues/163)

#### [2.3.2](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.3.1...v2.3.2) (2017-11-21)

##### Bug Fixes

-   **fromnodestream:** enable fromnodestream tests, fix minification problems ([#&#8203;156](https://renovatebot.com/gh/ReactiveX/IxJS/issues/156)) ([745d763](https://renovatebot.com/gh/ReactiveX/IxJS/commit/745d763))
-   **fromnodestream:** type fromNodeStream to accept NodeJS.ReadableStream interface ([3cbf2dd](https://renovatebot.com/gh/ReactiveX/IxJS/commit/3cbf2dd))
-   **FromObservableAsyncIterable:** Fix handling of asynchronously emitting Observables ([#&#8203;150](https://renovatebot.com/gh/ReactiveX/IxJS/issues/150)) ([2c7222c](https://renovatebot.com/gh/ReactiveX/IxJS/commit/2c7222c))
-   **readme:** fix lettable syntax ([0e46181](https://renovatebot.com/gh/ReactiveX/IxJS/commit/0e46181))

##### Features

-   **as:** Add static as convenience methods to wrap values as Async/Iterables ([#&#8203;154](https://renovatebot.com/gh/ReactiveX/IxJS/issues/154)) ([79a14c5](https://renovatebot.com/gh/ReactiveX/IxJS/commit/79a14c5))

#### [2.3.1](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.3.0...v2.3.1) (2017-11-08)

##### Bug Fixes

-   **single:** make iterable prototype single predicate an optional parameter again ([2bea5ab](https://renovatebot.com/gh/ReactiveX/IxJS/commit/2bea5ab)), closes [/github.com/ReactiveX/IxJS/pull/83#issuecomment-341832266](https://renovatebot.com/gh//github.com/ReactiveX/IxJS/pull/83/issues/issuecomment-341832266)

</details>

---

### Renovate configuration

:date: **Schedule**: At any time (no schedule defined).

:vertical_traffic_light: **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

:recycle: **Rebasing**: Whenever PR becomes conflicted, or if you modify the PR title to begin with "`rebase!`".

:no_bell: **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- renovate-rebase -->If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Renovate Bot](https://renovatebot.com/gh/marketplace/renovate). View repository job log [here](https://renovatebot.com/dashboard#neo-one-suite/neo-one).

904: chore(deps): update dependency @reactivex/ix-esnext-esm to v2.4.3 r=davemneo a=renovate[bot]

This PR contains the following updates:

| Package | Type | Update | Change | References |
|---|---|---|---|---|
| @&#8203;reactivex/ix-esnext-esm | devDependencies | minor | `2.3.5` -> `2.4.3` | [source](https://renovatebot.com/gh/ReactiveX/IxJS) |

---

### Release Notes

<details>
<summary>ReactiveX/IxJS</summary>

### [`v2.4.3`](https://renovatebot.com/gh/ReactiveX/IxJS/releases/v2.4.3)

[Compare Source](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.4.2...v2.4.3)

New release of IxJS is now available.  This includes a number of new features and improvements to existing APIs.

#### New APIs are available

The following APIs have been added to `AsyncIterable`

-   [`batch`](https://renovatebot.com/gh/ReactiveX/IxJS/blob/master/src/asynciterable/batch.ts)
-   [`toNodeStream`](https://renovatebot.com/gh/ReactiveX/IxJS/blob/master/src/asynciterable/tonodestream.ts)

The following APIs have been added to `Iterable`

-   [`toNodeStream`](https://renovatebot.com/gh/ReactiveX/IxJS/blob/master/src/iterable/tonodestream.ts)

##### API Fixes

-   [`AsyncIterable.fromNodeStream`](https://renovatebot.com/gh/ReactiveX/IxJS/blob/master/src/asynciterable/fromnodestream.ts) has been optimized for streams and `AsyncIterables`
-   [`AsyncIterable.prototype.pipe`](https://renovatebot.com/gh/ReactiveX/IxJS/blob/master/src/Ix.node.ts) now accepts Node.js `WritableStream` values in addition to operators.

##### Bug Fixes

-   **dependencies:** add rxjs to the production dependencies list ([54e5cf7](https://renovatebot.com/gh/ReactiveX/IxJS/commit/54e5cf7))

### [`v2.4.2`](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.4.0...v2.4.2)

[Compare Source](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.4.0...v2.4.2)

### [`v2.4.0`](https://renovatebot.com/gh/ReactiveX/IxJS/blob/master/CHANGELOG.md#&#8203;240httpsgithubcomReactiveXIxJScomparev235v240-2019-01-03)

[Compare Source](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.3.5...v2.4.0)

##### Bug Fixes

-   **toObservable:** adds symbol-observable for rxjs interop ([273e697](https://renovatebot.com/gh/ReactiveX/IxJS/commit/273e697)), closes [#&#8203;245](https://renovatebot.com/gh/ReactiveX/IxJS/issues/245)

##### Features

-   add support for passing Node WritableStreams to `AsyncIterableX#pipe()` ([#&#8203;257](https://renovatebot.com/gh/ReactiveX/IxJS/issues/257)) ([9a1c5cc](https://renovatebot.com/gh/ReactiveX/IxJS/commit/9a1c5cc))

-   add `AsyncIterableX#toNodeStream()` ([#&#8203;257](https://renovatebot.com/gh/ReactiveX/IxJS/issues/257)) ([9a1c5cc](https://renovatebot.com/gh/ReactiveX/IxJS/commit/9a1c5cc))

-   add `AsyncIterableX#batch()` ([#&#8203;222](https://renovatebot.com/gh/ReactiveX/IxJS/issues/222)) ([9c9bd7e](https://renovatebot.com/gh/ReactiveX/IxJS/commit/9c9bd7e))

#### [2.3.5](https://renovatebot.com/gh/ReactiveX/IxJS/compare/9.2.0...v2.3.5) (2018-02-19)

##### Bug Fixes

-   **compile:** adding some missing exports to deal with typescript 2.7.x compat issue ([0b0c837](https://renovatebot.com/gh/ReactiveX/IxJS/commit/0b0c837)), closes [#&#8203;214](https://renovatebot.com/gh/ReactiveX/IxJS/issues/214)

##### Features

-   **orderby:** add piped orderby ([#&#8203;190](https://renovatebot.com/gh/ReactiveX/IxJS/issues/190)) ([aaa527a](https://renovatebot.com/gh/ReactiveX/IxJS/commit/aaa527a))

#### [2.3.4](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.3.3...v2.3.4) (2017-11-29)

##### Bug Fixes

-   **typings:** Fix optional predicate typings for user-defined typeguard predicates ([fedd563](https://renovatebot.com/gh/ReactiveX/IxJS/commit/fedd563))
-   **typings:** workaround typescript bugs when noImplicitAny or strictNullChecks are not true ([ce03239](https://renovatebot.com/gh/ReactiveX/IxJS/commit/ce03239))

#### [2.3.3](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.3.2...v2.3.3) (2017-11-21)

##### Reverts

-   **npm:** revert [`4493754`](https://renovatebot.com/gh/ReactiveX/IxJS/commit/4493754d9fbbc061347d8ef785704b61ecb486c5) ([564c600](https://renovatebot.com/gh/ReactiveX/IxJS/commit/564c600)), closes [#&#8203;163](https://renovatebot.com/gh/ReactiveX/IxJS/issues/163)

#### [2.3.2](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.3.1...v2.3.2) (2017-11-21)

##### Bug Fixes

-   **fromnodestream:** enable fromnodestream tests, fix minification problems ([#&#8203;156](https://renovatebot.com/gh/ReactiveX/IxJS/issues/156)) ([745d763](https://renovatebot.com/gh/ReactiveX/IxJS/commit/745d763))
-   **fromnodestream:** type fromNodeStream to accept NodeJS.ReadableStream interface ([3cbf2dd](https://renovatebot.com/gh/ReactiveX/IxJS/commit/3cbf2dd))
-   **FromObservableAsyncIterable:** Fix handling of asynchronously emitting Observables ([#&#8203;150](https://renovatebot.com/gh/ReactiveX/IxJS/issues/150)) ([2c7222c](https://renovatebot.com/gh/ReactiveX/IxJS/commit/2c7222c))
-   **readme:** fix lettable syntax ([0e46181](https://renovatebot.com/gh/ReactiveX/IxJS/commit/0e46181))

##### Features

-   **as:** Add static as convenience methods to wrap values as Async/Iterables ([#&#8203;154](https://renovatebot.com/gh/ReactiveX/IxJS/issues/154)) ([79a14c5](https://renovatebot.com/gh/ReactiveX/IxJS/commit/79a14c5))

#### [2.3.1](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.3.0...v2.3.1) (2017-11-08)

##### Bug Fixes

-   **single:** make iterable prototype single predicate an optional parameter again ([2bea5ab](https://renovatebot.com/gh/ReactiveX/IxJS/commit/2bea5ab)), closes [/github.com/ReactiveX/IxJS/pull/83#issuecomment-341832266](https://renovatebot.com/gh//github.com/ReactiveX/IxJS/pull/83/issues/issuecomment-341832266)

</details>

---

### Renovate configuration

:date: **Schedule**: At any time (no schedule defined).

:vertical_traffic_light: **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

:recycle: **Rebasing**: Whenever PR becomes conflicted, or if you modify the PR title to begin with "`rebase!`".

:no_bell: **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- renovate-rebase -->If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Renovate Bot](https://renovatebot.com/gh/marketplace/renovate). View repository job log [here](https://renovatebot.com/dashboard#neo-one-suite/neo-one).

905: chore(deps): update dependency babel-loader to v8.0.5 r=davemneo a=renovate[bot]

This PR contains the following updates:

| Package | Type | Update | Change | References |
|---|---|---|---|---|
| babel-loader | devDependencies | patch | `8.0.4` -> `8.0.5` | [source](https://renovatebot.com/gh/babel/babel-loader) |

---

### Release Notes

<details>
<summary>babel/babel-loader</summary>

### [`v8.0.5`](https://renovatebot.com/gh/babel/babel-loader/releases/v8.0.5)

[Compare Source](https://renovatebot.com/gh/babel/babel-loader/compare/v8.0.4...v8.0.5)

-   Update `find-cache-dir` to 2.0

</details>

---

### Renovate configuration

:date: **Schedule**: At any time (no schedule defined).

:vertical_traffic_light: **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

:recycle: **Rebasing**: Whenever PR becomes conflicted, or if you modify the PR title to begin with "`rebase!`".

:no_bell: **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- renovate-rebase -->If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Renovate Bot](https://renovatebot.com/gh/marketplace/renovate). View repository job log [here](https://renovatebot.com/dashboard#neo-one-suite/neo-one).

907: chore(deps): update dependency ts-loader to v5.3.3 r=davemneo a=renovate[bot]

This PR contains the following updates:

| Package | Type | Update | Change | References |
|---|---|---|---|---|
| ts-loader | devDependencies | patch | `5.3.2` -> `5.3.3` | [source](https://renovatebot.com/gh/TypeStrong/ts-loader) |

---

### Release Notes

<details>
<summary>TypeStrong/ts-loader</summary>

### [`v5.3.3`](https://renovatebot.com/gh/TypeStrong/ts-loader/blob/master/CHANGELOG.md#v533)

[Compare Source](https://renovatebot.com/gh/TypeStrong/ts-loader/compare/v5.3.2...v5.3.3)

-   [fix: Pass ts.Program to getCustomTransformers](https://renovatebot.com/gh/TypeStrong/ts-loader/pull/889) ([#&#8203;860](https://renovatebot.com/gh/TypeStrong/ts-loader/issues/860)) - thanks [@&#8203;andersekdahl](https://renovatebot.com/gh/andersekdahl)!

</details>

---

### Renovate configuration

:date: **Schedule**: At any time (no schedule defined).

:vertical_traffic_light: **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

:recycle: **Rebasing**: Whenever PR becomes conflicted, or if you modify the PR title to begin with "`rebase!`".

:no_bell: **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- renovate-rebase -->If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Renovate Bot](https://renovatebot.com/gh/marketplace/renovate). View repository job log [here](https://renovatebot.com/dashboard#neo-one-suite/neo-one).

Co-authored-by: Renovate Bot <[email protected]>
bors bot added a commit to neo-one-suite/neo-one that referenced this pull request Jan 6, 2019
903: chore(deps): update dependency @reactivex/ix-es2015-cjs to v2.4.3 r=davemneo a=renovate[bot]

This PR contains the following updates:

| Package | Type | Update | Change | References |
|---|---|---|---|---|
| @&#8203;reactivex/ix-es2015-cjs | devDependencies | minor | `2.3.5` -> `2.4.3` | [source](https://renovatebot.com/gh/ReactiveX/IxJS) |

---

### Release Notes

<details>
<summary>ReactiveX/IxJS</summary>

### [`v2.4.3`](https://renovatebot.com/gh/ReactiveX/IxJS/releases/v2.4.3)

[Compare Source](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.4.2...v2.4.3)

New release of IxJS is now available.  This includes a number of new features and improvements to existing APIs.

#### New APIs are available

The following APIs have been added to `AsyncIterable`

-   [`batch`](https://renovatebot.com/gh/ReactiveX/IxJS/blob/master/src/asynciterable/batch.ts)
-   [`toNodeStream`](https://renovatebot.com/gh/ReactiveX/IxJS/blob/master/src/asynciterable/tonodestream.ts)

The following APIs have been added to `Iterable`

-   [`toNodeStream`](https://renovatebot.com/gh/ReactiveX/IxJS/blob/master/src/iterable/tonodestream.ts)

##### API Fixes

-   [`AsyncIterable.fromNodeStream`](https://renovatebot.com/gh/ReactiveX/IxJS/blob/master/src/asynciterable/fromnodestream.ts) has been optimized for streams and `AsyncIterables`
-   [`AsyncIterable.prototype.pipe`](https://renovatebot.com/gh/ReactiveX/IxJS/blob/master/src/Ix.node.ts) now accepts Node.js `WritableStream` values in addition to operators.

##### Bug Fixes

-   **dependencies:** add rxjs to the production dependencies list ([54e5cf7](https://renovatebot.com/gh/ReactiveX/IxJS/commit/54e5cf7))

### [`v2.4.2`](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.4.0...v2.4.2)

[Compare Source](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.4.0...v2.4.2)

### [`v2.4.0`](https://renovatebot.com/gh/ReactiveX/IxJS/blob/master/CHANGELOG.md#&#8203;240httpsgithubcomReactiveXIxJScomparev235v240-2019-01-03)

[Compare Source](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.3.5...v2.4.0)

##### Bug Fixes

-   **toObservable:** adds symbol-observable for rxjs interop ([273e697](https://renovatebot.com/gh/ReactiveX/IxJS/commit/273e697)), closes [#&#8203;245](https://renovatebot.com/gh/ReactiveX/IxJS/issues/245)

##### Features

-   add support for passing Node WritableStreams to `AsyncIterableX#pipe()` ([#&#8203;257](https://renovatebot.com/gh/ReactiveX/IxJS/issues/257)) ([9a1c5cc](https://renovatebot.com/gh/ReactiveX/IxJS/commit/9a1c5cc))

-   add `AsyncIterableX#toNodeStream()` ([#&#8203;257](https://renovatebot.com/gh/ReactiveX/IxJS/issues/257)) ([9a1c5cc](https://renovatebot.com/gh/ReactiveX/IxJS/commit/9a1c5cc))

-   add `AsyncIterableX#batch()` ([#&#8203;222](https://renovatebot.com/gh/ReactiveX/IxJS/issues/222)) ([9c9bd7e](https://renovatebot.com/gh/ReactiveX/IxJS/commit/9c9bd7e))

#### [2.3.5](https://renovatebot.com/gh/ReactiveX/IxJS/compare/9.2.0...v2.3.5) (2018-02-19)

##### Bug Fixes

-   **compile:** adding some missing exports to deal with typescript 2.7.x compat issue ([0b0c837](https://renovatebot.com/gh/ReactiveX/IxJS/commit/0b0c837)), closes [#&#8203;214](https://renovatebot.com/gh/ReactiveX/IxJS/issues/214)

##### Features

-   **orderby:** add piped orderby ([#&#8203;190](https://renovatebot.com/gh/ReactiveX/IxJS/issues/190)) ([aaa527a](https://renovatebot.com/gh/ReactiveX/IxJS/commit/aaa527a))

#### [2.3.4](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.3.3...v2.3.4) (2017-11-29)

##### Bug Fixes

-   **typings:** Fix optional predicate typings for user-defined typeguard predicates ([fedd563](https://renovatebot.com/gh/ReactiveX/IxJS/commit/fedd563))
-   **typings:** workaround typescript bugs when noImplicitAny or strictNullChecks are not true ([ce03239](https://renovatebot.com/gh/ReactiveX/IxJS/commit/ce03239))

#### [2.3.3](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.3.2...v2.3.3) (2017-11-21)

##### Reverts

-   **npm:** revert [`4493754`](https://renovatebot.com/gh/ReactiveX/IxJS/commit/4493754d9fbbc061347d8ef785704b61ecb486c5) ([564c600](https://renovatebot.com/gh/ReactiveX/IxJS/commit/564c600)), closes [#&#8203;163](https://renovatebot.com/gh/ReactiveX/IxJS/issues/163)

#### [2.3.2](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.3.1...v2.3.2) (2017-11-21)

##### Bug Fixes

-   **fromnodestream:** enable fromnodestream tests, fix minification problems ([#&#8203;156](https://renovatebot.com/gh/ReactiveX/IxJS/issues/156)) ([745d763](https://renovatebot.com/gh/ReactiveX/IxJS/commit/745d763))
-   **fromnodestream:** type fromNodeStream to accept NodeJS.ReadableStream interface ([3cbf2dd](https://renovatebot.com/gh/ReactiveX/IxJS/commit/3cbf2dd))
-   **FromObservableAsyncIterable:** Fix handling of asynchronously emitting Observables ([#&#8203;150](https://renovatebot.com/gh/ReactiveX/IxJS/issues/150)) ([2c7222c](https://renovatebot.com/gh/ReactiveX/IxJS/commit/2c7222c))
-   **readme:** fix lettable syntax ([0e46181](https://renovatebot.com/gh/ReactiveX/IxJS/commit/0e46181))

##### Features

-   **as:** Add static as convenience methods to wrap values as Async/Iterables ([#&#8203;154](https://renovatebot.com/gh/ReactiveX/IxJS/issues/154)) ([79a14c5](https://renovatebot.com/gh/ReactiveX/IxJS/commit/79a14c5))

#### [2.3.1](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.3.0...v2.3.1) (2017-11-08)

##### Bug Fixes

-   **single:** make iterable prototype single predicate an optional parameter again ([2bea5ab](https://renovatebot.com/gh/ReactiveX/IxJS/commit/2bea5ab)), closes [/github.com/ReactiveX/IxJS/pull/83#issuecomment-341832266](https://renovatebot.com/gh//github.com/ReactiveX/IxJS/pull/83/issues/issuecomment-341832266)

</details>

---

### Renovate configuration

:date: **Schedule**: At any time (no schedule defined).

:vertical_traffic_light: **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

:recycle: **Rebasing**: Whenever PR becomes conflicted, or if you modify the PR title to begin with "`rebase!`".

:no_bell: **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- renovate-rebase -->If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Renovate Bot](https://renovatebot.com/gh/marketplace/renovate). View repository job log [here](https://renovatebot.com/dashboard#neo-one-suite/neo-one).

904: chore(deps): update dependency @reactivex/ix-esnext-esm to v2.4.3 r=davemneo a=renovate[bot]

This PR contains the following updates:

| Package | Type | Update | Change | References |
|---|---|---|---|---|
| @&#8203;reactivex/ix-esnext-esm | devDependencies | minor | `2.3.5` -> `2.4.3` | [source](https://renovatebot.com/gh/ReactiveX/IxJS) |

---

### Release Notes

<details>
<summary>ReactiveX/IxJS</summary>

### [`v2.4.3`](https://renovatebot.com/gh/ReactiveX/IxJS/releases/v2.4.3)

[Compare Source](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.4.2...v2.4.3)

New release of IxJS is now available.  This includes a number of new features and improvements to existing APIs.

#### New APIs are available

The following APIs have been added to `AsyncIterable`

-   [`batch`](https://renovatebot.com/gh/ReactiveX/IxJS/blob/master/src/asynciterable/batch.ts)
-   [`toNodeStream`](https://renovatebot.com/gh/ReactiveX/IxJS/blob/master/src/asynciterable/tonodestream.ts)

The following APIs have been added to `Iterable`

-   [`toNodeStream`](https://renovatebot.com/gh/ReactiveX/IxJS/blob/master/src/iterable/tonodestream.ts)

##### API Fixes

-   [`AsyncIterable.fromNodeStream`](https://renovatebot.com/gh/ReactiveX/IxJS/blob/master/src/asynciterable/fromnodestream.ts) has been optimized for streams and `AsyncIterables`
-   [`AsyncIterable.prototype.pipe`](https://renovatebot.com/gh/ReactiveX/IxJS/blob/master/src/Ix.node.ts) now accepts Node.js `WritableStream` values in addition to operators.

##### Bug Fixes

-   **dependencies:** add rxjs to the production dependencies list ([54e5cf7](https://renovatebot.com/gh/ReactiveX/IxJS/commit/54e5cf7))

### [`v2.4.2`](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.4.0...v2.4.2)

[Compare Source](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.4.0...v2.4.2)

### [`v2.4.0`](https://renovatebot.com/gh/ReactiveX/IxJS/blob/master/CHANGELOG.md#&#8203;240httpsgithubcomReactiveXIxJScomparev235v240-2019-01-03)

[Compare Source](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.3.5...v2.4.0)

##### Bug Fixes

-   **toObservable:** adds symbol-observable for rxjs interop ([273e697](https://renovatebot.com/gh/ReactiveX/IxJS/commit/273e697)), closes [#&#8203;245](https://renovatebot.com/gh/ReactiveX/IxJS/issues/245)

##### Features

-   add support for passing Node WritableStreams to `AsyncIterableX#pipe()` ([#&#8203;257](https://renovatebot.com/gh/ReactiveX/IxJS/issues/257)) ([9a1c5cc](https://renovatebot.com/gh/ReactiveX/IxJS/commit/9a1c5cc))

-   add `AsyncIterableX#toNodeStream()` ([#&#8203;257](https://renovatebot.com/gh/ReactiveX/IxJS/issues/257)) ([9a1c5cc](https://renovatebot.com/gh/ReactiveX/IxJS/commit/9a1c5cc))

-   add `AsyncIterableX#batch()` ([#&#8203;222](https://renovatebot.com/gh/ReactiveX/IxJS/issues/222)) ([9c9bd7e](https://renovatebot.com/gh/ReactiveX/IxJS/commit/9c9bd7e))

#### [2.3.5](https://renovatebot.com/gh/ReactiveX/IxJS/compare/9.2.0...v2.3.5) (2018-02-19)

##### Bug Fixes

-   **compile:** adding some missing exports to deal with typescript 2.7.x compat issue ([0b0c837](https://renovatebot.com/gh/ReactiveX/IxJS/commit/0b0c837)), closes [#&#8203;214](https://renovatebot.com/gh/ReactiveX/IxJS/issues/214)

##### Features

-   **orderby:** add piped orderby ([#&#8203;190](https://renovatebot.com/gh/ReactiveX/IxJS/issues/190)) ([aaa527a](https://renovatebot.com/gh/ReactiveX/IxJS/commit/aaa527a))

#### [2.3.4](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.3.3...v2.3.4) (2017-11-29)

##### Bug Fixes

-   **typings:** Fix optional predicate typings for user-defined typeguard predicates ([fedd563](https://renovatebot.com/gh/ReactiveX/IxJS/commit/fedd563))
-   **typings:** workaround typescript bugs when noImplicitAny or strictNullChecks are not true ([ce03239](https://renovatebot.com/gh/ReactiveX/IxJS/commit/ce03239))

#### [2.3.3](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.3.2...v2.3.3) (2017-11-21)

##### Reverts

-   **npm:** revert [`4493754`](https://renovatebot.com/gh/ReactiveX/IxJS/commit/4493754d9fbbc061347d8ef785704b61ecb486c5) ([564c600](https://renovatebot.com/gh/ReactiveX/IxJS/commit/564c600)), closes [#&#8203;163](https://renovatebot.com/gh/ReactiveX/IxJS/issues/163)

#### [2.3.2](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.3.1...v2.3.2) (2017-11-21)

##### Bug Fixes

-   **fromnodestream:** enable fromnodestream tests, fix minification problems ([#&#8203;156](https://renovatebot.com/gh/ReactiveX/IxJS/issues/156)) ([745d763](https://renovatebot.com/gh/ReactiveX/IxJS/commit/745d763))
-   **fromnodestream:** type fromNodeStream to accept NodeJS.ReadableStream interface ([3cbf2dd](https://renovatebot.com/gh/ReactiveX/IxJS/commit/3cbf2dd))
-   **FromObservableAsyncIterable:** Fix handling of asynchronously emitting Observables ([#&#8203;150](https://renovatebot.com/gh/ReactiveX/IxJS/issues/150)) ([2c7222c](https://renovatebot.com/gh/ReactiveX/IxJS/commit/2c7222c))
-   **readme:** fix lettable syntax ([0e46181](https://renovatebot.com/gh/ReactiveX/IxJS/commit/0e46181))

##### Features

-   **as:** Add static as convenience methods to wrap values as Async/Iterables ([#&#8203;154](https://renovatebot.com/gh/ReactiveX/IxJS/issues/154)) ([79a14c5](https://renovatebot.com/gh/ReactiveX/IxJS/commit/79a14c5))

#### [2.3.1](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.3.0...v2.3.1) (2017-11-08)

##### Bug Fixes

-   **single:** make iterable prototype single predicate an optional parameter again ([2bea5ab](https://renovatebot.com/gh/ReactiveX/IxJS/commit/2bea5ab)), closes [/github.com/ReactiveX/IxJS/pull/83#issuecomment-341832266](https://renovatebot.com/gh//github.com/ReactiveX/IxJS/pull/83/issues/issuecomment-341832266)

</details>

---

### Renovate configuration

:date: **Schedule**: At any time (no schedule defined).

:vertical_traffic_light: **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

:recycle: **Rebasing**: Whenever PR becomes conflicted, or if you modify the PR title to begin with "`rebase!`".

:no_bell: **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- renovate-rebase -->If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Renovate Bot](https://renovatebot.com/gh/marketplace/renovate). View repository job log [here](https://renovatebot.com/dashboard#neo-one-suite/neo-one).

Co-authored-by: Renovate Bot <[email protected]>
bors bot added a commit to neo-one-suite/neo-one that referenced this pull request Jan 7, 2019
898: chore(deps): update dependency autoprefixer to v9.4.4 r=davemneo a=renovate[bot]

This PR contains the following updates:

| Package | Type | Update | Change | References |
|---|---|---|---|---|
| autoprefixer | devDependencies | patch | `9.4.3` -> `9.4.4` | [source](https://renovatebot.com/gh/postcss/autoprefixer) |

---

### Release Notes

<details>
<summary>postcss/autoprefixer</summary>

### [`v9.4.4`](https://renovatebot.com/gh/postcss/autoprefixer/blob/master/CHANGELOG.md#&#8203;944)

[Compare Source](https://renovatebot.com/gh/postcss/autoprefixer/compare/9.4.3...9.4.4)

-   Use `direction` value for `-ms-writing-mode` (by Denys Kniazevych).
-   Fix warning text (by [@&#8203;zzzzBov](https://renovatebot.com/gh/zzzzBov)).

</details>

---

### Renovate configuration

:date: **Schedule**: At any time (no schedule defined).

:vertical_traffic_light: **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

:recycle: **Rebasing**: Whenever PR becomes conflicted, or if you modify the PR title to begin with "`rebase!`".

:no_bell: **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- renovate-rebase -->If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Renovate Bot](https://renovatebot.com/gh/marketplace/renovate). View repository job log [here](https://renovatebot.com/dashboard#neo-one-suite/neo-one).

901: chore(deps): update dependency tslint-consistent-codestyle to v1.15.0 r=davemneo a=renovate[bot]

This PR contains the following updates:

| Package | Type | Update | Change | References |
|---|---|---|---|---|
| tslint-consistent-codestyle | devDependencies | minor | `1.14.1` -> `1.15.0` | [source](https://renovatebot.com/gh/ajafff/tslint-consistent-codestyle) |

---

### Release Notes

<details>
<summary>ajafff/tslint-consistent-codestyle</summary>

### [`v1.15.0`](https://renovatebot.com/gh/ajafff/tslint-consistent-codestyle/blob/master/CHANGELOG.md#&#8203;1150)

[Compare Source](https://renovatebot.com/gh/ajafff/tslint-consistent-codestyle/compare/v1.14.1...v1.15.0)

**Features:**

-   `no-unnecessary-else` and `no-else-after-return` are now automatically fixable

</details>

---

### Renovate configuration

:date: **Schedule**: At any time (no schedule defined).

:vertical_traffic_light: **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

:recycle: **Rebasing**: Whenever PR becomes conflicted, or if you modify the PR title to begin with "`rebase!`".

:no_bell: **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- renovate-rebase -->If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Renovate Bot](https://renovatebot.com/gh/marketplace/renovate). View repository job log [here](https://renovatebot.com/dashboard#neo-one-suite/neo-one).

903: chore(deps): update dependency @reactivex/ix-es2015-cjs to v2.4.3 r=davemneo a=renovate[bot]

This PR contains the following updates:

| Package | Type | Update | Change | References |
|---|---|---|---|---|
| @&#8203;reactivex/ix-es2015-cjs | devDependencies | minor | `2.3.5` -> `2.4.3` | [source](https://renovatebot.com/gh/ReactiveX/IxJS) |

---

### Release Notes

<details>
<summary>ReactiveX/IxJS</summary>

### [`v2.4.3`](https://renovatebot.com/gh/ReactiveX/IxJS/releases/v2.4.3)

[Compare Source](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.4.2...v2.4.3)

New release of IxJS is now available.  This includes a number of new features and improvements to existing APIs.

#### New APIs are available

The following APIs have been added to `AsyncIterable`

-   [`batch`](https://renovatebot.com/gh/ReactiveX/IxJS/blob/master/src/asynciterable/batch.ts)
-   [`toNodeStream`](https://renovatebot.com/gh/ReactiveX/IxJS/blob/master/src/asynciterable/tonodestream.ts)

The following APIs have been added to `Iterable`

-   [`toNodeStream`](https://renovatebot.com/gh/ReactiveX/IxJS/blob/master/src/iterable/tonodestream.ts)

##### API Fixes

-   [`AsyncIterable.fromNodeStream`](https://renovatebot.com/gh/ReactiveX/IxJS/blob/master/src/asynciterable/fromnodestream.ts) has been optimized for streams and `AsyncIterables`
-   [`AsyncIterable.prototype.pipe`](https://renovatebot.com/gh/ReactiveX/IxJS/blob/master/src/Ix.node.ts) now accepts Node.js `WritableStream` values in addition to operators.

##### Bug Fixes

-   **dependencies:** add rxjs to the production dependencies list ([54e5cf7](https://renovatebot.com/gh/ReactiveX/IxJS/commit/54e5cf7))

### [`v2.4.2`](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.4.0...v2.4.2)

[Compare Source](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.4.0...v2.4.2)

### [`v2.4.0`](https://renovatebot.com/gh/ReactiveX/IxJS/blob/master/CHANGELOG.md#&#8203;240httpsgithubcomReactiveXIxJScomparev235v240-2019-01-03)

[Compare Source](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.3.5...v2.4.0)

##### Bug Fixes

-   **toObservable:** adds symbol-observable for rxjs interop ([273e697](https://renovatebot.com/gh/ReactiveX/IxJS/commit/273e697)), closes [#&#8203;245](https://renovatebot.com/gh/ReactiveX/IxJS/issues/245)

##### Features

-   add support for passing Node WritableStreams to `AsyncIterableX#pipe()` ([#&#8203;257](https://renovatebot.com/gh/ReactiveX/IxJS/issues/257)) ([9a1c5cc](https://renovatebot.com/gh/ReactiveX/IxJS/commit/9a1c5cc))

-   add `AsyncIterableX#toNodeStream()` ([#&#8203;257](https://renovatebot.com/gh/ReactiveX/IxJS/issues/257)) ([9a1c5cc](https://renovatebot.com/gh/ReactiveX/IxJS/commit/9a1c5cc))

-   add `AsyncIterableX#batch()` ([#&#8203;222](https://renovatebot.com/gh/ReactiveX/IxJS/issues/222)) ([9c9bd7e](https://renovatebot.com/gh/ReactiveX/IxJS/commit/9c9bd7e))

#### [2.3.5](https://renovatebot.com/gh/ReactiveX/IxJS/compare/9.2.0...v2.3.5) (2018-02-19)

##### Bug Fixes

-   **compile:** adding some missing exports to deal with typescript 2.7.x compat issue ([0b0c837](https://renovatebot.com/gh/ReactiveX/IxJS/commit/0b0c837)), closes [#&#8203;214](https://renovatebot.com/gh/ReactiveX/IxJS/issues/214)

##### Features

-   **orderby:** add piped orderby ([#&#8203;190](https://renovatebot.com/gh/ReactiveX/IxJS/issues/190)) ([aaa527a](https://renovatebot.com/gh/ReactiveX/IxJS/commit/aaa527a))

#### [2.3.4](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.3.3...v2.3.4) (2017-11-29)

##### Bug Fixes

-   **typings:** Fix optional predicate typings for user-defined typeguard predicates ([fedd563](https://renovatebot.com/gh/ReactiveX/IxJS/commit/fedd563))
-   **typings:** workaround typescript bugs when noImplicitAny or strictNullChecks are not true ([ce03239](https://renovatebot.com/gh/ReactiveX/IxJS/commit/ce03239))

#### [2.3.3](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.3.2...v2.3.3) (2017-11-21)

##### Reverts

-   **npm:** revert [`4493754`](https://renovatebot.com/gh/ReactiveX/IxJS/commit/4493754d9fbbc061347d8ef785704b61ecb486c5) ([564c600](https://renovatebot.com/gh/ReactiveX/IxJS/commit/564c600)), closes [#&#8203;163](https://renovatebot.com/gh/ReactiveX/IxJS/issues/163)

#### [2.3.2](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.3.1...v2.3.2) (2017-11-21)

##### Bug Fixes

-   **fromnodestream:** enable fromnodestream tests, fix minification problems ([#&#8203;156](https://renovatebot.com/gh/ReactiveX/IxJS/issues/156)) ([745d763](https://renovatebot.com/gh/ReactiveX/IxJS/commit/745d763))
-   **fromnodestream:** type fromNodeStream to accept NodeJS.ReadableStream interface ([3cbf2dd](https://renovatebot.com/gh/ReactiveX/IxJS/commit/3cbf2dd))
-   **FromObservableAsyncIterable:** Fix handling of asynchronously emitting Observables ([#&#8203;150](https://renovatebot.com/gh/ReactiveX/IxJS/issues/150)) ([2c7222c](https://renovatebot.com/gh/ReactiveX/IxJS/commit/2c7222c))
-   **readme:** fix lettable syntax ([0e46181](https://renovatebot.com/gh/ReactiveX/IxJS/commit/0e46181))

##### Features

-   **as:** Add static as convenience methods to wrap values as Async/Iterables ([#&#8203;154](https://renovatebot.com/gh/ReactiveX/IxJS/issues/154)) ([79a14c5](https://renovatebot.com/gh/ReactiveX/IxJS/commit/79a14c5))

#### [2.3.1](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.3.0...v2.3.1) (2017-11-08)

##### Bug Fixes

-   **single:** make iterable prototype single predicate an optional parameter again ([2bea5ab](https://renovatebot.com/gh/ReactiveX/IxJS/commit/2bea5ab)), closes [/github.com/ReactiveX/IxJS/pull/83#issuecomment-341832266](https://renovatebot.com/gh//github.com/ReactiveX/IxJS/pull/83/issues/issuecomment-341832266)

</details>

---

### Renovate configuration

:date: **Schedule**: At any time (no schedule defined).

:vertical_traffic_light: **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

:recycle: **Rebasing**: Whenever PR becomes conflicted, or if you modify the PR title to begin with "`rebase!`".

:no_bell: **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- renovate-rebase -->If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Renovate Bot](https://renovatebot.com/gh/marketplace/renovate). View repository job log [here](https://renovatebot.com/dashboard#neo-one-suite/neo-one).

904: chore(deps): update dependency @reactivex/ix-esnext-esm to v2.4.3 r=davemneo a=renovate[bot]

This PR contains the following updates:

| Package | Type | Update | Change | References |
|---|---|---|---|---|
| @&#8203;reactivex/ix-esnext-esm | devDependencies | minor | `2.3.5` -> `2.4.3` | [source](https://renovatebot.com/gh/ReactiveX/IxJS) |

---

### Release Notes

<details>
<summary>ReactiveX/IxJS</summary>

### [`v2.4.3`](https://renovatebot.com/gh/ReactiveX/IxJS/releases/v2.4.3)

[Compare Source](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.4.2...v2.4.3)

New release of IxJS is now available.  This includes a number of new features and improvements to existing APIs.

#### New APIs are available

The following APIs have been added to `AsyncIterable`

-   [`batch`](https://renovatebot.com/gh/ReactiveX/IxJS/blob/master/src/asynciterable/batch.ts)
-   [`toNodeStream`](https://renovatebot.com/gh/ReactiveX/IxJS/blob/master/src/asynciterable/tonodestream.ts)

The following APIs have been added to `Iterable`

-   [`toNodeStream`](https://renovatebot.com/gh/ReactiveX/IxJS/blob/master/src/iterable/tonodestream.ts)

##### API Fixes

-   [`AsyncIterable.fromNodeStream`](https://renovatebot.com/gh/ReactiveX/IxJS/blob/master/src/asynciterable/fromnodestream.ts) has been optimized for streams and `AsyncIterables`
-   [`AsyncIterable.prototype.pipe`](https://renovatebot.com/gh/ReactiveX/IxJS/blob/master/src/Ix.node.ts) now accepts Node.js `WritableStream` values in addition to operators.

##### Bug Fixes

-   **dependencies:** add rxjs to the production dependencies list ([54e5cf7](https://renovatebot.com/gh/ReactiveX/IxJS/commit/54e5cf7))

### [`v2.4.2`](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.4.0...v2.4.2)

[Compare Source](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.4.0...v2.4.2)

### [`v2.4.0`](https://renovatebot.com/gh/ReactiveX/IxJS/blob/master/CHANGELOG.md#&#8203;240httpsgithubcomReactiveXIxJScomparev235v240-2019-01-03)

[Compare Source](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.3.5...v2.4.0)

##### Bug Fixes

-   **toObservable:** adds symbol-observable for rxjs interop ([273e697](https://renovatebot.com/gh/ReactiveX/IxJS/commit/273e697)), closes [#&#8203;245](https://renovatebot.com/gh/ReactiveX/IxJS/issues/245)

##### Features

-   add support for passing Node WritableStreams to `AsyncIterableX#pipe()` ([#&#8203;257](https://renovatebot.com/gh/ReactiveX/IxJS/issues/257)) ([9a1c5cc](https://renovatebot.com/gh/ReactiveX/IxJS/commit/9a1c5cc))

-   add `AsyncIterableX#toNodeStream()` ([#&#8203;257](https://renovatebot.com/gh/ReactiveX/IxJS/issues/257)) ([9a1c5cc](https://renovatebot.com/gh/ReactiveX/IxJS/commit/9a1c5cc))

-   add `AsyncIterableX#batch()` ([#&#8203;222](https://renovatebot.com/gh/ReactiveX/IxJS/issues/222)) ([9c9bd7e](https://renovatebot.com/gh/ReactiveX/IxJS/commit/9c9bd7e))

#### [2.3.5](https://renovatebot.com/gh/ReactiveX/IxJS/compare/9.2.0...v2.3.5) (2018-02-19)

##### Bug Fixes

-   **compile:** adding some missing exports to deal with typescript 2.7.x compat issue ([0b0c837](https://renovatebot.com/gh/ReactiveX/IxJS/commit/0b0c837)), closes [#&#8203;214](https://renovatebot.com/gh/ReactiveX/IxJS/issues/214)

##### Features

-   **orderby:** add piped orderby ([#&#8203;190](https://renovatebot.com/gh/ReactiveX/IxJS/issues/190)) ([aaa527a](https://renovatebot.com/gh/ReactiveX/IxJS/commit/aaa527a))

#### [2.3.4](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.3.3...v2.3.4) (2017-11-29)

##### Bug Fixes

-   **typings:** Fix optional predicate typings for user-defined typeguard predicates ([fedd563](https://renovatebot.com/gh/ReactiveX/IxJS/commit/fedd563))
-   **typings:** workaround typescript bugs when noImplicitAny or strictNullChecks are not true ([ce03239](https://renovatebot.com/gh/ReactiveX/IxJS/commit/ce03239))

#### [2.3.3](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.3.2...v2.3.3) (2017-11-21)

##### Reverts

-   **npm:** revert [`4493754`](https://renovatebot.com/gh/ReactiveX/IxJS/commit/4493754d9fbbc061347d8ef785704b61ecb486c5) ([564c600](https://renovatebot.com/gh/ReactiveX/IxJS/commit/564c600)), closes [#&#8203;163](https://renovatebot.com/gh/ReactiveX/IxJS/issues/163)

#### [2.3.2](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.3.1...v2.3.2) (2017-11-21)

##### Bug Fixes

-   **fromnodestream:** enable fromnodestream tests, fix minification problems ([#&#8203;156](https://renovatebot.com/gh/ReactiveX/IxJS/issues/156)) ([745d763](https://renovatebot.com/gh/ReactiveX/IxJS/commit/745d763))
-   **fromnodestream:** type fromNodeStream to accept NodeJS.ReadableStream interface ([3cbf2dd](https://renovatebot.com/gh/ReactiveX/IxJS/commit/3cbf2dd))
-   **FromObservableAsyncIterable:** Fix handling of asynchronously emitting Observables ([#&#8203;150](https://renovatebot.com/gh/ReactiveX/IxJS/issues/150)) ([2c7222c](https://renovatebot.com/gh/ReactiveX/IxJS/commit/2c7222c))
-   **readme:** fix lettable syntax ([0e46181](https://renovatebot.com/gh/ReactiveX/IxJS/commit/0e46181))

##### Features

-   **as:** Add static as convenience methods to wrap values as Async/Iterables ([#&#8203;154](https://renovatebot.com/gh/ReactiveX/IxJS/issues/154)) ([79a14c5](https://renovatebot.com/gh/ReactiveX/IxJS/commit/79a14c5))

#### [2.3.1](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.3.0...v2.3.1) (2017-11-08)

##### Bug Fixes

-   **single:** make iterable prototype single predicate an optional parameter again ([2bea5ab](https://renovatebot.com/gh/ReactiveX/IxJS/commit/2bea5ab)), closes [/github.com/ReactiveX/IxJS/pull/83#issuecomment-341832266](https://renovatebot.com/gh//github.com/ReactiveX/IxJS/pull/83/issues/issuecomment-341832266)

</details>

---

### Renovate configuration

:date: **Schedule**: At any time (no schedule defined).

:vertical_traffic_light: **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

:recycle: **Rebasing**: Whenever PR becomes conflicted, or if you modify the PR title to begin with "`rebase!`".

:no_bell: **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- renovate-rebase -->If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Renovate Bot](https://renovatebot.com/gh/marketplace/renovate). View repository job log [here](https://renovatebot.com/dashboard#neo-one-suite/neo-one).

905: chore(deps): update dependency babel-loader to v8.0.5 r=davemneo a=renovate[bot]

This PR contains the following updates:

| Package | Type | Update | Change | References |
|---|---|---|---|---|
| babel-loader | devDependencies | patch | `8.0.4` -> `8.0.5` | [source](https://renovatebot.com/gh/babel/babel-loader) |

---

### Release Notes

<details>
<summary>babel/babel-loader</summary>

### [`v8.0.5`](https://renovatebot.com/gh/babel/babel-loader/releases/v8.0.5)

[Compare Source](https://renovatebot.com/gh/babel/babel-loader/compare/v8.0.4...v8.0.5)

-   Update `find-cache-dir` to 2.0

</details>

---

### Renovate configuration

:date: **Schedule**: At any time (no schedule defined).

:vertical_traffic_light: **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

:recycle: **Rebasing**: Whenever PR becomes conflicted, or if you modify the PR title to begin with "`rebase!`".

:no_bell: **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- renovate-rebase -->If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Renovate Bot](https://renovatebot.com/gh/marketplace/renovate). View repository job log [here](https://renovatebot.com/dashboard#neo-one-suite/neo-one).

906: chore(deps): update dependency cache-loader to v2.0.1 r=davemneo a=renovate[bot]

This PR contains the following updates:

| Package | Type | Update | Change | References |
|---|---|---|---|---|
| cache-loader | devDependencies | patch | `2.0.0` -> `2.0.1` | [source](https://renovatebot.com/gh/webpack-contrib/cache-loader) |

---

### Release Notes

<details>
<summary>webpack-contrib/cache-loader</summary>

### [`v2.0.1`](https://renovatebot.com/gh/webpack-contrib/cache-loader/blob/master/CHANGELOG.md#&#8203;201httpsgithubcomwebpack-contribcache-loadercomparev200v201-2019-01-04)

[Compare Source](https://renovatebot.com/gh/webpack-contrib/cache-loader/compare/v2.0.0...v2.0.1)

##### Bug Fixes

-   generate normalized cache context relative paths ([#&#8203;54](https://renovatebot.com/gh/webpack-contrib/cache-loader/issues/54)) ([5b37474](https://renovatebot.com/gh/webpack-contrib/cache-loader/commit/5b37474))

</details>

---

### Renovate configuration

:date: **Schedule**: At any time (no schedule defined).

:vertical_traffic_light: **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

:recycle: **Rebasing**: Whenever PR becomes conflicted, or if you modify the PR title to begin with "`rebase!`".

:no_bell: **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- renovate-rebase -->If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Renovate Bot](https://renovatebot.com/gh/marketplace/renovate). View repository job log [here](https://renovatebot.com/dashboard#neo-one-suite/neo-one).

907: chore(deps): update dependency ts-loader to v5.3.3 r=davemneo a=renovate[bot]

This PR contains the following updates:

| Package | Type | Update | Change | References |
|---|---|---|---|---|
| ts-loader | devDependencies | patch | `5.3.2` -> `5.3.3` | [source](https://renovatebot.com/gh/TypeStrong/ts-loader) |

---

### Release Notes

<details>
<summary>TypeStrong/ts-loader</summary>

### [`v5.3.3`](https://renovatebot.com/gh/TypeStrong/ts-loader/blob/master/CHANGELOG.md#v533)

[Compare Source](https://renovatebot.com/gh/TypeStrong/ts-loader/compare/v5.3.2...v5.3.3)

-   [fix: Pass ts.Program to getCustomTransformers](https://renovatebot.com/gh/TypeStrong/ts-loader/pull/889) ([#&#8203;860](https://renovatebot.com/gh/TypeStrong/ts-loader/issues/860)) - thanks [@&#8203;andersekdahl](https://renovatebot.com/gh/andersekdahl)!

</details>

---

### Renovate configuration

:date: **Schedule**: At any time (no schedule defined).

:vertical_traffic_light: **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

:recycle: **Rebasing**: Whenever PR becomes conflicted, or if you modify the PR title to begin with "`rebase!`".

:no_bell: **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- renovate-rebase -->If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Renovate Bot](https://renovatebot.com/gh/marketplace/renovate). View repository job log [here](https://renovatebot.com/dashboard#neo-one-suite/neo-one).

Co-authored-by: Renovate Bot <[email protected]>
bors bot added a commit to neo-one-suite/neo-one that referenced this pull request Jan 7, 2019
903: chore(deps): update dependency @reactivex/ix-es2015-cjs to v2.4.3 r=davemneo a=renovate[bot]

This PR contains the following updates:

| Package | Type | Update | Change | References |
|---|---|---|---|---|
| @&#8203;reactivex/ix-es2015-cjs | devDependencies | minor | `2.3.5` -> `2.4.3` | [source](https://renovatebot.com/gh/ReactiveX/IxJS) |

---

### Release Notes

<details>
<summary>ReactiveX/IxJS</summary>

### [`v2.4.3`](https://renovatebot.com/gh/ReactiveX/IxJS/releases/v2.4.3)

[Compare Source](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.4.2...v2.4.3)

New release of IxJS is now available.  This includes a number of new features and improvements to existing APIs.

#### New APIs are available

The following APIs have been added to `AsyncIterable`

-   [`batch`](https://renovatebot.com/gh/ReactiveX/IxJS/blob/master/src/asynciterable/batch.ts)
-   [`toNodeStream`](https://renovatebot.com/gh/ReactiveX/IxJS/blob/master/src/asynciterable/tonodestream.ts)

The following APIs have been added to `Iterable`

-   [`toNodeStream`](https://renovatebot.com/gh/ReactiveX/IxJS/blob/master/src/iterable/tonodestream.ts)

##### API Fixes

-   [`AsyncIterable.fromNodeStream`](https://renovatebot.com/gh/ReactiveX/IxJS/blob/master/src/asynciterable/fromnodestream.ts) has been optimized for streams and `AsyncIterables`
-   [`AsyncIterable.prototype.pipe`](https://renovatebot.com/gh/ReactiveX/IxJS/blob/master/src/Ix.node.ts) now accepts Node.js `WritableStream` values in addition to operators.

##### Bug Fixes

-   **dependencies:** add rxjs to the production dependencies list ([54e5cf7](https://renovatebot.com/gh/ReactiveX/IxJS/commit/54e5cf7))

### [`v2.4.2`](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.4.0...v2.4.2)

[Compare Source](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.4.0...v2.4.2)

### [`v2.4.0`](https://renovatebot.com/gh/ReactiveX/IxJS/blob/master/CHANGELOG.md#&#8203;240httpsgithubcomReactiveXIxJScomparev235v240-2019-01-03)

[Compare Source](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.3.5...v2.4.0)

##### Bug Fixes

-   **toObservable:** adds symbol-observable for rxjs interop ([273e697](https://renovatebot.com/gh/ReactiveX/IxJS/commit/273e697)), closes [#&#8203;245](https://renovatebot.com/gh/ReactiveX/IxJS/issues/245)

##### Features

-   add support for passing Node WritableStreams to `AsyncIterableX#pipe()` ([#&#8203;257](https://renovatebot.com/gh/ReactiveX/IxJS/issues/257)) ([9a1c5cc](https://renovatebot.com/gh/ReactiveX/IxJS/commit/9a1c5cc))

-   add `AsyncIterableX#toNodeStream()` ([#&#8203;257](https://renovatebot.com/gh/ReactiveX/IxJS/issues/257)) ([9a1c5cc](https://renovatebot.com/gh/ReactiveX/IxJS/commit/9a1c5cc))

-   add `AsyncIterableX#batch()` ([#&#8203;222](https://renovatebot.com/gh/ReactiveX/IxJS/issues/222)) ([9c9bd7e](https://renovatebot.com/gh/ReactiveX/IxJS/commit/9c9bd7e))

#### [2.3.5](https://renovatebot.com/gh/ReactiveX/IxJS/compare/9.2.0...v2.3.5) (2018-02-19)

##### Bug Fixes

-   **compile:** adding some missing exports to deal with typescript 2.7.x compat issue ([0b0c837](https://renovatebot.com/gh/ReactiveX/IxJS/commit/0b0c837)), closes [#&#8203;214](https://renovatebot.com/gh/ReactiveX/IxJS/issues/214)

##### Features

-   **orderby:** add piped orderby ([#&#8203;190](https://renovatebot.com/gh/ReactiveX/IxJS/issues/190)) ([aaa527a](https://renovatebot.com/gh/ReactiveX/IxJS/commit/aaa527a))

#### [2.3.4](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.3.3...v2.3.4) (2017-11-29)

##### Bug Fixes

-   **typings:** Fix optional predicate typings for user-defined typeguard predicates ([fedd563](https://renovatebot.com/gh/ReactiveX/IxJS/commit/fedd563))
-   **typings:** workaround typescript bugs when noImplicitAny or strictNullChecks are not true ([ce03239](https://renovatebot.com/gh/ReactiveX/IxJS/commit/ce03239))

#### [2.3.3](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.3.2...v2.3.3) (2017-11-21)

##### Reverts

-   **npm:** revert [`4493754`](https://renovatebot.com/gh/ReactiveX/IxJS/commit/4493754d9fbbc061347d8ef785704b61ecb486c5) ([564c600](https://renovatebot.com/gh/ReactiveX/IxJS/commit/564c600)), closes [#&#8203;163](https://renovatebot.com/gh/ReactiveX/IxJS/issues/163)

#### [2.3.2](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.3.1...v2.3.2) (2017-11-21)

##### Bug Fixes

-   **fromnodestream:** enable fromnodestream tests, fix minification problems ([#&#8203;156](https://renovatebot.com/gh/ReactiveX/IxJS/issues/156)) ([745d763](https://renovatebot.com/gh/ReactiveX/IxJS/commit/745d763))
-   **fromnodestream:** type fromNodeStream to accept NodeJS.ReadableStream interface ([3cbf2dd](https://renovatebot.com/gh/ReactiveX/IxJS/commit/3cbf2dd))
-   **FromObservableAsyncIterable:** Fix handling of asynchronously emitting Observables ([#&#8203;150](https://renovatebot.com/gh/ReactiveX/IxJS/issues/150)) ([2c7222c](https://renovatebot.com/gh/ReactiveX/IxJS/commit/2c7222c))
-   **readme:** fix lettable syntax ([0e46181](https://renovatebot.com/gh/ReactiveX/IxJS/commit/0e46181))

##### Features

-   **as:** Add static as convenience methods to wrap values as Async/Iterables ([#&#8203;154](https://renovatebot.com/gh/ReactiveX/IxJS/issues/154)) ([79a14c5](https://renovatebot.com/gh/ReactiveX/IxJS/commit/79a14c5))

#### [2.3.1](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.3.0...v2.3.1) (2017-11-08)

##### Bug Fixes

-   **single:** make iterable prototype single predicate an optional parameter again ([2bea5ab](https://renovatebot.com/gh/ReactiveX/IxJS/commit/2bea5ab)), closes [/github.com/ReactiveX/IxJS/pull/83#issuecomment-341832266](https://renovatebot.com/gh//github.com/ReactiveX/IxJS/pull/83/issues/issuecomment-341832266)

</details>

---

### Renovate configuration

:date: **Schedule**: At any time (no schedule defined).

:vertical_traffic_light: **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

:recycle: **Rebasing**: Whenever PR becomes conflicted, or if you modify the PR title to begin with "`rebase!`".

:no_bell: **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- renovate-rebase -->If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Renovate Bot](https://renovatebot.com/gh/marketplace/renovate). View repository job log [here](https://renovatebot.com/dashboard#neo-one-suite/neo-one).

904: chore(deps): update dependency @reactivex/ix-esnext-esm to v2.4.3 r=davemneo a=renovate[bot]

This PR contains the following updates:

| Package | Type | Update | Change | References |
|---|---|---|---|---|
| @&#8203;reactivex/ix-esnext-esm | devDependencies | minor | `2.3.5` -> `2.4.3` | [source](https://renovatebot.com/gh/ReactiveX/IxJS) |

---

### Release Notes

<details>
<summary>ReactiveX/IxJS</summary>

### [`v2.4.3`](https://renovatebot.com/gh/ReactiveX/IxJS/releases/v2.4.3)

[Compare Source](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.4.2...v2.4.3)

New release of IxJS is now available.  This includes a number of new features and improvements to existing APIs.

#### New APIs are available

The following APIs have been added to `AsyncIterable`

-   [`batch`](https://renovatebot.com/gh/ReactiveX/IxJS/blob/master/src/asynciterable/batch.ts)
-   [`toNodeStream`](https://renovatebot.com/gh/ReactiveX/IxJS/blob/master/src/asynciterable/tonodestream.ts)

The following APIs have been added to `Iterable`

-   [`toNodeStream`](https://renovatebot.com/gh/ReactiveX/IxJS/blob/master/src/iterable/tonodestream.ts)

##### API Fixes

-   [`AsyncIterable.fromNodeStream`](https://renovatebot.com/gh/ReactiveX/IxJS/blob/master/src/asynciterable/fromnodestream.ts) has been optimized for streams and `AsyncIterables`
-   [`AsyncIterable.prototype.pipe`](https://renovatebot.com/gh/ReactiveX/IxJS/blob/master/src/Ix.node.ts) now accepts Node.js `WritableStream` values in addition to operators.

##### Bug Fixes

-   **dependencies:** add rxjs to the production dependencies list ([54e5cf7](https://renovatebot.com/gh/ReactiveX/IxJS/commit/54e5cf7))

### [`v2.4.2`](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.4.0...v2.4.2)

[Compare Source](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.4.0...v2.4.2)

### [`v2.4.0`](https://renovatebot.com/gh/ReactiveX/IxJS/blob/master/CHANGELOG.md#&#8203;240httpsgithubcomReactiveXIxJScomparev235v240-2019-01-03)

[Compare Source](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.3.5...v2.4.0)

##### Bug Fixes

-   **toObservable:** adds symbol-observable for rxjs interop ([273e697](https://renovatebot.com/gh/ReactiveX/IxJS/commit/273e697)), closes [#&#8203;245](https://renovatebot.com/gh/ReactiveX/IxJS/issues/245)

##### Features

-   add support for passing Node WritableStreams to `AsyncIterableX#pipe()` ([#&#8203;257](https://renovatebot.com/gh/ReactiveX/IxJS/issues/257)) ([9a1c5cc](https://renovatebot.com/gh/ReactiveX/IxJS/commit/9a1c5cc))

-   add `AsyncIterableX#toNodeStream()` ([#&#8203;257](https://renovatebot.com/gh/ReactiveX/IxJS/issues/257)) ([9a1c5cc](https://renovatebot.com/gh/ReactiveX/IxJS/commit/9a1c5cc))

-   add `AsyncIterableX#batch()` ([#&#8203;222](https://renovatebot.com/gh/ReactiveX/IxJS/issues/222)) ([9c9bd7e](https://renovatebot.com/gh/ReactiveX/IxJS/commit/9c9bd7e))

#### [2.3.5](https://renovatebot.com/gh/ReactiveX/IxJS/compare/9.2.0...v2.3.5) (2018-02-19)

##### Bug Fixes

-   **compile:** adding some missing exports to deal with typescript 2.7.x compat issue ([0b0c837](https://renovatebot.com/gh/ReactiveX/IxJS/commit/0b0c837)), closes [#&#8203;214](https://renovatebot.com/gh/ReactiveX/IxJS/issues/214)

##### Features

-   **orderby:** add piped orderby ([#&#8203;190](https://renovatebot.com/gh/ReactiveX/IxJS/issues/190)) ([aaa527a](https://renovatebot.com/gh/ReactiveX/IxJS/commit/aaa527a))

#### [2.3.4](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.3.3...v2.3.4) (2017-11-29)

##### Bug Fixes

-   **typings:** Fix optional predicate typings for user-defined typeguard predicates ([fedd563](https://renovatebot.com/gh/ReactiveX/IxJS/commit/fedd563))
-   **typings:** workaround typescript bugs when noImplicitAny or strictNullChecks are not true ([ce03239](https://renovatebot.com/gh/ReactiveX/IxJS/commit/ce03239))

#### [2.3.3](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.3.2...v2.3.3) (2017-11-21)

##### Reverts

-   **npm:** revert [`4493754`](https://renovatebot.com/gh/ReactiveX/IxJS/commit/4493754d9fbbc061347d8ef785704b61ecb486c5) ([564c600](https://renovatebot.com/gh/ReactiveX/IxJS/commit/564c600)), closes [#&#8203;163](https://renovatebot.com/gh/ReactiveX/IxJS/issues/163)

#### [2.3.2](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.3.1...v2.3.2) (2017-11-21)

##### Bug Fixes

-   **fromnodestream:** enable fromnodestream tests, fix minification problems ([#&#8203;156](https://renovatebot.com/gh/ReactiveX/IxJS/issues/156)) ([745d763](https://renovatebot.com/gh/ReactiveX/IxJS/commit/745d763))
-   **fromnodestream:** type fromNodeStream to accept NodeJS.ReadableStream interface ([3cbf2dd](https://renovatebot.com/gh/ReactiveX/IxJS/commit/3cbf2dd))
-   **FromObservableAsyncIterable:** Fix handling of asynchronously emitting Observables ([#&#8203;150](https://renovatebot.com/gh/ReactiveX/IxJS/issues/150)) ([2c7222c](https://renovatebot.com/gh/ReactiveX/IxJS/commit/2c7222c))
-   **readme:** fix lettable syntax ([0e46181](https://renovatebot.com/gh/ReactiveX/IxJS/commit/0e46181))

##### Features

-   **as:** Add static as convenience methods to wrap values as Async/Iterables ([#&#8203;154](https://renovatebot.com/gh/ReactiveX/IxJS/issues/154)) ([79a14c5](https://renovatebot.com/gh/ReactiveX/IxJS/commit/79a14c5))

#### [2.3.1](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.3.0...v2.3.1) (2017-11-08)

##### Bug Fixes

-   **single:** make iterable prototype single predicate an optional parameter again ([2bea5ab](https://renovatebot.com/gh/ReactiveX/IxJS/commit/2bea5ab)), closes [/github.com/ReactiveX/IxJS/pull/83#issuecomment-341832266](https://renovatebot.com/gh//github.com/ReactiveX/IxJS/pull/83/issues/issuecomment-341832266)

</details>

---

### Renovate configuration

:date: **Schedule**: At any time (no schedule defined).

:vertical_traffic_light: **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

:recycle: **Rebasing**: Whenever PR becomes conflicted, or if you modify the PR title to begin with "`rebase!`".

:no_bell: **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- renovate-rebase -->If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Renovate Bot](https://renovatebot.com/gh/marketplace/renovate). View repository job log [here](https://renovatebot.com/dashboard#neo-one-suite/neo-one).

905: chore(deps): update dependency babel-loader to v8.0.5 r=davemneo a=renovate[bot]

This PR contains the following updates:

| Package | Type | Update | Change | References |
|---|---|---|---|---|
| babel-loader | devDependencies | patch | `8.0.4` -> `8.0.5` | [source](https://renovatebot.com/gh/babel/babel-loader) |

---

### Release Notes

<details>
<summary>babel/babel-loader</summary>

### [`v8.0.5`](https://renovatebot.com/gh/babel/babel-loader/releases/v8.0.5)

[Compare Source](https://renovatebot.com/gh/babel/babel-loader/compare/v8.0.4...v8.0.5)

-   Update `find-cache-dir` to 2.0

</details>

---

### Renovate configuration

:date: **Schedule**: At any time (no schedule defined).

:vertical_traffic_light: **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

:recycle: **Rebasing**: Whenever PR becomes conflicted, or if you modify the PR title to begin with "`rebase!`".

:no_bell: **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- renovate-rebase -->If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Renovate Bot](https://renovatebot.com/gh/marketplace/renovate). View repository job log [here](https://renovatebot.com/dashboard#neo-one-suite/neo-one).

906: chore(deps): update dependency cache-loader to v2.0.1 r=davemneo a=renovate[bot]

This PR contains the following updates:

| Package | Type | Update | Change | References |
|---|---|---|---|---|
| cache-loader | devDependencies | patch | `2.0.0` -> `2.0.1` | [source](https://renovatebot.com/gh/webpack-contrib/cache-loader) |

---

### Release Notes

<details>
<summary>webpack-contrib/cache-loader</summary>

### [`v2.0.1`](https://renovatebot.com/gh/webpack-contrib/cache-loader/blob/master/CHANGELOG.md#&#8203;201httpsgithubcomwebpack-contribcache-loadercomparev200v201-2019-01-04)

[Compare Source](https://renovatebot.com/gh/webpack-contrib/cache-loader/compare/v2.0.0...v2.0.1)

##### Bug Fixes

-   generate normalized cache context relative paths ([#&#8203;54](https://renovatebot.com/gh/webpack-contrib/cache-loader/issues/54)) ([5b37474](https://renovatebot.com/gh/webpack-contrib/cache-loader/commit/5b37474))

</details>

---

### Renovate configuration

:date: **Schedule**: At any time (no schedule defined).

:vertical_traffic_light: **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

:recycle: **Rebasing**: Whenever PR becomes conflicted, or if you modify the PR title to begin with "`rebase!`".

:no_bell: **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- renovate-rebase -->If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Renovate Bot](https://renovatebot.com/gh/marketplace/renovate). View repository job log [here](https://renovatebot.com/dashboard#neo-one-suite/neo-one).

Co-authored-by: Renovate Bot <[email protected]>
bors bot added a commit to neo-one-suite/neo-one that referenced this pull request Jan 7, 2019
903: chore(deps): update dependency @reactivex/ix-es2015-cjs to v2.4.3 r=davemneo a=renovate[bot]

This PR contains the following updates:

| Package | Type | Update | Change | References |
|---|---|---|---|---|
| @&#8203;reactivex/ix-es2015-cjs | devDependencies | minor | `2.3.5` -> `2.4.3` | [source](https://renovatebot.com/gh/ReactiveX/IxJS) |

---

### Release Notes

<details>
<summary>ReactiveX/IxJS</summary>

### [`v2.4.3`](https://renovatebot.com/gh/ReactiveX/IxJS/releases/v2.4.3)

[Compare Source](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.4.2...v2.4.3)

New release of IxJS is now available.  This includes a number of new features and improvements to existing APIs.

#### New APIs are available

The following APIs have been added to `AsyncIterable`

-   [`batch`](https://renovatebot.com/gh/ReactiveX/IxJS/blob/master/src/asynciterable/batch.ts)
-   [`toNodeStream`](https://renovatebot.com/gh/ReactiveX/IxJS/blob/master/src/asynciterable/tonodestream.ts)

The following APIs have been added to `Iterable`

-   [`toNodeStream`](https://renovatebot.com/gh/ReactiveX/IxJS/blob/master/src/iterable/tonodestream.ts)

##### API Fixes

-   [`AsyncIterable.fromNodeStream`](https://renovatebot.com/gh/ReactiveX/IxJS/blob/master/src/asynciterable/fromnodestream.ts) has been optimized for streams and `AsyncIterables`
-   [`AsyncIterable.prototype.pipe`](https://renovatebot.com/gh/ReactiveX/IxJS/blob/master/src/Ix.node.ts) now accepts Node.js `WritableStream` values in addition to operators.

##### Bug Fixes

-   **dependencies:** add rxjs to the production dependencies list ([54e5cf7](https://renovatebot.com/gh/ReactiveX/IxJS/commit/54e5cf7))

### [`v2.4.2`](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.4.0...v2.4.2)

[Compare Source](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.4.0...v2.4.2)

### [`v2.4.0`](https://renovatebot.com/gh/ReactiveX/IxJS/blob/master/CHANGELOG.md#&#8203;240httpsgithubcomReactiveXIxJScomparev235v240-2019-01-03)

[Compare Source](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.3.5...v2.4.0)

##### Bug Fixes

-   **toObservable:** adds symbol-observable for rxjs interop ([273e697](https://renovatebot.com/gh/ReactiveX/IxJS/commit/273e697)), closes [#&#8203;245](https://renovatebot.com/gh/ReactiveX/IxJS/issues/245)

##### Features

-   add support for passing Node WritableStreams to `AsyncIterableX#pipe()` ([#&#8203;257](https://renovatebot.com/gh/ReactiveX/IxJS/issues/257)) ([9a1c5cc](https://renovatebot.com/gh/ReactiveX/IxJS/commit/9a1c5cc))

-   add `AsyncIterableX#toNodeStream()` ([#&#8203;257](https://renovatebot.com/gh/ReactiveX/IxJS/issues/257)) ([9a1c5cc](https://renovatebot.com/gh/ReactiveX/IxJS/commit/9a1c5cc))

-   add `AsyncIterableX#batch()` ([#&#8203;222](https://renovatebot.com/gh/ReactiveX/IxJS/issues/222)) ([9c9bd7e](https://renovatebot.com/gh/ReactiveX/IxJS/commit/9c9bd7e))

#### [2.3.5](https://renovatebot.com/gh/ReactiveX/IxJS/compare/9.2.0...v2.3.5) (2018-02-19)

##### Bug Fixes

-   **compile:** adding some missing exports to deal with typescript 2.7.x compat issue ([0b0c837](https://renovatebot.com/gh/ReactiveX/IxJS/commit/0b0c837)), closes [#&#8203;214](https://renovatebot.com/gh/ReactiveX/IxJS/issues/214)

##### Features

-   **orderby:** add piped orderby ([#&#8203;190](https://renovatebot.com/gh/ReactiveX/IxJS/issues/190)) ([aaa527a](https://renovatebot.com/gh/ReactiveX/IxJS/commit/aaa527a))

#### [2.3.4](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.3.3...v2.3.4) (2017-11-29)

##### Bug Fixes

-   **typings:** Fix optional predicate typings for user-defined typeguard predicates ([fedd563](https://renovatebot.com/gh/ReactiveX/IxJS/commit/fedd563))
-   **typings:** workaround typescript bugs when noImplicitAny or strictNullChecks are not true ([ce03239](https://renovatebot.com/gh/ReactiveX/IxJS/commit/ce03239))

#### [2.3.3](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.3.2...v2.3.3) (2017-11-21)

##### Reverts

-   **npm:** revert [`4493754`](https://renovatebot.com/gh/ReactiveX/IxJS/commit/4493754d9fbbc061347d8ef785704b61ecb486c5) ([564c600](https://renovatebot.com/gh/ReactiveX/IxJS/commit/564c600)), closes [#&#8203;163](https://renovatebot.com/gh/ReactiveX/IxJS/issues/163)

#### [2.3.2](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.3.1...v2.3.2) (2017-11-21)

##### Bug Fixes

-   **fromnodestream:** enable fromnodestream tests, fix minification problems ([#&#8203;156](https://renovatebot.com/gh/ReactiveX/IxJS/issues/156)) ([745d763](https://renovatebot.com/gh/ReactiveX/IxJS/commit/745d763))
-   **fromnodestream:** type fromNodeStream to accept NodeJS.ReadableStream interface ([3cbf2dd](https://renovatebot.com/gh/ReactiveX/IxJS/commit/3cbf2dd))
-   **FromObservableAsyncIterable:** Fix handling of asynchronously emitting Observables ([#&#8203;150](https://renovatebot.com/gh/ReactiveX/IxJS/issues/150)) ([2c7222c](https://renovatebot.com/gh/ReactiveX/IxJS/commit/2c7222c))
-   **readme:** fix lettable syntax ([0e46181](https://renovatebot.com/gh/ReactiveX/IxJS/commit/0e46181))

##### Features

-   **as:** Add static as convenience methods to wrap values as Async/Iterables ([#&#8203;154](https://renovatebot.com/gh/ReactiveX/IxJS/issues/154)) ([79a14c5](https://renovatebot.com/gh/ReactiveX/IxJS/commit/79a14c5))

#### [2.3.1](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.3.0...v2.3.1) (2017-11-08)

##### Bug Fixes

-   **single:** make iterable prototype single predicate an optional parameter again ([2bea5ab](https://renovatebot.com/gh/ReactiveX/IxJS/commit/2bea5ab)), closes [/github.com/ReactiveX/IxJS/pull/83#issuecomment-341832266](https://renovatebot.com/gh//github.com/ReactiveX/IxJS/pull/83/issues/issuecomment-341832266)

</details>

---

### Renovate configuration

:date: **Schedule**: At any time (no schedule defined).

:vertical_traffic_light: **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

:recycle: **Rebasing**: Whenever PR becomes conflicted, or if you modify the PR title to begin with "`rebase!`".

:no_bell: **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- renovate-rebase -->If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Renovate Bot](https://renovatebot.com/gh/marketplace/renovate). View repository job log [here](https://renovatebot.com/dashboard#neo-one-suite/neo-one).

905: chore(deps): update dependency babel-loader to v8.0.5 r=davemneo a=renovate[bot]

This PR contains the following updates:

| Package | Type | Update | Change | References |
|---|---|---|---|---|
| babel-loader | devDependencies | patch | `8.0.4` -> `8.0.5` | [source](https://renovatebot.com/gh/babel/babel-loader) |

---

### Release Notes

<details>
<summary>babel/babel-loader</summary>

### [`v8.0.5`](https://renovatebot.com/gh/babel/babel-loader/releases/v8.0.5)

[Compare Source](https://renovatebot.com/gh/babel/babel-loader/compare/v8.0.4...v8.0.5)

-   Update `find-cache-dir` to 2.0

</details>

---

### Renovate configuration

:date: **Schedule**: At any time (no schedule defined).

:vertical_traffic_light: **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

:recycle: **Rebasing**: Whenever PR becomes conflicted, or if you modify the PR title to begin with "`rebase!`".

:no_bell: **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- renovate-rebase -->If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Renovate Bot](https://renovatebot.com/gh/marketplace/renovate). View repository job log [here](https://renovatebot.com/dashboard#neo-one-suite/neo-one).

Co-authored-by: Renovate Bot <[email protected]>
bors bot added a commit to neo-one-suite/neo-one that referenced this pull request Jan 7, 2019
904: chore(deps): update dependency @reactivex/ix-esnext-esm to v2.4.3 r=davemneo a=renovate[bot]

This PR contains the following updates:

| Package | Type | Update | Change | References |
|---|---|---|---|---|
| @&#8203;reactivex/ix-esnext-esm | devDependencies | minor | `2.3.5` -> `2.4.3` | [source](https://renovatebot.com/gh/ReactiveX/IxJS) |

---

### Release Notes

<details>
<summary>ReactiveX/IxJS</summary>

### [`v2.4.3`](https://renovatebot.com/gh/ReactiveX/IxJS/releases/v2.4.3)

[Compare Source](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.4.2...v2.4.3)

New release of IxJS is now available.  This includes a number of new features and improvements to existing APIs.

#### New APIs are available

The following APIs have been added to `AsyncIterable`

-   [`batch`](https://renovatebot.com/gh/ReactiveX/IxJS/blob/master/src/asynciterable/batch.ts)
-   [`toNodeStream`](https://renovatebot.com/gh/ReactiveX/IxJS/blob/master/src/asynciterable/tonodestream.ts)

The following APIs have been added to `Iterable`

-   [`toNodeStream`](https://renovatebot.com/gh/ReactiveX/IxJS/blob/master/src/iterable/tonodestream.ts)

##### API Fixes

-   [`AsyncIterable.fromNodeStream`](https://renovatebot.com/gh/ReactiveX/IxJS/blob/master/src/asynciterable/fromnodestream.ts) has been optimized for streams and `AsyncIterables`
-   [`AsyncIterable.prototype.pipe`](https://renovatebot.com/gh/ReactiveX/IxJS/blob/master/src/Ix.node.ts) now accepts Node.js `WritableStream` values in addition to operators.

##### Bug Fixes

-   **dependencies:** add rxjs to the production dependencies list ([54e5cf7](https://renovatebot.com/gh/ReactiveX/IxJS/commit/54e5cf7))

### [`v2.4.2`](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.4.0...v2.4.2)

[Compare Source](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.4.0...v2.4.2)

### [`v2.4.0`](https://renovatebot.com/gh/ReactiveX/IxJS/blob/master/CHANGELOG.md#&#8203;240httpsgithubcomReactiveXIxJScomparev235v240-2019-01-03)

[Compare Source](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.3.5...v2.4.0)

##### Bug Fixes

-   **toObservable:** adds symbol-observable for rxjs interop ([273e697](https://renovatebot.com/gh/ReactiveX/IxJS/commit/273e697)), closes [#&#8203;245](https://renovatebot.com/gh/ReactiveX/IxJS/issues/245)

##### Features

-   add support for passing Node WritableStreams to `AsyncIterableX#pipe()` ([#&#8203;257](https://renovatebot.com/gh/ReactiveX/IxJS/issues/257)) ([9a1c5cc](https://renovatebot.com/gh/ReactiveX/IxJS/commit/9a1c5cc))

-   add `AsyncIterableX#toNodeStream()` ([#&#8203;257](https://renovatebot.com/gh/ReactiveX/IxJS/issues/257)) ([9a1c5cc](https://renovatebot.com/gh/ReactiveX/IxJS/commit/9a1c5cc))

-   add `AsyncIterableX#batch()` ([#&#8203;222](https://renovatebot.com/gh/ReactiveX/IxJS/issues/222)) ([9c9bd7e](https://renovatebot.com/gh/ReactiveX/IxJS/commit/9c9bd7e))

#### [2.3.5](https://renovatebot.com/gh/ReactiveX/IxJS/compare/9.2.0...v2.3.5) (2018-02-19)

##### Bug Fixes

-   **compile:** adding some missing exports to deal with typescript 2.7.x compat issue ([0b0c837](https://renovatebot.com/gh/ReactiveX/IxJS/commit/0b0c837)), closes [#&#8203;214](https://renovatebot.com/gh/ReactiveX/IxJS/issues/214)

##### Features

-   **orderby:** add piped orderby ([#&#8203;190](https://renovatebot.com/gh/ReactiveX/IxJS/issues/190)) ([aaa527a](https://renovatebot.com/gh/ReactiveX/IxJS/commit/aaa527a))

#### [2.3.4](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.3.3...v2.3.4) (2017-11-29)

##### Bug Fixes

-   **typings:** Fix optional predicate typings for user-defined typeguard predicates ([fedd563](https://renovatebot.com/gh/ReactiveX/IxJS/commit/fedd563))
-   **typings:** workaround typescript bugs when noImplicitAny or strictNullChecks are not true ([ce03239](https://renovatebot.com/gh/ReactiveX/IxJS/commit/ce03239))

#### [2.3.3](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.3.2...v2.3.3) (2017-11-21)

##### Reverts

-   **npm:** revert [`4493754`](https://renovatebot.com/gh/ReactiveX/IxJS/commit/4493754d9fbbc061347d8ef785704b61ecb486c5) ([564c600](https://renovatebot.com/gh/ReactiveX/IxJS/commit/564c600)), closes [#&#8203;163](https://renovatebot.com/gh/ReactiveX/IxJS/issues/163)

#### [2.3.2](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.3.1...v2.3.2) (2017-11-21)

##### Bug Fixes

-   **fromnodestream:** enable fromnodestream tests, fix minification problems ([#&#8203;156](https://renovatebot.com/gh/ReactiveX/IxJS/issues/156)) ([745d763](https://renovatebot.com/gh/ReactiveX/IxJS/commit/745d763))
-   **fromnodestream:** type fromNodeStream to accept NodeJS.ReadableStream interface ([3cbf2dd](https://renovatebot.com/gh/ReactiveX/IxJS/commit/3cbf2dd))
-   **FromObservableAsyncIterable:** Fix handling of asynchronously emitting Observables ([#&#8203;150](https://renovatebot.com/gh/ReactiveX/IxJS/issues/150)) ([2c7222c](https://renovatebot.com/gh/ReactiveX/IxJS/commit/2c7222c))
-   **readme:** fix lettable syntax ([0e46181](https://renovatebot.com/gh/ReactiveX/IxJS/commit/0e46181))

##### Features

-   **as:** Add static as convenience methods to wrap values as Async/Iterables ([#&#8203;154](https://renovatebot.com/gh/ReactiveX/IxJS/issues/154)) ([79a14c5](https://renovatebot.com/gh/ReactiveX/IxJS/commit/79a14c5))

#### [2.3.1](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.3.0...v2.3.1) (2017-11-08)

##### Bug Fixes

-   **single:** make iterable prototype single predicate an optional parameter again ([2bea5ab](https://renovatebot.com/gh/ReactiveX/IxJS/commit/2bea5ab)), closes [/github.com/ReactiveX/IxJS/pull/83#issuecomment-341832266](https://renovatebot.com/gh//github.com/ReactiveX/IxJS/pull/83/issues/issuecomment-341832266)

</details>

---

### Renovate configuration

:date: **Schedule**: At any time (no schedule defined).

:vertical_traffic_light: **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

:recycle: **Rebasing**: Whenever PR becomes conflicted, or if you modify the PR title to begin with "`rebase!`".

:no_bell: **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- renovate-rebase -->If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Renovate Bot](https://renovatebot.com/gh/marketplace/renovate). View repository job log [here](https://renovatebot.com/dashboard#neo-one-suite/neo-one).

906: chore(deps): update dependency cache-loader to v2.0.1 r=davemneo a=renovate[bot]

This PR contains the following updates:

| Package | Type | Update | Change | References |
|---|---|---|---|---|
| cache-loader | devDependencies | patch | `2.0.0` -> `2.0.1` | [source](https://renovatebot.com/gh/webpack-contrib/cache-loader) |

---

### Release Notes

<details>
<summary>webpack-contrib/cache-loader</summary>

### [`v2.0.1`](https://renovatebot.com/gh/webpack-contrib/cache-loader/blob/master/CHANGELOG.md#&#8203;201httpsgithubcomwebpack-contribcache-loadercomparev200v201-2019-01-04)

[Compare Source](https://renovatebot.com/gh/webpack-contrib/cache-loader/compare/v2.0.0...v2.0.1)

##### Bug Fixes

-   generate normalized cache context relative paths ([#&#8203;54](https://renovatebot.com/gh/webpack-contrib/cache-loader/issues/54)) ([5b37474](https://renovatebot.com/gh/webpack-contrib/cache-loader/commit/5b37474))

</details>

---

### Renovate configuration

:date: **Schedule**: At any time (no schedule defined).

:vertical_traffic_light: **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

:recycle: **Rebasing**: Whenever PR becomes conflicted, or if you modify the PR title to begin with "`rebase!`".

:no_bell: **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- renovate-rebase -->If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Renovate Bot](https://renovatebot.com/gh/marketplace/renovate). View repository job log [here](https://renovatebot.com/dashboard#neo-one-suite/neo-one).

Co-authored-by: Renovate Bot <[email protected]>
bors bot added a commit to neo-one-suite/neo-one that referenced this pull request Jan 7, 2019
903: chore(deps): update dependency @reactivex/ix-es2015-cjs to v2.4.3 r=davemneo a=renovate[bot]

This PR contains the following updates:

| Package | Type | Update | Change | References |
|---|---|---|---|---|
| @&#8203;reactivex/ix-es2015-cjs | devDependencies | minor | `2.3.5` -> `2.4.3` | [source](https://renovatebot.com/gh/ReactiveX/IxJS) |

---

### Release Notes

<details>
<summary>ReactiveX/IxJS</summary>

### [`v2.4.3`](https://renovatebot.com/gh/ReactiveX/IxJS/releases/v2.4.3)

[Compare Source](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.4.2...v2.4.3)

New release of IxJS is now available.  This includes a number of new features and improvements to existing APIs.

#### New APIs are available

The following APIs have been added to `AsyncIterable`

-   [`batch`](https://renovatebot.com/gh/ReactiveX/IxJS/blob/master/src/asynciterable/batch.ts)
-   [`toNodeStream`](https://renovatebot.com/gh/ReactiveX/IxJS/blob/master/src/asynciterable/tonodestream.ts)

The following APIs have been added to `Iterable`

-   [`toNodeStream`](https://renovatebot.com/gh/ReactiveX/IxJS/blob/master/src/iterable/tonodestream.ts)

##### API Fixes

-   [`AsyncIterable.fromNodeStream`](https://renovatebot.com/gh/ReactiveX/IxJS/blob/master/src/asynciterable/fromnodestream.ts) has been optimized for streams and `AsyncIterables`
-   [`AsyncIterable.prototype.pipe`](https://renovatebot.com/gh/ReactiveX/IxJS/blob/master/src/Ix.node.ts) now accepts Node.js `WritableStream` values in addition to operators.

##### Bug Fixes

-   **dependencies:** add rxjs to the production dependencies list ([54e5cf7](https://renovatebot.com/gh/ReactiveX/IxJS/commit/54e5cf7))

### [`v2.4.2`](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.4.0...v2.4.2)

[Compare Source](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.4.0...v2.4.2)

### [`v2.4.0`](https://renovatebot.com/gh/ReactiveX/IxJS/blob/master/CHANGELOG.md#&#8203;240httpsgithubcomReactiveXIxJScomparev235v240-2019-01-03)

[Compare Source](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.3.5...v2.4.0)

##### Bug Fixes

-   **toObservable:** adds symbol-observable for rxjs interop ([273e697](https://renovatebot.com/gh/ReactiveX/IxJS/commit/273e697)), closes [#&#8203;245](https://renovatebot.com/gh/ReactiveX/IxJS/issues/245)

##### Features

-   add support for passing Node WritableStreams to `AsyncIterableX#pipe()` ([#&#8203;257](https://renovatebot.com/gh/ReactiveX/IxJS/issues/257)) ([9a1c5cc](https://renovatebot.com/gh/ReactiveX/IxJS/commit/9a1c5cc))

-   add `AsyncIterableX#toNodeStream()` ([#&#8203;257](https://renovatebot.com/gh/ReactiveX/IxJS/issues/257)) ([9a1c5cc](https://renovatebot.com/gh/ReactiveX/IxJS/commit/9a1c5cc))

-   add `AsyncIterableX#batch()` ([#&#8203;222](https://renovatebot.com/gh/ReactiveX/IxJS/issues/222)) ([9c9bd7e](https://renovatebot.com/gh/ReactiveX/IxJS/commit/9c9bd7e))

#### [2.3.5](https://renovatebot.com/gh/ReactiveX/IxJS/compare/9.2.0...v2.3.5) (2018-02-19)

##### Bug Fixes

-   **compile:** adding some missing exports to deal with typescript 2.7.x compat issue ([0b0c837](https://renovatebot.com/gh/ReactiveX/IxJS/commit/0b0c837)), closes [#&#8203;214](https://renovatebot.com/gh/ReactiveX/IxJS/issues/214)

##### Features

-   **orderby:** add piped orderby ([#&#8203;190](https://renovatebot.com/gh/ReactiveX/IxJS/issues/190)) ([aaa527a](https://renovatebot.com/gh/ReactiveX/IxJS/commit/aaa527a))

#### [2.3.4](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.3.3...v2.3.4) (2017-11-29)

##### Bug Fixes

-   **typings:** Fix optional predicate typings for user-defined typeguard predicates ([fedd563](https://renovatebot.com/gh/ReactiveX/IxJS/commit/fedd563))
-   **typings:** workaround typescript bugs when noImplicitAny or strictNullChecks are not true ([ce03239](https://renovatebot.com/gh/ReactiveX/IxJS/commit/ce03239))

#### [2.3.3](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.3.2...v2.3.3) (2017-11-21)

##### Reverts

-   **npm:** revert [`4493754`](https://renovatebot.com/gh/ReactiveX/IxJS/commit/4493754d9fbbc061347d8ef785704b61ecb486c5) ([564c600](https://renovatebot.com/gh/ReactiveX/IxJS/commit/564c600)), closes [#&#8203;163](https://renovatebot.com/gh/ReactiveX/IxJS/issues/163)

#### [2.3.2](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.3.1...v2.3.2) (2017-11-21)

##### Bug Fixes

-   **fromnodestream:** enable fromnodestream tests, fix minification problems ([#&#8203;156](https://renovatebot.com/gh/ReactiveX/IxJS/issues/156)) ([745d763](https://renovatebot.com/gh/ReactiveX/IxJS/commit/745d763))
-   **fromnodestream:** type fromNodeStream to accept NodeJS.ReadableStream interface ([3cbf2dd](https://renovatebot.com/gh/ReactiveX/IxJS/commit/3cbf2dd))
-   **FromObservableAsyncIterable:** Fix handling of asynchronously emitting Observables ([#&#8203;150](https://renovatebot.com/gh/ReactiveX/IxJS/issues/150)) ([2c7222c](https://renovatebot.com/gh/ReactiveX/IxJS/commit/2c7222c))
-   **readme:** fix lettable syntax ([0e46181](https://renovatebot.com/gh/ReactiveX/IxJS/commit/0e46181))

##### Features

-   **as:** Add static as convenience methods to wrap values as Async/Iterables ([#&#8203;154](https://renovatebot.com/gh/ReactiveX/IxJS/issues/154)) ([79a14c5](https://renovatebot.com/gh/ReactiveX/IxJS/commit/79a14c5))

#### [2.3.1](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.3.0...v2.3.1) (2017-11-08)

##### Bug Fixes

-   **single:** make iterable prototype single predicate an optional parameter again ([2bea5ab](https://renovatebot.com/gh/ReactiveX/IxJS/commit/2bea5ab)), closes [/github.com/ReactiveX/IxJS/pull/83#issuecomment-341832266](https://renovatebot.com/gh//github.com/ReactiveX/IxJS/pull/83/issues/issuecomment-341832266)

</details>

---

### Renovate configuration

:date: **Schedule**: At any time (no schedule defined).

:vertical_traffic_light: **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

:recycle: **Rebasing**: Whenever PR becomes conflicted, or if you modify the PR title to begin with "`rebase!`".

:no_bell: **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- renovate-rebase -->If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Renovate Bot](https://renovatebot.com/gh/marketplace/renovate). View repository job log [here](https://renovatebot.com/dashboard#neo-one-suite/neo-one).

Co-authored-by: Renovate Bot <[email protected]>
bors bot added a commit to neo-one-suite/neo-one that referenced this pull request Jan 7, 2019
903: chore(deps): update dependency @reactivex/ix-es2015-cjs to v2.4.3 r=davemneo a=renovate[bot]

This PR contains the following updates:

| Package | Type | Update | Change | References |
|---|---|---|---|---|
| @&#8203;reactivex/ix-es2015-cjs | devDependencies | minor | `2.3.5` -> `2.4.3` | [source](https://renovatebot.com/gh/ReactiveX/IxJS) |

---

### Release Notes

<details>
<summary>ReactiveX/IxJS</summary>

### [`v2.4.3`](https://renovatebot.com/gh/ReactiveX/IxJS/releases/v2.4.3)

[Compare Source](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.4.2...v2.4.3)

New release of IxJS is now available.  This includes a number of new features and improvements to existing APIs.

#### New APIs are available

The following APIs have been added to `AsyncIterable`

-   [`batch`](https://renovatebot.com/gh/ReactiveX/IxJS/blob/master/src/asynciterable/batch.ts)
-   [`toNodeStream`](https://renovatebot.com/gh/ReactiveX/IxJS/blob/master/src/asynciterable/tonodestream.ts)

The following APIs have been added to `Iterable`

-   [`toNodeStream`](https://renovatebot.com/gh/ReactiveX/IxJS/blob/master/src/iterable/tonodestream.ts)

##### API Fixes

-   [`AsyncIterable.fromNodeStream`](https://renovatebot.com/gh/ReactiveX/IxJS/blob/master/src/asynciterable/fromnodestream.ts) has been optimized for streams and `AsyncIterables`
-   [`AsyncIterable.prototype.pipe`](https://renovatebot.com/gh/ReactiveX/IxJS/blob/master/src/Ix.node.ts) now accepts Node.js `WritableStream` values in addition to operators.

##### Bug Fixes

-   **dependencies:** add rxjs to the production dependencies list ([54e5cf7](https://renovatebot.com/gh/ReactiveX/IxJS/commit/54e5cf7))

### [`v2.4.2`](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.4.0...v2.4.2)

[Compare Source](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.4.0...v2.4.2)

### [`v2.4.0`](https://renovatebot.com/gh/ReactiveX/IxJS/blob/master/CHANGELOG.md#&#8203;240httpsgithubcomReactiveXIxJScomparev235v240-2019-01-03)

[Compare Source](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.3.5...v2.4.0)

##### Bug Fixes

-   **toObservable:** adds symbol-observable for rxjs interop ([273e697](https://renovatebot.com/gh/ReactiveX/IxJS/commit/273e697)), closes [#&#8203;245](https://renovatebot.com/gh/ReactiveX/IxJS/issues/245)

##### Features

-   add support for passing Node WritableStreams to `AsyncIterableX#pipe()` ([#&#8203;257](https://renovatebot.com/gh/ReactiveX/IxJS/issues/257)) ([9a1c5cc](https://renovatebot.com/gh/ReactiveX/IxJS/commit/9a1c5cc))

-   add `AsyncIterableX#toNodeStream()` ([#&#8203;257](https://renovatebot.com/gh/ReactiveX/IxJS/issues/257)) ([9a1c5cc](https://renovatebot.com/gh/ReactiveX/IxJS/commit/9a1c5cc))

-   add `AsyncIterableX#batch()` ([#&#8203;222](https://renovatebot.com/gh/ReactiveX/IxJS/issues/222)) ([9c9bd7e](https://renovatebot.com/gh/ReactiveX/IxJS/commit/9c9bd7e))

#### [2.3.5](https://renovatebot.com/gh/ReactiveX/IxJS/compare/9.2.0...v2.3.5) (2018-02-19)

##### Bug Fixes

-   **compile:** adding some missing exports to deal with typescript 2.7.x compat issue ([0b0c837](https://renovatebot.com/gh/ReactiveX/IxJS/commit/0b0c837)), closes [#&#8203;214](https://renovatebot.com/gh/ReactiveX/IxJS/issues/214)

##### Features

-   **orderby:** add piped orderby ([#&#8203;190](https://renovatebot.com/gh/ReactiveX/IxJS/issues/190)) ([aaa527a](https://renovatebot.com/gh/ReactiveX/IxJS/commit/aaa527a))

#### [2.3.4](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.3.3...v2.3.4) (2017-11-29)

##### Bug Fixes

-   **typings:** Fix optional predicate typings for user-defined typeguard predicates ([fedd563](https://renovatebot.com/gh/ReactiveX/IxJS/commit/fedd563))
-   **typings:** workaround typescript bugs when noImplicitAny or strictNullChecks are not true ([ce03239](https://renovatebot.com/gh/ReactiveX/IxJS/commit/ce03239))

#### [2.3.3](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.3.2...v2.3.3) (2017-11-21)

##### Reverts

-   **npm:** revert [`4493754`](https://renovatebot.com/gh/ReactiveX/IxJS/commit/4493754d9fbbc061347d8ef785704b61ecb486c5) ([564c600](https://renovatebot.com/gh/ReactiveX/IxJS/commit/564c600)), closes [#&#8203;163](https://renovatebot.com/gh/ReactiveX/IxJS/issues/163)

#### [2.3.2](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.3.1...v2.3.2) (2017-11-21)

##### Bug Fixes

-   **fromnodestream:** enable fromnodestream tests, fix minification problems ([#&#8203;156](https://renovatebot.com/gh/ReactiveX/IxJS/issues/156)) ([745d763](https://renovatebot.com/gh/ReactiveX/IxJS/commit/745d763))
-   **fromnodestream:** type fromNodeStream to accept NodeJS.ReadableStream interface ([3cbf2dd](https://renovatebot.com/gh/ReactiveX/IxJS/commit/3cbf2dd))
-   **FromObservableAsyncIterable:** Fix handling of asynchronously emitting Observables ([#&#8203;150](https://renovatebot.com/gh/ReactiveX/IxJS/issues/150)) ([2c7222c](https://renovatebot.com/gh/ReactiveX/IxJS/commit/2c7222c))
-   **readme:** fix lettable syntax ([0e46181](https://renovatebot.com/gh/ReactiveX/IxJS/commit/0e46181))

##### Features

-   **as:** Add static as convenience methods to wrap values as Async/Iterables ([#&#8203;154](https://renovatebot.com/gh/ReactiveX/IxJS/issues/154)) ([79a14c5](https://renovatebot.com/gh/ReactiveX/IxJS/commit/79a14c5))

#### [2.3.1](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.3.0...v2.3.1) (2017-11-08)

##### Bug Fixes

-   **single:** make iterable prototype single predicate an optional parameter again ([2bea5ab](https://renovatebot.com/gh/ReactiveX/IxJS/commit/2bea5ab)), closes [/github.com/ReactiveX/IxJS/pull/83#issuecomment-341832266](https://renovatebot.com/gh//github.com/ReactiveX/IxJS/pull/83/issues/issuecomment-341832266)

</details>

---

### Renovate configuration

:date: **Schedule**: At any time (no schedule defined).

:vertical_traffic_light: **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

:recycle: **Rebasing**: Whenever PR becomes conflicted, or if you modify the PR title to begin with "`rebase!`".

:no_bell: **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- renovate-rebase -->If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Renovate Bot](https://renovatebot.com/gh/marketplace/renovate). View repository job log [here](https://renovatebot.com/dashboard#neo-one-suite/neo-one).

905: chore(deps): update dependency babel-loader to v8.0.5 r=davemneo a=renovate[bot]

This PR contains the following updates:

| Package | Type | Update | Change | References |
|---|---|---|---|---|
| babel-loader | devDependencies | patch | `8.0.4` -> `8.0.5` | [source](https://renovatebot.com/gh/babel/babel-loader) |

---

### Release Notes

<details>
<summary>babel/babel-loader</summary>

### [`v8.0.5`](https://renovatebot.com/gh/babel/babel-loader/releases/v8.0.5)

[Compare Source](https://renovatebot.com/gh/babel/babel-loader/compare/v8.0.4...v8.0.5)

-   Update `find-cache-dir` to 2.0

</details>

---

### Renovate configuration

:date: **Schedule**: At any time (no schedule defined).

:vertical_traffic_light: **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

:recycle: **Rebasing**: Whenever PR becomes conflicted, or if you modify the PR title to begin with "`rebase!`".

:no_bell: **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- renovate-rebase -->If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Renovate Bot](https://renovatebot.com/gh/marketplace/renovate). View repository job log [here](https://renovatebot.com/dashboard#neo-one-suite/neo-one).

Co-authored-by: Renovate Bot <[email protected]>
bors bot added a commit to neo-one-suite/neo-one that referenced this pull request Jan 8, 2019
903: chore(deps): update dependency @reactivex/ix-es2015-cjs to v2.4.3 r=davemneo a=renovate[bot]

This PR contains the following updates:

| Package | Type | Update | Change | References |
|---|---|---|---|---|
| @&#8203;reactivex/ix-es2015-cjs | devDependencies | minor | `2.3.5` -> `2.4.3` | [source](https://renovatebot.com/gh/ReactiveX/IxJS) |

---

### Release Notes

<details>
<summary>ReactiveX/IxJS</summary>

### [`v2.4.3`](https://renovatebot.com/gh/ReactiveX/IxJS/releases/v2.4.3)

[Compare Source](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.4.2...v2.4.3)

New release of IxJS is now available.  This includes a number of new features and improvements to existing APIs.

#### New APIs are available

The following APIs have been added to `AsyncIterable`

-   [`batch`](https://renovatebot.com/gh/ReactiveX/IxJS/blob/master/src/asynciterable/batch.ts)
-   [`toNodeStream`](https://renovatebot.com/gh/ReactiveX/IxJS/blob/master/src/asynciterable/tonodestream.ts)

The following APIs have been added to `Iterable`

-   [`toNodeStream`](https://renovatebot.com/gh/ReactiveX/IxJS/blob/master/src/iterable/tonodestream.ts)

##### API Fixes

-   [`AsyncIterable.fromNodeStream`](https://renovatebot.com/gh/ReactiveX/IxJS/blob/master/src/asynciterable/fromnodestream.ts) has been optimized for streams and `AsyncIterables`
-   [`AsyncIterable.prototype.pipe`](https://renovatebot.com/gh/ReactiveX/IxJS/blob/master/src/Ix.node.ts) now accepts Node.js `WritableStream` values in addition to operators.

##### Bug Fixes

-   **dependencies:** add rxjs to the production dependencies list ([54e5cf7](https://renovatebot.com/gh/ReactiveX/IxJS/commit/54e5cf7))

### [`v2.4.2`](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.4.0...v2.4.2)

[Compare Source](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.4.0...v2.4.2)

### [`v2.4.0`](https://renovatebot.com/gh/ReactiveX/IxJS/blob/master/CHANGELOG.md#&#8203;240httpsgithubcomReactiveXIxJScomparev235v240-2019-01-03)

[Compare Source](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.3.5...v2.4.0)

##### Bug Fixes

-   **toObservable:** adds symbol-observable for rxjs interop ([273e697](https://renovatebot.com/gh/ReactiveX/IxJS/commit/273e697)), closes [#&#8203;245](https://renovatebot.com/gh/ReactiveX/IxJS/issues/245)

##### Features

-   add support for passing Node WritableStreams to `AsyncIterableX#pipe()` ([#&#8203;257](https://renovatebot.com/gh/ReactiveX/IxJS/issues/257)) ([9a1c5cc](https://renovatebot.com/gh/ReactiveX/IxJS/commit/9a1c5cc))

-   add `AsyncIterableX#toNodeStream()` ([#&#8203;257](https://renovatebot.com/gh/ReactiveX/IxJS/issues/257)) ([9a1c5cc](https://renovatebot.com/gh/ReactiveX/IxJS/commit/9a1c5cc))

-   add `AsyncIterableX#batch()` ([#&#8203;222](https://renovatebot.com/gh/ReactiveX/IxJS/issues/222)) ([9c9bd7e](https://renovatebot.com/gh/ReactiveX/IxJS/commit/9c9bd7e))

#### [2.3.5](https://renovatebot.com/gh/ReactiveX/IxJS/compare/9.2.0...v2.3.5) (2018-02-19)

##### Bug Fixes

-   **compile:** adding some missing exports to deal with typescript 2.7.x compat issue ([0b0c837](https://renovatebot.com/gh/ReactiveX/IxJS/commit/0b0c837)), closes [#&#8203;214](https://renovatebot.com/gh/ReactiveX/IxJS/issues/214)

##### Features

-   **orderby:** add piped orderby ([#&#8203;190](https://renovatebot.com/gh/ReactiveX/IxJS/issues/190)) ([aaa527a](https://renovatebot.com/gh/ReactiveX/IxJS/commit/aaa527a))

#### [2.3.4](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.3.3...v2.3.4) (2017-11-29)

##### Bug Fixes

-   **typings:** Fix optional predicate typings for user-defined typeguard predicates ([fedd563](https://renovatebot.com/gh/ReactiveX/IxJS/commit/fedd563))
-   **typings:** workaround typescript bugs when noImplicitAny or strictNullChecks are not true ([ce03239](https://renovatebot.com/gh/ReactiveX/IxJS/commit/ce03239))

#### [2.3.3](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.3.2...v2.3.3) (2017-11-21)

##### Reverts

-   **npm:** revert [`4493754`](https://renovatebot.com/gh/ReactiveX/IxJS/commit/4493754d9fbbc061347d8ef785704b61ecb486c5) ([564c600](https://renovatebot.com/gh/ReactiveX/IxJS/commit/564c600)), closes [#&#8203;163](https://renovatebot.com/gh/ReactiveX/IxJS/issues/163)

#### [2.3.2](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.3.1...v2.3.2) (2017-11-21)

##### Bug Fixes

-   **fromnodestream:** enable fromnodestream tests, fix minification problems ([#&#8203;156](https://renovatebot.com/gh/ReactiveX/IxJS/issues/156)) ([745d763](https://renovatebot.com/gh/ReactiveX/IxJS/commit/745d763))
-   **fromnodestream:** type fromNodeStream to accept NodeJS.ReadableStream interface ([3cbf2dd](https://renovatebot.com/gh/ReactiveX/IxJS/commit/3cbf2dd))
-   **FromObservableAsyncIterable:** Fix handling of asynchronously emitting Observables ([#&#8203;150](https://renovatebot.com/gh/ReactiveX/IxJS/issues/150)) ([2c7222c](https://renovatebot.com/gh/ReactiveX/IxJS/commit/2c7222c))
-   **readme:** fix lettable syntax ([0e46181](https://renovatebot.com/gh/ReactiveX/IxJS/commit/0e46181))

##### Features

-   **as:** Add static as convenience methods to wrap values as Async/Iterables ([#&#8203;154](https://renovatebot.com/gh/ReactiveX/IxJS/issues/154)) ([79a14c5](https://renovatebot.com/gh/ReactiveX/IxJS/commit/79a14c5))

#### [2.3.1](https://renovatebot.com/gh/ReactiveX/IxJS/compare/v2.3.0...v2.3.1) (2017-11-08)

##### Bug Fixes

-   **single:** make iterable prototype single predicate an optional parameter again ([2bea5ab](https://renovatebot.com/gh/ReactiveX/IxJS/commit/2bea5ab)), closes [/github.com/ReactiveX/IxJS/pull/83#issuecomment-341832266](https://renovatebot.com/gh//github.com/ReactiveX/IxJS/pull/83/issues/issuecomment-341832266)

</details>

---

### Renovate configuration

:date: **Schedule**: At any time (no schedule defined).

:vertical_traffic_light: **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

:recycle: **Rebasing**: Whenever PR becomes conflicted, or if you modify the PR title to begin with "`rebase!`".

:no_bell: **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- renovate-rebase -->If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Renovate Bot](https://renovatebot.com/gh/marketplace/renovate). View repository job log [here](https://renovatebot.com/dashboard#neo-one-suite/neo-one).

Co-authored-by: Renovate Bot <[email protected]>
bors bot added a commit to neo-one-suite/neo-one that referenced this pull request Jan 14, 2019
915: chore(deps): update dependency lerna to v3.10.5 r=davemneo a=renovate[bot]

This PR contains the following updates:

| Package | Type | Update | Change | References |
|---|---|---|---|---|
| lerna | devDependencies | minor | `3.8.5` -> `3.10.5` | [homepage](https://lernajs.io/), [source](https://github.com/lerna/lerna) |

---

### Release Notes

<details>
<summary>lerna/lerna</summary>

### [`v3.10.5`](https://github.com/lerna/lerna/blob/master/CHANGELOG.md#&#8203;3105httpsgithubcomlernalernacomparev3104v3105-2019-01-11)

[Compare Source](https://github.com/lerna/lerna/compare/v3.10.4...v3.10.5)

##### Bug Fixes

-   **run-lifecycle:** Do not customize npm_config_prefix during execution ([79549c1](https://github.com/lerna/lerna/commit/79549c1)), closes [#&#8203;1866](https://github.com/lerna/lerna/issues/1866)

### [`v3.10.4`](https://github.com/lerna/lerna/blob/master/CHANGELOG.md#&#8203;3105httpsgithubcomlernalernacomparev3104v3105-2019-01-11)

[Compare Source](https://github.com/lerna/lerna/compare/v3.10.3...v3.10.4)

##### Bug Fixes

-   **run-lifecycle:** Do not customize npm_config_prefix during execution ([79549c1](https://github.com/lerna/lerna/commit/79549c1)), closes [#&#8203;1866](https://github.com/lerna/lerna/issues/1866)

### [`v3.10.3`](https://github.com/lerna/lerna/blob/master/CHANGELOG.md#&#8203;3104httpsgithubcomlernalernacomparev3103v3104-2019-01-10)

[Compare Source](https://github.com/lerna/lerna/compare/v3.10.2...v3.10.3)

##### Bug Fixes

-   **add:** Do not scope chained bootstrap ([d9d4bc4](https://github.com/lerna/lerna/commit/d9d4bc4))
-   **bootstrap:** Do not `npm ci` when hoisting ([27516b9](https://github.com/lerna/lerna/commit/27516b9)), closes [#&#8203;1865](https://github.com/lerna/lerna/issues/1865)

### [`v3.10.2`](https://github.com/lerna/lerna/blob/master/CHANGELOG.md#&#8203;3103httpsgithubcomlernalernacomparev3102v3103-2019-01-10)

[Compare Source](https://github.com/lerna/lerna/compare/v3.10.1...v3.10.2)

##### Bug Fixes

-   **bootstrap:** When filtering, only bootstrap filtered packages ([71174e4](https://github.com/lerna/lerna/commit/71174e4)), closes [#&#8203;1421](https://github.com/lerna/lerna/issues/1421) [#&#8203;1766](https://github.com/lerna/lerna/issues/1766)

### [`v3.10.1`](https://github.com/lerna/lerna/blob/master/CHANGELOG.md#&#8203;3102httpsgithubcomlernalernacomparev3101v3102-2019-01-09)

[Compare Source](https://github.com/lerna/lerna/compare/v3.10.0...v3.10.1)

##### Bug Fixes

-   **bootstrap:** Remove fancy root lifecycle execution, it was foolish ([9f80722](https://github.com/lerna/lerna/commit/9f80722)), closes [#&#8203;1857](https://github.com/lerna/lerna/issues/1857)

### [`v3.10.0`](https://github.com/lerna/lerna/blob/master/CHANGELOG.md#&#8203;3100httpsgithubcomlernalernacomparev391v3100-2019-01-08)

[Compare Source](https://github.com/lerna/lerna/compare/v3.9.1...v3.10.0)

##### Bug Fixes

-   **publish:** Correctly determine canary version when `--include-merged-tags` present ([fb2a1b2](https://github.com/lerna/lerna/commit/fb2a1b2)), closes [#&#8203;1820](https://github.com/lerna/lerna/issues/1820)

##### Features

-   **lerna:** Use --exact version ranges between sibling dependencies ([02a067f](https://github.com/lerna/lerna/commit/02a067f))
-   **version:** Add `--no-changelog` option ([#&#8203;1854](https://github.com/lerna/lerna/issues/1854)) ([d73d823](https://github.com/lerna/lerna/commit/d73d823)), closes [#&#8203;1852](https://github.com/lerna/lerna/issues/1852)

#### [3.9.1](https://github.com/lerna/lerna/compare/v3.9.0...v3.9.1) (2019-01-08)

##### Bug Fixes

-   **bootstrap:** Don't pass `--ignore-scripts` to `npm install` ([e602838](https://github.com/lerna/lerna/commit/e602838)), closes [#&#8203;1855](https://github.com/lerna/lerna/issues/1855)
-   **bootstrap:** Prevent recursive execution from all install lifecycles ([ea9dbbe](https://github.com/lerna/lerna/commit/ea9dbbe))

### [`v3.9.1`](https://github.com/lerna/lerna/blob/master/CHANGELOG.md#&#8203;3100httpsgithubcomlernalernacomparev391v3100-2019-01-08)

[Compare Source](https://github.com/lerna/lerna/compare/v3.9.0...v3.9.1)

##### Bug Fixes

-   **publish:** Correctly determine canary version when `--include-merged-tags` present ([fb2a1b2](https://github.com/lerna/lerna/commit/fb2a1b2)), closes [#&#8203;1820](https://github.com/lerna/lerna/issues/1820)

##### Features

-   **lerna:** Use --exact version ranges between sibling dependencies ([02a067f](https://github.com/lerna/lerna/commit/02a067f))
-   **version:** Add `--no-changelog` option ([#&#8203;1854](https://github.com/lerna/lerna/issues/1854)) ([d73d823](https://github.com/lerna/lerna/commit/d73d823)), closes [#&#8203;1852](https://github.com/lerna/lerna/issues/1852)

#### [3.9.1](https://github.com/lerna/lerna/compare/v3.9.0...v3.9.1) (2019-01-08)

##### Bug Fixes

-   **bootstrap:** Don't pass `--ignore-scripts` to `npm install` ([e602838](https://github.com/lerna/lerna/commit/e602838)), closes [#&#8203;1855](https://github.com/lerna/lerna/issues/1855)
-   **bootstrap:** Prevent recursive execution from all install lifecycles ([ea9dbbe](https://github.com/lerna/lerna/commit/ea9dbbe))

### [`v3.9.0`](https://github.com/lerna/lerna/blob/master/CHANGELOG.md#&#8203;390httpsgithubcomlernalernacomparev385v390-2019-01-08)

[Compare Source](https://github.com/lerna/lerna/compare/v3.8.5...v3.9.0)

##### Bug Fixes

-   **bootstrap:** Only run install lifecycles once-per-package, in topological order ([929ae22](https://github.com/lerna/lerna/commit/929ae22))
-   **describe-ref:** Properly handle sha-like tag names ([#&#8203;1853](https://github.com/lerna/lerna/issues/1853)) ([094a1cb](https://github.com/lerna/lerna/commit/094a1cb))
-   **run-lifecycle:** Ensure all npm_package_\* env vars are created ([bab8e58](https://github.com/lerna/lerna/commit/bab8e58)), closes [#&#8203;1752](https://github.com/lerna/lerna/issues/1752)

##### Features

-   **bootstrap:** Add `--ignore-prepublish` option ([f14fc06](https://github.com/lerna/lerna/commit/f14fc06))
-   **bootstrap:** Run root install lifecycles where appropriate ([944e36f](https://github.com/lerna/lerna/commit/944e36f))

#### [3.8.5](https://github.com/lerna/lerna/compare/v3.8.4...v3.8.5) (2019-01-05)

##### Bug Fixes

-   **npm-dist-tag:** Improve robustness ([63a7a89](https://github.com/lerna/lerna/commit/63a7a89))
-   **npm-publish:** Ensure pkg.publishConfig is handled correctly ([1877def](https://github.com/lerna/lerna/commit/1877def)), closes [#&#8203;1498](https://github.com/lerna/lerna/issues/1498)
-   **project:** Deprecate root-level config keys as well, prioritizing nested ([7a65a87](https://github.com/lerna/lerna/commit/7a65a87))
-   **publish:** Deprecate `--npm-tag`, replaced by `--dist-tag` ([196d663](https://github.com/lerna/lerna/commit/196d663))
-   **publish:** Ensure pkg.publishConfig is handled correctly when promoting dist-tags ([af1c2ad](https://github.com/lerna/lerna/commit/af1c2ad))
-   **publish:** Tweak progress logging ([5a04145](https://github.com/lerna/lerna/commit/5a04145))

#### [3.8.4](https://github.com/lerna/lerna/compare/v3.8.3...v3.8.4) (2019-01-03)

##### Bug Fixes

-   **publish:** Pass username to access.lsPackages() ([31982a1](https://github.com/lerna/lerna/commit/31982a1))

#### [3.8.3](https://github.com/lerna/lerna/compare/v3.8.2...v3.8.3) (2019-01-03)

##### Bug Fixes

-   **publish:** Give up trying to validate third-party registries ([b44f2f9](https://github.com/lerna/lerna/commit/b44f2f9)), closes [#&#8203;1685](https://github.com/lerna/lerna/issues/1685) [#&#8203;1687](https://github.com/lerna/lerna/issues/1687)

#### [3.8.2](https://github.com/lerna/lerna/compare/v3.8.1...v3.8.2) (2019-01-03)

##### Bug Fixes

-   **bootstrap:** Bail out of hoisted recursive lifecycles ([169c943](https://github.com/lerna/lerna/commit/169c943)), closes [#&#8203;1125](https://github.com/lerna/lerna/issues/1125)
-   **publish:** Avoid recursive root lifecycle execution ([e133134](https://github.com/lerna/lerna/commit/e133134))
-   **publish:** Run root prepublish lifecycle if it exists ([c5676bb](https://github.com/lerna/lerna/commit/c5676bb))
-   **run-lifecycle:** Short-circuit ignore options ([ae29097](https://github.com/lerna/lerna/commit/ae29097))
-   **version:** Avoid recursive root lifecycle execution ([089392d](https://github.com/lerna/lerna/commit/089392d)), closes [#&#8203;1844](https://github.com/lerna/lerna/issues/1844)

#### [3.8.1](https://github.com/lerna/lerna/compare/v3.8.0...v3.8.1) (2018-12-31)

##### Bug Fixes

-   Do not print duplicate stdio after a streaming command errors ([#&#8203;1832](https://github.com/lerna/lerna/issues/1832)) ([2bcc366](https://github.com/lerna/lerna/commit/2bcc366)), closes [#&#8203;1790](https://github.com/lerna/lerna/issues/1790)
-   **npm-publish:** Pass normalized manifest to libnpm/publish ([8e59950](https://github.com/lerna/lerna/commit/8e59950)), closes [#&#8203;1843](https://github.com/lerna/lerna/issues/1843)
-   **progress:** Correctly avoid progress where we don't want it ([0de3df9](https://github.com/lerna/lerna/commit/0de3df9))
-   **progress:** Enable progress during logging setup, correcting default ([da81e60](https://github.com/lerna/lerna/commit/da81e60))
-   **publish:** --canary should also respect --include-merged-tags ([462b15c](https://github.com/lerna/lerna/commit/462b15c)), closes [#&#8203;1820](https://github.com/lerna/lerna/issues/1820)

##### Features

-   **command:** log whether CI environment has been detected ([#&#8203;1841](https://github.com/lerna/lerna/issues/1841)) ([db5631e](https://github.com/lerna/lerna/commit/db5631e)), closes [#&#8203;1825](https://github.com/lerna/lerna/issues/1825)

</details>

---

### Renovate configuration

:date: **Schedule**: At any time (no schedule defined).

:vertical_traffic_light: **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

:recycle: **Rebasing**: Whenever PR becomes conflicted, or if you modify the PR title to begin with "`rebase!`".

:no_bell: **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- renovate-rebase -->If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Renovate Bot](https://github.com/marketplace/renovate). View repository job log [here](https://renovatebot.com/dashboard#neo-one-suite/neo-one).

920: fix(deps): update dependency webpack to v4.28.4 r=davemneo a=renovate[bot]

This PR contains the following updates:

| Package | Type | Update | Change | References |
|---|---|---|---|---|
| webpack | dependencies | patch | `4.28.3` -> `4.28.4` | [source](https://github.com/webpack/webpack) |
| webpack | devDependencies | patch | `4.28.3` -> `4.28.4` | [source](https://github.com/webpack/webpack) |

---

### Release Notes

<details>
<summary>webpack/webpack</summary>

### [`v4.28.4`](https://github.com/webpack/webpack/releases/v4.28.4)

[Compare Source](https://github.com/webpack/webpack/compare/v4.28.3...v4.28.4)

### Bugfixes

-   `ProfilingPlugin` creates output path if not existing
-   fixed support for arrow function functions for `optimization.minimizer`
-   failed hooks is now also called when `run()` fails

</details>

---

### Renovate configuration

:date: **Schedule**: At any time (no schedule defined).

:vertical_traffic_light: **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

:recycle: **Rebasing**: Whenever PR becomes conflicted, or if you modify the PR title to begin with "`rebase!`".

:no_bell: **Ignore**: Close this PR and you won't be reminded about these updates again.

---

 - [ ] <!-- renovate-rebase -->If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Renovate Bot](https://github.com/marketplace/renovate). View repository job log [here](https://renovatebot.com/dashboard#neo-one-suite/neo-one).

928: chore(deps): update dependency autoprefixer to v9.4.5 r=davemneo a=renovate[bot]

This PR contains the following updates:

| Package | Type | Update | Change | References |
|---|---|---|---|---|
| autoprefixer | devDependencies | patch | `9.4.4` -> `9.4.5` | [source](https://github.com/postcss/autoprefixer) |

---

### Release Notes

<details>
<summary>postcss/autoprefixer</summary>

### [`v9.4.5`](https://github.com/postcss/autoprefixer/blob/master/CHANGELOG.md#&#8203;945)

[Compare Source](https://github.com/postcss/autoprefixer/compare/9.4.4...9.4.5)

-   Fix `text-decoration-skip-ink` support.

</details>

---

### Renovate configuration

:date: **Schedule**: At any time (no schedule defined).

:vertical_traffic_light: **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

:recycle: **Rebasing**: Whenever PR becomes conflicted, or if you modify the PR title to begin with "`rebase!`".

:no_bell: **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- renovate-rebase -->If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Renovate Bot](https://github.com/marketplace/renovate). View repository job log [here](https://renovatebot.com/dashboard#neo-one-suite/neo-one).

930: chore(deps): update dependency @reactivex/ix-es2015-cjs to v2.5.0 r=davemneo a=renovate[bot]

This PR contains the following updates:

| Package | Type | Update | Change | References |
|---|---|---|---|---|
| @&#8203;reactivex/ix-es2015-cjs | devDependencies | minor | `2.4.3` -> `2.5.0` | [source](https://github.com/ReactiveX/IxJS) |

---

### Release Notes

<details>
<summary>ReactiveX/IxJS</summary>

### [`v2.5.0`](https://github.com/ReactiveX/IxJS/compare/v2.4.3...v2.5.0)

[Compare Source](https://github.com/ReactiveX/IxJS/compare/v2.4.3...v2.5.0)

</details>

---

### Renovate configuration

:date: **Schedule**: At any time (no schedule defined).

:vertical_traffic_light: **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

:recycle: **Rebasing**: Whenever PR becomes conflicted, or if you modify the PR title to begin with "`rebase!`".

:no_bell: **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- renovate-rebase -->If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Renovate Bot](https://github.com/marketplace/renovate). View repository job log [here](https://renovatebot.com/dashboard#neo-one-suite/neo-one).

931: chore(deps): update dependency @reactivex/ix-esnext-esm to v2.5.0 r=davemneo a=renovate[bot]

This PR contains the following updates:

| Package | Type | Update | Change | References |
|---|---|---|---|---|
| @&#8203;reactivex/ix-esnext-esm | devDependencies | minor | `2.3.5` -> `2.5.0` | [source](https://github.com/ReactiveX/IxJS) |

---

### Release Notes

<details>
<summary>ReactiveX/IxJS</summary>

### [`v2.5.0`](https://github.com/ReactiveX/IxJS/compare/v2.4.3...v2.5.0)

[Compare Source](https://github.com/ReactiveX/IxJS/compare/v2.4.3...v2.5.0)

### [`v2.4.3`](https://github.com/ReactiveX/IxJS/releases/v2.4.3)

[Compare Source](https://github.com/ReactiveX/IxJS/compare/v2.4.2...v2.4.3)

New release of IxJS is now available.  This includes a number of new features and improvements to existing APIs.

#### New APIs are available

The following APIs have been added to `AsyncIterable`

-   [`batch`](https://github.com/ReactiveX/IxJS/blob/master/src/asynciterable/batch.ts)
-   [`toNodeStream`](https://github.com/ReactiveX/IxJS/blob/master/src/asynciterable/tonodestream.ts)

The following APIs have been added to `Iterable`

-   [`toNodeStream`](https://github.com/ReactiveX/IxJS/blob/master/src/iterable/tonodestream.ts)

##### API Fixes

-   [`AsyncIterable.fromNodeStream`](https://github.com/ReactiveX/IxJS/blob/master/src/asynciterable/fromnodestream.ts) has been optimized for streams and `AsyncIterables`
-   [`AsyncIterable.prototype.pipe`](https://github.com/ReactiveX/IxJS/blob/master/src/Ix.node.ts) now accepts Node.js `WritableStream` values in addition to operators.

##### Bug Fixes

-   **dependencies:** add rxjs to the production dependencies list ([54e5cf7](https://github.com/ReactiveX/IxJS/commit/54e5cf7))

### [`v2.4.2`](https://github.com/ReactiveX/IxJS/compare/v2.4.0...v2.4.2)

[Compare Source](https://github.com/ReactiveX/IxJS/compare/v2.4.0...v2.4.2)

### [`v2.4.0`](https://github.com/ReactiveX/IxJS/blob/master/CHANGELOG.md#&#8203;240httpsgithubcomReactiveXIxJScomparev235v240-2019-01-03)

[Compare Source](https://github.com/ReactiveX/IxJS/compare/v2.3.5...v2.4.0)

##### Bug Fixes

-   **toObservable:** adds symbol-observable for rxjs interop ([273e697](https://github.com/ReactiveX/IxJS/commit/273e697)), closes [#&#8203;245](https://github.com/ReactiveX/IxJS/issues/245)

##### Features

-   add support for passing Node WritableStreams to `AsyncIterableX#pipe()` ([#&#8203;257](https://github.com/ReactiveX/IxJS/issues/257)) ([9a1c5cc](https://github.com/ReactiveX/IxJS/commit/9a1c5cc))

-   add `AsyncIterableX#toNodeStream()` ([#&#8203;257](https://github.com/ReactiveX/IxJS/issues/257)) ([9a1c5cc](https://github.com/ReactiveX/IxJS/commit/9a1c5cc))

-   add `AsyncIterableX#batch()` ([#&#8203;222](https://github.com/ReactiveX/IxJS/issues/222)) ([9c9bd7e](https://github.com/ReactiveX/IxJS/commit/9c9bd7e))

#### [2.3.5](https://github.com/ReactiveX/IxJS/compare/9.2.0...v2.3.5) (2018-02-19)

##### Bug Fixes

-   **compile:** adding some missing exports to deal with typescript 2.7.x compat issue ([0b0c837](https://github.com/ReactiveX/IxJS/commit/0b0c837)), closes [#&#8203;214](https://github.com/ReactiveX/IxJS/issues/214)

##### Features

-   **orderby:** add piped orderby ([#&#8203;190](https://github.com/ReactiveX/IxJS/issues/190)) ([aaa527a](https://github.com/ReactiveX/IxJS/commit/aaa527a))

#### [2.3.4](https://github.com/ReactiveX/IxJS/compare/v2.3.3...v2.3.4) (2017-11-29)

##### Bug Fixes

-   **typings:** Fix optional predicate typings for user-defined typeguard predicates ([fedd563](https://github.com/ReactiveX/IxJS/commit/fedd563))
-   **typings:** workaround typescript bugs when noImplicitAny or strictNullChecks are not true ([ce03239](https://github.com/ReactiveX/IxJS/commit/ce03239))

#### [2.3.3](https://github.com/ReactiveX/IxJS/compare/v2.3.2...v2.3.3) (2017-11-21)

##### Reverts

-   **npm:** revert [`4493754`](https://github.com/ReactiveX/IxJS/commit/4493754d9fbbc061347d8ef785704b61ecb486c5) ([564c600](https://github.com/ReactiveX/IxJS/commit/564c600)), closes [#&#8203;163](https://github.com/ReactiveX/IxJS/issues/163)

#### [2.3.2](https://github.com/ReactiveX/IxJS/compare/v2.3.1...v2.3.2) (2017-11-21)

##### Bug Fixes

-   **fromnodestream:** enable fromnodestream tests, fix minification problems ([#&#8203;156](https://github.com/ReactiveX/IxJS/issues/156)) ([745d763](https://github.com/ReactiveX/IxJS/commit/745d763))
-   **fromnodestream:** type fromNodeStream to accept NodeJS.ReadableStream interface ([3cbf2dd](https://github.com/ReactiveX/IxJS/commit/3cbf2dd))
-   **FromObservableAsyncIterable:** Fix handling of asynchronously emitting Observables ([#&#8203;150](https://github.com/ReactiveX/IxJS/issues/150)) ([2c7222c](https://github.com/ReactiveX/IxJS/commit/2c7222c))
-   **readme:** fix lettable syntax ([0e46181](https://github.com/ReactiveX/IxJS/commit/0e46181))

##### Features

-   **as:** Add static as convenience methods to wrap values as Async/Iterables ([#&#8203;154](https://github.com/ReactiveX/IxJS/issues/154)) ([79a14c5](https://github.com/ReactiveX/IxJS/commit/79a14c5))

#### [2.3.1](https://github.com/ReactiveX/IxJS/compare/v2.3.0...v2.3.1) (2017-11-08)

##### Bug Fixes

-   **single:** make iterable prototype single predicate an optional parameter again ([2bea5ab](https://github.com/ReactiveX/IxJS/commit/2bea5ab)), closes [/github.com/ReactiveX/IxJS/pull/83#issuecomment-341832266](https://github.com//github.com/ReactiveX/IxJS/pull/83/issues/issuecomment-341832266)

</details>

---

### Renovate configuration

:date: **Schedule**: At any time (no schedule defined).

:vertical_traffic_light: **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

:recycle: **Rebasing**: Whenever PR becomes conflicted, or if you modify the PR title to begin with "`rebase!`".

:no_bell: **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- renovate-rebase -->If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Renovate Bot](https://github.com/marketplace/renovate). View repository job log [here](https://renovatebot.com/dashboard#neo-one-suite/neo-one).

Co-authored-by: Renovate Bot <[email protected]>
bors bot added a commit to neo-one-suite/neo-one that referenced this pull request Jan 14, 2019
928: chore(deps): update dependency autoprefixer to v9.4.5 r=davemneo a=renovate[bot]

This PR contains the following updates:

| Package | Type | Update | Change | References |
|---|---|---|---|---|
| autoprefixer | devDependencies | patch | `9.4.4` -> `9.4.5` | [source](https://github.com/postcss/autoprefixer) |

---

### Release Notes

<details>
<summary>postcss/autoprefixer</summary>

### [`v9.4.5`](https://github.com/postcss/autoprefixer/blob/master/CHANGELOG.md#&#8203;945)

[Compare Source](https://github.com/postcss/autoprefixer/compare/9.4.4...9.4.5)

-   Fix `text-decoration-skip-ink` support.

</details>

---

### Renovate configuration

:date: **Schedule**: At any time (no schedule defined).

:vertical_traffic_light: **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

:recycle: **Rebasing**: Whenever PR becomes conflicted, or if you modify the PR title to begin with "`rebase!`".

:no_bell: **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- renovate-rebase -->If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Renovate Bot](https://github.com/marketplace/renovate). View repository job log [here](https://renovatebot.com/dashboard#neo-one-suite/neo-one).

931: chore(deps): update dependency @reactivex/ix-esnext-esm to v2.5.0 r=davemneo a=renovate[bot]

This PR contains the following updates:

| Package | Type | Update | Change | References |
|---|---|---|---|---|
| @&#8203;reactivex/ix-esnext-esm | devDependencies | minor | `2.3.5` -> `2.5.0` | [source](https://github.com/ReactiveX/IxJS) |

---

### Release Notes

<details>
<summary>ReactiveX/IxJS</summary>

### [`v2.5.0`](https://github.com/ReactiveX/IxJS/compare/v2.4.3...v2.5.0)

[Compare Source](https://github.com/ReactiveX/IxJS/compare/v2.4.3...v2.5.0)

### [`v2.4.3`](https://github.com/ReactiveX/IxJS/releases/v2.4.3)

[Compare Source](https://github.com/ReactiveX/IxJS/compare/v2.4.2...v2.4.3)

New release of IxJS is now available.  This includes a number of new features and improvements to existing APIs.

#### New APIs are available

The following APIs have been added to `AsyncIterable`

-   [`batch`](https://github.com/ReactiveX/IxJS/blob/master/src/asynciterable/batch.ts)
-   [`toNodeStream`](https://github.com/ReactiveX/IxJS/blob/master/src/asynciterable/tonodestream.ts)

The following APIs have been added to `Iterable`

-   [`toNodeStream`](https://github.com/ReactiveX/IxJS/blob/master/src/iterable/tonodestream.ts)

##### API Fixes

-   [`AsyncIterable.fromNodeStream`](https://github.com/ReactiveX/IxJS/blob/master/src/asynciterable/fromnodestream.ts) has been optimized for streams and `AsyncIterables`
-   [`AsyncIterable.prototype.pipe`](https://github.com/ReactiveX/IxJS/blob/master/src/Ix.node.ts) now accepts Node.js `WritableStream` values in addition to operators.

##### Bug Fixes

-   **dependencies:** add rxjs to the production dependencies list ([54e5cf7](https://github.com/ReactiveX/IxJS/commit/54e5cf7))

### [`v2.4.2`](https://github.com/ReactiveX/IxJS/compare/v2.4.0...v2.4.2)

[Compare Source](https://github.com/ReactiveX/IxJS/compare/v2.4.0...v2.4.2)

### [`v2.4.0`](https://github.com/ReactiveX/IxJS/blob/master/CHANGELOG.md#&#8203;240httpsgithubcomReactiveXIxJScomparev235v240-2019-01-03)

[Compare Source](https://github.com/ReactiveX/IxJS/compare/v2.3.5...v2.4.0)

##### Bug Fixes

-   **toObservable:** adds symbol-observable for rxjs interop ([273e697](https://github.com/ReactiveX/IxJS/commit/273e697)), closes [#&#8203;245](https://github.com/ReactiveX/IxJS/issues/245)

##### Features

-   add support for passing Node WritableStreams to `AsyncIterableX#pipe()` ([#&#8203;257](https://github.com/ReactiveX/IxJS/issues/257)) ([9a1c5cc](https://github.com/ReactiveX/IxJS/commit/9a1c5cc))

-   add `AsyncIterableX#toNodeStream()` ([#&#8203;257](https://github.com/ReactiveX/IxJS/issues/257)) ([9a1c5cc](https://github.com/ReactiveX/IxJS/commit/9a1c5cc))

-   add `AsyncIterableX#batch()` ([#&#8203;222](https://github.com/ReactiveX/IxJS/issues/222)) ([9c9bd7e](https://github.com/ReactiveX/IxJS/commit/9c9bd7e))

#### [2.3.5](https://github.com/ReactiveX/IxJS/compare/9.2.0...v2.3.5) (2018-02-19)

##### Bug Fixes

-   **compile:** adding some missing exports to deal with typescript 2.7.x compat issue ([0b0c837](https://github.com/ReactiveX/IxJS/commit/0b0c837)), closes [#&#8203;214](https://github.com/ReactiveX/IxJS/issues/214)

##### Features

-   **orderby:** add piped orderby ([#&#8203;190](https://github.com/ReactiveX/IxJS/issues/190)) ([aaa527a](https://github.com/ReactiveX/IxJS/commit/aaa527a))

#### [2.3.4](https://github.com/ReactiveX/IxJS/compare/v2.3.3...v2.3.4) (2017-11-29)

##### Bug Fixes

-   **typings:** Fix optional predicate typings for user-defined typeguard predicates ([fedd563](https://github.com/ReactiveX/IxJS/commit/fedd563))
-   **typings:** workaround typescript bugs when noImplicitAny or strictNullChecks are not true ([ce03239](https://github.com/ReactiveX/IxJS/commit/ce03239))

#### [2.3.3](https://github.com/ReactiveX/IxJS/compare/v2.3.2...v2.3.3) (2017-11-21)

##### Reverts

-   **npm:** revert [`4493754`](https://github.com/ReactiveX/IxJS/commit/4493754d9fbbc061347d8ef785704b61ecb486c5) ([564c600](https://github.com/ReactiveX/IxJS/commit/564c600)), closes [#&#8203;163](https://github.com/ReactiveX/IxJS/issues/163)

#### [2.3.2](https://github.com/ReactiveX/IxJS/compare/v2.3.1...v2.3.2) (2017-11-21)

##### Bug Fixes

-   **fromnodestream:** enable fromnodestream tests, fix minification problems ([#&#8203;156](https://github.com/ReactiveX/IxJS/issues/156)) ([745d763](https://github.com/ReactiveX/IxJS/commit/745d763))
-   **fromnodestream:** type fromNodeStream to accept NodeJS.ReadableStream interface ([3cbf2dd](https://github.com/ReactiveX/IxJS/commit/3cbf2dd))
-   **FromObservableAsyncIterable:** Fix handling of asynchronously emitting Observables ([#&#8203;150](https://github.com/ReactiveX/IxJS/issues/150)) ([2c7222c](https://github.com/ReactiveX/IxJS/commit/2c7222c))
-   **readme:** fix lettable syntax ([0e46181](https://github.com/ReactiveX/IxJS/commit/0e46181))

##### Features

-   **as:** Add static as convenience methods to wrap values as Async/Iterables ([#&#8203;154](https://github.com/ReactiveX/IxJS/issues/154)) ([79a14c5](https://github.com/ReactiveX/IxJS/commit/79a14c5))

#### [2.3.1](https://github.com/ReactiveX/IxJS/compare/v2.3.0...v2.3.1) (2017-11-08)

##### Bug Fixes

-   **single:** make iterable prototype single predicate an optional parameter again ([2bea5ab](https://github.com/ReactiveX/IxJS/commit/2bea5ab)), closes [/github.com/ReactiveX/IxJS/pull/83#issuecomment-341832266](https://github.com//github.com/ReactiveX/IxJS/pull/83/issues/issuecomment-341832266)

</details>

---

### Renovate configuration

:date: **Schedule**: At any time (no schedule defined).

:vertical_traffic_light: **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

:recycle: **Rebasing**: Whenever PR becomes conflicted, or if you modify the PR title to begin with "`rebase!`".

:no_bell: **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- renovate-rebase -->If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Renovate Bot](https://github.com/marketplace/renovate). View repository job log [here](https://renovatebot.com/dashboard#neo-one-suite/neo-one).

Co-authored-by: Renovate Bot <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Support user defined type guards in filter predicates
3 participants