From 34a97b476e2d5ed12b0b1f178f2e2a41ce01dec7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andre=CC=81=20Wachter?= Date: Mon, 27 Aug 2018 17:06:15 +0200 Subject: [PATCH 1/2] fix(rstream): Fix unbound this in method call expression --- packages/rstream/src/subs/resolve.ts | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/packages/rstream/src/subs/resolve.ts b/packages/rstream/src/subs/resolve.ts index ee1feac494..ee86cced37 100644 --- a/packages/rstream/src/subs/resolve.ts +++ b/packages/rstream/src/subs/resolve.ts @@ -57,7 +57,14 @@ export class Resolver extends Subscription, T> { DEBUG && console.log(`resolved value in ${State[this.state]} state (${x})`); } }, - (e) => (this.fail || this.error)(e) + (e) => { + if (this.fail) { + this.fail(e); + } + else { + this.error(e); + } + } ); } From 986e954f475f6127b76db689c315751782163459 Mon Sep 17 00:00:00 2001 From: Karsten Schmidt Date: Mon, 27 Aug 2018 17:23:01 +0100 Subject: [PATCH 2/2] Publish - @thi.ng/rstream-csp@0.1.100 - @thi.ng/rstream-dot@0.2.39 - @thi.ng/rstream-gestures@0.5.1 - @thi.ng/rstream-graph@2.1.24 - @thi.ng/rstream-log@1.0.51 - @thi.ng/rstream-query@0.3.38 - @thi.ng/rstream@1.11.6 --- packages/rstream-csp/CHANGELOG.md | 8 ++++++++ packages/rstream-csp/package.json | 4 ++-- packages/rstream-dot/CHANGELOG.md | 8 ++++++++ packages/rstream-dot/package.json | 4 ++-- packages/rstream-gestures/CHANGELOG.md | 8 ++++++++ packages/rstream-gestures/package.json | 4 ++-- packages/rstream-graph/CHANGELOG.md | 8 ++++++++ packages/rstream-graph/package.json | 4 ++-- packages/rstream-log/CHANGELOG.md | 8 ++++++++ packages/rstream-log/package.json | 4 ++-- packages/rstream-query/CHANGELOG.md | 8 ++++++++ packages/rstream-query/package.json | 6 +++--- packages/rstream/CHANGELOG.md | 11 +++++++++++ packages/rstream/package.json | 2 +- 14 files changed, 73 insertions(+), 14 deletions(-) diff --git a/packages/rstream-csp/CHANGELOG.md b/packages/rstream-csp/CHANGELOG.md index 04492c9f1d..c1134fb06b 100644 --- a/packages/rstream-csp/CHANGELOG.md +++ b/packages/rstream-csp/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [0.1.100](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-csp@0.1.99...@thi.ng/rstream-csp@0.1.100) (2018-08-27) + + + + +**Note:** Version bump only for package @thi.ng/rstream-csp + ## [0.1.99](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-csp@0.1.98...@thi.ng/rstream-csp@0.1.99) (2018-08-27) diff --git a/packages/rstream-csp/package.json b/packages/rstream-csp/package.json index dd83557141..477b9096e1 100644 --- a/packages/rstream-csp/package.json +++ b/packages/rstream-csp/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/rstream-csp", - "version": "0.1.99", + "version": "0.1.100", "description": "@thi.ng/csp bridge module for @thi.ng/rstream", "main": "./index.js", "typings": "./index.d.ts", @@ -29,7 +29,7 @@ }, "dependencies": { "@thi.ng/csp": "^0.3.57", - "@thi.ng/rstream": "^1.11.5" + "@thi.ng/rstream": "^1.11.6" }, "keywords": [ "bridge", diff --git a/packages/rstream-dot/CHANGELOG.md b/packages/rstream-dot/CHANGELOG.md index e0e4bb2628..a015818594 100644 --- a/packages/rstream-dot/CHANGELOG.md +++ b/packages/rstream-dot/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [0.2.39](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-dot@0.2.38...@thi.ng/rstream-dot@0.2.39) (2018-08-27) + + + + +**Note:** Version bump only for package @thi.ng/rstream-dot + ## [0.2.38](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-dot@0.2.37...@thi.ng/rstream-dot@0.2.38) (2018-08-27) diff --git a/packages/rstream-dot/package.json b/packages/rstream-dot/package.json index e9db75386e..71e3ab1b7f 100644 --- a/packages/rstream-dot/package.json +++ b/packages/rstream-dot/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/rstream-dot", - "version": "0.2.38", + "version": "0.2.39", "description": "Graphviz DOT conversion of @thi.ng/rstream dataflow graph topologies", "main": "./index.js", "typings": "./index.d.ts", @@ -28,7 +28,7 @@ "typescript": "^3.0.1" }, "dependencies": { - "@thi.ng/rstream": "^1.11.5" + "@thi.ng/rstream": "^1.11.6" }, "keywords": [ "conversion", diff --git a/packages/rstream-gestures/CHANGELOG.md b/packages/rstream-gestures/CHANGELOG.md index b35f45f3b2..16ee4338c3 100644 --- a/packages/rstream-gestures/CHANGELOG.md +++ b/packages/rstream-gestures/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [0.5.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-gestures@0.5.0...@thi.ng/rstream-gestures@0.5.1) (2018-08-27) + + + + +**Note:** Version bump only for package @thi.ng/rstream-gestures + # [0.5.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-gestures@0.4.18...@thi.ng/rstream-gestures@0.5.0) (2018-08-27) diff --git a/packages/rstream-gestures/package.json b/packages/rstream-gestures/package.json index a3144c672b..5f3a51177f 100644 --- a/packages/rstream-gestures/package.json +++ b/packages/rstream-gestures/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/rstream-gestures", - "version": "0.5.0", + "version": "0.5.1", "description": "Unified mouse, mouse wheel & single-touch event stream abstraction", "main": "./index.js", "typings": "./index.d.ts", @@ -29,7 +29,7 @@ }, "dependencies": { "@thi.ng/api": "^4.1.0", - "@thi.ng/rstream": "^1.11.5", + "@thi.ng/rstream": "^1.11.6", "@thi.ng/transducers": "^2.0.1" }, "keywords": [ diff --git a/packages/rstream-graph/CHANGELOG.md b/packages/rstream-graph/CHANGELOG.md index 0628fcad89..82c850b6c4 100644 --- a/packages/rstream-graph/CHANGELOG.md +++ b/packages/rstream-graph/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [2.1.24](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-graph@2.1.23...@thi.ng/rstream-graph@2.1.24) (2018-08-27) + + + + +**Note:** Version bump only for package @thi.ng/rstream-graph + ## [2.1.23](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-graph@2.1.22...@thi.ng/rstream-graph@2.1.23) (2018-08-27) diff --git a/packages/rstream-graph/package.json b/packages/rstream-graph/package.json index 24fa506a0d..ed03b2fe0d 100644 --- a/packages/rstream-graph/package.json +++ b/packages/rstream-graph/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/rstream-graph", - "version": "2.1.23", + "version": "2.1.24", "description": "Declarative dataflow graph construction for @thi.ng/rstream", "main": "./index.js", "typings": "./index.d.ts", @@ -33,7 +33,7 @@ "@thi.ng/errors": "^0.1.6", "@thi.ng/paths": "^1.5.2", "@thi.ng/resolve-map": "^3.0.8", - "@thi.ng/rstream": "^1.11.5", + "@thi.ng/rstream": "^1.11.6", "@thi.ng/transducers": "^2.0.1" }, "keywords": [ diff --git a/packages/rstream-log/CHANGELOG.md b/packages/rstream-log/CHANGELOG.md index ec33a1be0e..19b2808f87 100644 --- a/packages/rstream-log/CHANGELOG.md +++ b/packages/rstream-log/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [1.0.51](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-log@1.0.50...@thi.ng/rstream-log@1.0.51) (2018-08-27) + + + + +**Note:** Version bump only for package @thi.ng/rstream-log + ## [1.0.50](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-log@1.0.49...@thi.ng/rstream-log@1.0.50) (2018-08-27) diff --git a/packages/rstream-log/package.json b/packages/rstream-log/package.json index 1c667e4844..e600f24537 100644 --- a/packages/rstream-log/package.json +++ b/packages/rstream-log/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/rstream-log", - "version": "1.0.50", + "version": "1.0.51", "description": "Structured, multilevel & hierarchical loggers based on @thi.ng/rstream", "main": "./index.js", "typings": "./index.d.ts", @@ -31,7 +31,7 @@ "@thi.ng/api": "^4.1.0", "@thi.ng/checks": "^1.5.7", "@thi.ng/errors": "^0.1.6", - "@thi.ng/rstream": "^1.11.5", + "@thi.ng/rstream": "^1.11.6", "@thi.ng/transducers": "^2.0.1" }, "keywords": [ diff --git a/packages/rstream-query/CHANGELOG.md b/packages/rstream-query/CHANGELOG.md index 9d60464a7e..18ea365f87 100644 --- a/packages/rstream-query/CHANGELOG.md +++ b/packages/rstream-query/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [0.3.38](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-query@0.3.37...@thi.ng/rstream-query@0.3.38) (2018-08-27) + + + + +**Note:** Version bump only for package @thi.ng/rstream-query + ## [0.3.37](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-query@0.3.36...@thi.ng/rstream-query@0.3.37) (2018-08-27) diff --git a/packages/rstream-query/package.json b/packages/rstream-query/package.json index 57c762f4f4..9a7000f702 100644 --- a/packages/rstream-query/package.json +++ b/packages/rstream-query/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/rstream-query", - "version": "0.3.37", + "version": "0.3.38", "description": "@thi.ng/rstream based triple store & reactive query engine", "main": "./index.js", "typings": "./index.d.ts", @@ -33,8 +33,8 @@ "@thi.ng/checks": "^1.5.7", "@thi.ng/equiv": "^0.1.7", "@thi.ng/errors": "^0.1.6", - "@thi.ng/rstream": "^1.11.5", - "@thi.ng/rstream-dot": "^0.2.38", + "@thi.ng/rstream": "^1.11.6", + "@thi.ng/rstream-dot": "^0.2.39", "@thi.ng/transducers": "^2.0.1" }, "keywords": [ diff --git a/packages/rstream/CHANGELOG.md b/packages/rstream/CHANGELOG.md index d8899af456..cc78b505b3 100644 --- a/packages/rstream/CHANGELOG.md +++ b/packages/rstream/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [1.11.6](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream@1.11.5...@thi.ng/rstream@1.11.6) (2018-08-27) + + +### Bug Fixes + +* **rstream:** Fix unbound this in method call expression ([34a97b4](https://github.com/thi-ng/umbrella/commit/34a97b4)) + + + + ## [1.11.5](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream@1.11.4...@thi.ng/rstream@1.11.5) (2018-08-27) diff --git a/packages/rstream/package.json b/packages/rstream/package.json index 8e4a029ae7..4408e87a68 100644 --- a/packages/rstream/package.json +++ b/packages/rstream/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/rstream", - "version": "1.11.5", + "version": "1.11.6", "description": "Reactive multi-tap streams, dataflow & transformation pipeline constructs", "main": "./index.js", "typings": "./index.d.ts",