diff --git a/packages/associative/CHANGELOG.md b/packages/associative/CHANGELOG.md index 57d74e8954..17dc0a3e44 100644 --- a/packages/associative/CHANGELOG.md +++ b/packages/associative/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. +## [2.1.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/associative@2.1.1...@thi.ng/associative@2.1.2) (2019-04-06) + + +### Bug Fixes + +* **associative:** fix mergeApplyMap, update other merge fns, add tests ([a0f3941](https://github.com/thi-ng/umbrella/commit/a0f3941)) + + + + + ## [2.1.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/associative@2.1.0...@thi.ng/associative@2.1.1) (2019-04-03) **Note:** Version bump only for package @thi.ng/associative diff --git a/packages/associative/package.json b/packages/associative/package.json index 56279ae20d..da7eb7f25b 100644 --- a/packages/associative/package.json +++ b/packages/associative/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/associative", - "version": "2.1.1", + "version": "2.1.2", "description": "Alternative Set & Map data type implementations with customizable equality semantics & supporting operations", "module": "./index.js", "main": "./lib/index.js", diff --git a/packages/associative/src/merge-apply.ts b/packages/associative/src/merge-apply.ts index c80d76067e..14d7220d86 100644 --- a/packages/associative/src/merge-apply.ts +++ b/packages/associative/src/merge-apply.ts @@ -1,4 +1,4 @@ -import { IObjectOf } from "@thi.ng/api"; +import { Fn, IObjectOf } from "@thi.ng/api"; import { isFunction } from "@thi.ng/checks"; import { copy } from "./utils"; @@ -10,13 +10,11 @@ import { copy } from "./utils"; */ export const mergeApplyMap = ( src: Map, - xs: Map V)> -) => { - const res: any = copy(src, Map); - for (let p of xs) { - let [k, v] = p; - isFunction(v) && (v = v(res[k])); - res.set(k, v); + xs: Map> +): Map => { + const res: Map = copy(src, Map); + for (let [k, v] of xs) { + res.set(k, isFunction(v) ? v(res.get(k)) : v); } return res; }; @@ -45,13 +43,12 @@ export const mergeApplyMap = ( */ export const mergeApplyObj = ( src: IObjectOf, - xs: IObjectOf V)> + xs: IObjectOf> ) => { - const res: any = { ...src }; + const res: IObjectOf = { ...src }; for (let k in xs) { - let v = xs[k]; - isFunction(v) && (v = v(res[k])); - res[k] = v; + const v = xs[k]; + res[k] = isFunction(v) ? v(res[k]) : v; } return res; }; diff --git a/packages/associative/src/merge-with.ts b/packages/associative/src/merge-with.ts index 85e67c341a..c876db26c4 100644 --- a/packages/associative/src/merge-with.ts +++ b/packages/associative/src/merge-with.ts @@ -9,11 +9,7 @@ export const mergeMapWith = ( const res: Map = copy(dest, Map); for (let x of xs) { for (let [k, v] of x) { - if (res.has(k)) { - res.set(k, f(res.get(k), v)); - } else { - res.set(k, v); - } + res.set(k, res.has(k) ? f(res.get(k), v) : v); } } return res; @@ -28,11 +24,7 @@ export const mergeObjWith = ( for (let x of xs) { for (let k in x) { const v = x[k]; - if (res.hasOwnProperty(k)) { - res[k] = f(dest[k], v); - } else { - res[k] = v; - } + res[k] = res.hasOwnProperty(k) ? f(dest[k], v) : v; } } return res; diff --git a/packages/associative/test/merge.ts b/packages/associative/test/merge.ts new file mode 100644 index 0000000000..5561cd49aa --- /dev/null +++ b/packages/associative/test/merge.ts @@ -0,0 +1,40 @@ +import { Fn } from "@thi.ng/api"; +import * as assert from "assert"; +import { mergeApplyMap, mergeApplyObj, mergeDeepObj } from "../src"; + +describe("mergeApply", () => { + it("map", () => { + assert.deepEqual( + mergeApplyMap( + new Map([["a", 1], ["b", 2], ["c", 3]]), + new Map>([ + ["a", (x) => x + 10], + ["b", 20], + ["d", 40] + ]) + ), + new Map([["a", 11], ["b", 20], ["c", 3], ["d", 40]]) + ); + }); + it("object", () => { + assert.deepEqual( + mergeApplyObj( + { a: 1, b: 2, c: 3 }, + { a: (x) => x + 10, b: 20, d: 40 } + ), + { a: 11, b: 20, c: 3, d: 40 } + ); + }); +}); + +describe("mergeDeepObj", () => { + it("basic", () => { + assert.deepEqual( + mergeDeepObj( + { a: { b: { c: 1 } } }, + { a: { b: { d: 2 }, e: { f: 3 } }, g: 4 } + ), + { a: { b: { c: 1, d: 2 }, e: { f: 3 } }, g: 4 } + ); + }); +}); diff --git a/packages/dgraph/CHANGELOG.md b/packages/dgraph/CHANGELOG.md index 0bcbc97920..4da9f9d213 100644 --- a/packages/dgraph/CHANGELOG.md +++ b/packages/dgraph/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.1.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/dgraph@1.1.3...@thi.ng/dgraph@1.1.4) (2019-04-06) + +**Note:** Version bump only for package @thi.ng/dgraph + + + + + ## [1.1.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/dgraph@1.1.2...@thi.ng/dgraph@1.1.3) (2019-04-03) **Note:** Version bump only for package @thi.ng/dgraph diff --git a/packages/dgraph/package.json b/packages/dgraph/package.json index 5e2780aa41..e840d9a967 100644 --- a/packages/dgraph/package.json +++ b/packages/dgraph/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/dgraph", - "version": "1.1.3", + "version": "1.1.4", "description": "Type-agnostic directed acyclic graph (DAG) & graph operations", "module": "./index.js", "main": "./lib/index.js", @@ -33,7 +33,7 @@ }, "dependencies": { "@thi.ng/api": "^6.0.1", - "@thi.ng/associative": "^2.1.1", + "@thi.ng/associative": "^2.1.2", "@thi.ng/equiv": "^1.0.5", "@thi.ng/errors": "^1.0.5", "@thi.ng/transducers": "^5.3.3" diff --git a/packages/hdom-canvas/CHANGELOG.md b/packages/hdom-canvas/CHANGELOG.md index 855f93112f..8e6a40ca43 100644 --- a/packages/hdom-canvas/CHANGELOG.md +++ b/packages/hdom-canvas/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.0.12](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdom-canvas@2.0.11...@thi.ng/hdom-canvas@2.0.12) (2019-04-05) + +**Note:** Version bump only for package @thi.ng/hdom-canvas + + + + + ## [2.0.11](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdom-canvas@2.0.10...@thi.ng/hdom-canvas@2.0.11) (2019-04-03) **Note:** Version bump only for package @thi.ng/hdom-canvas diff --git a/packages/hdom-canvas/package.json b/packages/hdom-canvas/package.json index 1ef2c9d5ab..5670263dea 100644 --- a/packages/hdom-canvas/package.json +++ b/packages/hdom-canvas/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/hdom-canvas", - "version": "2.0.11", + "version": "2.0.12", "description": "Declarative canvas scenegraph & visualization for @thi.ng/hdom", "module": "./index.js", "main": "./lib/index.js", @@ -36,7 +36,7 @@ "@thi.ng/checks": "^2.1.5", "@thi.ng/color": "^0.1.17", "@thi.ng/diff": "^3.0.6", - "@thi.ng/hdom": "^7.2.2" + "@thi.ng/hdom": "^7.2.3" }, "keywords": [ "ES6", diff --git a/packages/hdom-mock/CHANGELOG.md b/packages/hdom-mock/CHANGELOG.md index 4367b25d22..1a2a54b877 100644 --- a/packages/hdom-mock/CHANGELOG.md +++ b/packages/hdom-mock/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.11](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdom-mock@1.0.10...@thi.ng/hdom-mock@1.0.11) (2019-04-05) + +**Note:** Version bump only for package @thi.ng/hdom-mock + + + + + ## [1.0.10](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdom-mock@1.0.9...@thi.ng/hdom-mock@1.0.10) (2019-04-02) **Note:** Version bump only for package @thi.ng/hdom-mock diff --git a/packages/hdom-mock/package.json b/packages/hdom-mock/package.json index 3ce74b5c66..28ece8a613 100644 --- a/packages/hdom-mock/package.json +++ b/packages/hdom-mock/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/hdom-mock", - "version": "1.0.10", + "version": "1.0.11", "description": "Mock base implementation for @thi.ng/hdom API", "module": "./index.js", "main": "./lib/index.js", @@ -34,7 +34,7 @@ "dependencies": { "@thi.ng/api": "^6.0.1", "@thi.ng/checks": "^2.1.5", - "@thi.ng/hdom": "^7.2.2" + "@thi.ng/hdom": "^7.2.3" }, "keywords": [ "ES6", diff --git a/packages/hdom/CHANGELOG.md b/packages/hdom/CHANGELOG.md index 043c38f671..a0c28e8cd8 100644 --- a/packages/hdom/CHANGELOG.md +++ b/packages/hdom/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. +## [7.2.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdom@7.2.2...@thi.ng/hdom@7.2.3) (2019-04-05) + + +### Bug Fixes + +* **hdom:** off-by-one error when updating child offsets after removal ([beef4e9](https://github.com/thi-ng/umbrella/commit/beef4e9)) + + + + + ## [7.2.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdom@7.2.1...@thi.ng/hdom@7.2.2) (2019-04-02) **Note:** Version bump only for package @thi.ng/hdom diff --git a/packages/hdom/package.json b/packages/hdom/package.json index a4e384ce60..2f9788eba8 100644 --- a/packages/hdom/package.json +++ b/packages/hdom/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/hdom", - "version": "7.2.2", + "version": "7.2.3", "description": "Lightweight vanilla ES6 UI component trees with customizable branch-local behaviors", "module": "./index.js", "main": "./lib/index.js", diff --git a/packages/hdom/src/diff.ts b/packages/hdom/src/diff.ts index f7b592adec..1274e1e04b 100644 --- a/packages/hdom/src/diff.ts +++ b/packages/hdom/src/diff.ts @@ -116,7 +116,7 @@ export const diffTree = ( // DEBUG && console.log("remove @", offsets[idx], val); releaseTree(val); impl.removeChild(el, offsets[idx]); - for (j = prevLength; j >= idx; j--) { + for (j = prevLength; j > idx; j--) { offsets[j] = max(offsets[j] - 1, 0); } } diff --git a/packages/rstream-csp/CHANGELOG.md b/packages/rstream-csp/CHANGELOG.md index f297b16b74..ca73cb89fa 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. +## [1.0.19](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-csp@1.0.18...@thi.ng/rstream-csp@1.0.19) (2019-04-06) + +**Note:** Version bump only for package @thi.ng/rstream-csp + + + + + ## [1.0.18](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-csp@1.0.17...@thi.ng/rstream-csp@1.0.18) (2019-04-03) **Note:** Version bump only for package @thi.ng/rstream-csp diff --git a/packages/rstream-csp/package.json b/packages/rstream-csp/package.json index 478b10bd58..97dbc99b29 100644 --- a/packages/rstream-csp/package.json +++ b/packages/rstream-csp/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/rstream-csp", - "version": "1.0.18", + "version": "1.0.19", "description": "@thi.ng/csp bridge module for @thi.ng/rstream", "module": "./index.js", "main": "./lib/index.js", @@ -33,7 +33,7 @@ }, "dependencies": { "@thi.ng/csp": "^1.0.15", - "@thi.ng/rstream": "^2.3.5" + "@thi.ng/rstream": "^2.3.6" }, "keywords": [ "bridge", diff --git a/packages/rstream-dot/CHANGELOG.md b/packages/rstream-dot/CHANGELOG.md index 597da7d1e7..b051d34dd8 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. +## [1.0.19](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-dot@1.0.18...@thi.ng/rstream-dot@1.0.19) (2019-04-06) + +**Note:** Version bump only for package @thi.ng/rstream-dot + + + + + ## [1.0.18](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-dot@1.0.17...@thi.ng/rstream-dot@1.0.18) (2019-04-03) **Note:** Version bump only for package @thi.ng/rstream-dot diff --git a/packages/rstream-dot/package.json b/packages/rstream-dot/package.json index feba7a2ddd..bdec446b3f 100644 --- a/packages/rstream-dot/package.json +++ b/packages/rstream-dot/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/rstream-dot", - "version": "1.0.18", + "version": "1.0.19", "description": "Graphviz DOT conversion of @thi.ng/rstream dataflow graph topologies", "module": "./index.js", "main": "./lib/index.js", @@ -32,7 +32,7 @@ "typescript": "^3.4.1" }, "dependencies": { - "@thi.ng/rstream": "^2.3.5" + "@thi.ng/rstream": "^2.3.6" }, "keywords": [ "conversion", diff --git a/packages/rstream-gestures/CHANGELOG.md b/packages/rstream-gestures/CHANGELOG.md index 152490dd3e..075d6f7ab1 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. +## [1.0.19](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-gestures@1.0.18...@thi.ng/rstream-gestures@1.0.19) (2019-04-06) + +**Note:** Version bump only for package @thi.ng/rstream-gestures + + + + + ## [1.0.18](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-gestures@1.0.17...@thi.ng/rstream-gestures@1.0.18) (2019-04-03) **Note:** Version bump only for package @thi.ng/rstream-gestures diff --git a/packages/rstream-gestures/package.json b/packages/rstream-gestures/package.json index 5811e93cfa..bac24fdbf7 100644 --- a/packages/rstream-gestures/package.json +++ b/packages/rstream-gestures/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/rstream-gestures", - "version": "1.0.18", + "version": "1.0.19", "description": "Unified mouse, mouse wheel & single-touch event stream abstraction", "module": "./index.js", "main": "./lib/index.js", @@ -33,7 +33,7 @@ }, "dependencies": { "@thi.ng/api": "^6.0.1", - "@thi.ng/rstream": "^2.3.5", + "@thi.ng/rstream": "^2.3.6", "@thi.ng/transducers": "^5.3.3" }, "keywords": [ diff --git a/packages/rstream-graph/CHANGELOG.md b/packages/rstream-graph/CHANGELOG.md index 7a7da2d593..290f1e6d95 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. +## [3.0.19](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-graph@3.0.18...@thi.ng/rstream-graph@3.0.19) (2019-04-06) + +**Note:** Version bump only for package @thi.ng/rstream-graph + + + + + ## [3.0.18](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-graph@3.0.17...@thi.ng/rstream-graph@3.0.18) (2019-04-03) **Note:** Version bump only for package @thi.ng/rstream-graph diff --git a/packages/rstream-graph/package.json b/packages/rstream-graph/package.json index de5e5024f1..fb85e1f9b6 100644 --- a/packages/rstream-graph/package.json +++ b/packages/rstream-graph/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/rstream-graph", - "version": "3.0.18", + "version": "3.0.19", "description": "Declarative dataflow graph construction for @thi.ng/rstream", "module": "./index.js", "main": "./lib/index.js", @@ -37,7 +37,7 @@ "@thi.ng/errors": "^1.0.5", "@thi.ng/paths": "^2.0.8", "@thi.ng/resolve-map": "^4.0.9", - "@thi.ng/rstream": "^2.3.5", + "@thi.ng/rstream": "^2.3.6", "@thi.ng/transducers": "^5.3.3" }, "keywords": [ diff --git a/packages/rstream-log-file/CHANGELOG.md b/packages/rstream-log-file/CHANGELOG.md index d9330397f4..00efbb88c5 100644 --- a/packages/rstream-log-file/CHANGELOG.md +++ b/packages/rstream-log-file/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.7](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-log-file@0.1.6...@thi.ng/rstream-log-file@0.1.7) (2019-04-06) + +**Note:** Version bump only for package @thi.ng/rstream-log-file + + + + + ## [0.1.6](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-log-file@0.1.5...@thi.ng/rstream-log-file@0.1.6) (2019-04-03) **Note:** Version bump only for package @thi.ng/rstream-log-file diff --git a/packages/rstream-log-file/package.json b/packages/rstream-log-file/package.json index 887082f0ac..2226fcb516 100644 --- a/packages/rstream-log-file/package.json +++ b/packages/rstream-log-file/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/rstream-log-file", - "version": "0.1.6", + "version": "0.1.7", "description": "File output handler for structured, multilevel & hierarchical loggers based on @thi.ng/rstream", "module": "./index.js", "main": "./lib/index.js", @@ -32,7 +32,7 @@ "typescript": "^3.4.1" }, "dependencies": { - "@thi.ng/rstream": "^2.3.5" + "@thi.ng/rstream": "^2.3.6" }, "keywords": [ "append", diff --git a/packages/rstream-log/CHANGELOG.md b/packages/rstream-log/CHANGELOG.md index 7896fbac73..be43c5eaa6 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. +## [3.0.7](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-log@3.0.6...@thi.ng/rstream-log@3.0.7) (2019-04-06) + +**Note:** Version bump only for package @thi.ng/rstream-log + + + + + ## [3.0.6](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-log@3.0.5...@thi.ng/rstream-log@3.0.6) (2019-04-03) **Note:** Version bump only for package @thi.ng/rstream-log diff --git a/packages/rstream-log/package.json b/packages/rstream-log/package.json index 85632eff44..5c25a3020f 100644 --- a/packages/rstream-log/package.json +++ b/packages/rstream-log/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/rstream-log", - "version": "3.0.6", + "version": "3.0.7", "description": "Structured, multilevel & hierarchical loggers based on @thi.ng/rstream", "module": "./index.js", "main": "./lib/index.js", @@ -35,7 +35,7 @@ "@thi.ng/api": "^6.0.1", "@thi.ng/checks": "^2.1.5", "@thi.ng/errors": "^1.0.5", - "@thi.ng/rstream": "^2.3.5", + "@thi.ng/rstream": "^2.3.6", "@thi.ng/transducers": "^5.3.3" }, "keywords": [ diff --git a/packages/rstream-query/CHANGELOG.md b/packages/rstream-query/CHANGELOG.md index 9ae5b45d86..f23a804001 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. +## [1.0.19](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-query@1.0.18...@thi.ng/rstream-query@1.0.19) (2019-04-06) + +**Note:** Version bump only for package @thi.ng/rstream-query + + + + + ## [1.0.18](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-query@1.0.17...@thi.ng/rstream-query@1.0.18) (2019-04-03) **Note:** Version bump only for package @thi.ng/rstream-query diff --git a/packages/rstream-query/package.json b/packages/rstream-query/package.json index 2c1d066f1c..bd7118b02c 100644 --- a/packages/rstream-query/package.json +++ b/packages/rstream-query/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/rstream-query", - "version": "1.0.18", + "version": "1.0.19", "description": "@thi.ng/rstream based triple store & reactive query engine", "module": "./index.js", "main": "./lib/index.js", @@ -33,12 +33,12 @@ }, "dependencies": { "@thi.ng/api": "^6.0.1", - "@thi.ng/associative": "^2.1.1", + "@thi.ng/associative": "^2.1.2", "@thi.ng/checks": "^2.1.5", "@thi.ng/equiv": "^1.0.5", "@thi.ng/errors": "^1.0.5", - "@thi.ng/rstream": "^2.3.5", - "@thi.ng/rstream-dot": "^1.0.18", + "@thi.ng/rstream": "^2.3.6", + "@thi.ng/rstream-dot": "^1.0.19", "@thi.ng/transducers": "^5.3.3" }, "keywords": [ diff --git a/packages/rstream/CHANGELOG.md b/packages/rstream/CHANGELOG.md index fb412b394f..86d0fd1d42 100644 --- a/packages/rstream/CHANGELOG.md +++ b/packages/rstream/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.3.6](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream@2.3.5...@thi.ng/rstream@2.3.6) (2019-04-06) + +**Note:** Version bump only for package @thi.ng/rstream + + + + + ## [2.3.5](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream@2.3.4...@thi.ng/rstream@2.3.5) (2019-04-03) **Note:** Version bump only for package @thi.ng/rstream diff --git a/packages/rstream/package.json b/packages/rstream/package.json index 8b6cc913fe..f5a8f561c9 100644 --- a/packages/rstream/package.json +++ b/packages/rstream/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/rstream", - "version": "2.3.5", + "version": "2.3.6", "description": "Reactive multi-tap streams, dataflow & transformation pipeline constructs", "module": "./index.js", "main": "./lib/index.js", @@ -33,7 +33,7 @@ }, "dependencies": { "@thi.ng/api": "^6.0.1", - "@thi.ng/associative": "^2.1.1", + "@thi.ng/associative": "^2.1.2", "@thi.ng/atom": "^2.0.9", "@thi.ng/checks": "^2.1.5", "@thi.ng/errors": "^1.0.5", diff --git a/packages/transducers-hdom/CHANGELOG.md b/packages/transducers-hdom/CHANGELOG.md index 7a4f3aedb8..ba9647e834 100644 --- a/packages/transducers-hdom/CHANGELOG.md +++ b/packages/transducers-hdom/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.0.17](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-hdom@2.0.16...@thi.ng/transducers-hdom@2.0.17) (2019-04-05) + +**Note:** Version bump only for package @thi.ng/transducers-hdom + + + + + ## [2.0.16](https://github.com/thi-ng/umbrella/compare/@thi.ng/transducers-hdom@2.0.15...@thi.ng/transducers-hdom@2.0.16) (2019-04-03) **Note:** Version bump only for package @thi.ng/transducers-hdom diff --git a/packages/transducers-hdom/package.json b/packages/transducers-hdom/package.json index a9cb4ebf92..2eb9fa96db 100644 --- a/packages/transducers-hdom/package.json +++ b/packages/transducers-hdom/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/transducers-hdom", - "version": "2.0.16", + "version": "2.0.17", "description": "Transducer based UI updater for @thi.ng/hdom", "module": "./index.js", "main": "./lib/index.js", @@ -32,7 +32,7 @@ "typescript": "^3.4.1" }, "dependencies": { - "@thi.ng/hdom": "^7.2.2", + "@thi.ng/hdom": "^7.2.3", "@thi.ng/hiccup": "^3.1.6", "@thi.ng/transducers": "^5.3.3" },