diff --git a/CHANGELOG.md b/CHANGELOG.md index 45ee3fc8..a5f93cd4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,34 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.47.0](https://github.com/protectwise/troika/compare/v0.46.3...v0.47.0) (2022-12-15) + + +### Bug Fixes + +* add compatibility up to ThreeJS r127 ([03640a0](https://github.com/protectwise/troika/commit/03640a093e1b56049229420ff421317528bb583d)) +* **troika-three-text:** remove IIFEs for tree-shaking ([#224](https://github.com/protectwise/troika/issues/224)) ([2e688f0](https://github.com/protectwise/troika/commit/2e688f0248296fee46e16f58a5de7b963a4cb73b)) +* Remove incomplete ShaderFloatArray utility to fix build ([ddf712a](https://github.com/protectwise/troika/commit/ddf712af8e9ae164527dfe9cabcb2698eb809dc5)) +* **troika-three-text:** include lineGap value from the font in 'normal' line-height calculation ([c278118](https://github.com/protectwise/troika/commit/c2781182ad897a444f9502031a9626b703e85050)) +* **troika-three-text:** update Typr to fix doubled kerning in some fonts ([#196](https://github.com/protectwise/troika/issues/196)) ([1fab9a2](https://github.com/protectwise/troika/commit/1fab9a2ce739a1f26c36b737a499075a439f8980)) +* **troika-three-text:** use sTypoAscender/Descender from OS/2 font table if available ([f5c244c](https://github.com/protectwise/troika/commit/f5c244c92f9ede541b1206744aa1c7e1ff6711fc)) +* **troika-three-text:** work around Safari<15 bug using SDF canvas as a texture ([#199](https://github.com/protectwise/troika/issues/199)) ([fca9aae](https://github.com/protectwise/troika/commit/fca9aae20e7b67cbd7ac3669dd91257ec84f1997)) + + +### Features + +* raise three min version to r125 and fix BufferGeometry references ([#225](https://github.com/protectwise/troika/issues/225)) ([f2ef803](https://github.com/protectwise/troika/commit/f2ef803db7ab3d9d03de2719a2781c1c3f5122cf)) +* **three-instanced-uniforms-mesh:** add typescript definition file ([#217](https://github.com/protectwise/troika/issues/217)) ([cef3564](https://github.com/protectwise/troika/commit/cef3564441f86a79433b35124ac6063980295ab0)) +* **troika-three-text:** add 'top-cap' and 'top-ex' as keywords for anchorY ([#193](https://github.com/protectwise/troika/issues/193)) ([c6a10ae](https://github.com/protectwise/troika/commit/c6a10ae30837d26505d5614b8e15ab49f2ad4625)) +* **troika-three-text:** include capHeight and xHeight font metrics in textRenderInfo ([3459fd5](https://github.com/protectwise/troika/commit/3459fd540925d7aebad48c70c28e1e0a9b4195f0)) +* **troika-three-text:** remove deprecated totalBounds/totalBlockSize properties from textRenderInfo ([2b87308](https://github.com/protectwise/troika/commit/2b87308f8fd02552fb86fdcc81a8e949de8e5989)) +* remove custom Thenable polyfill in favor of native promises ([7af402e](https://github.com/protectwise/troika/commit/7af402e254675ca2fc182467a65d2d4f860845e4)) +* **troika-three-text:** remove long-deprecated `anchor` array property ([752e302](https://github.com/protectwise/troika/commit/752e3025cec4176aadaab2a3ca475b3fd49d572e)) + + + + + ## [0.46.3](https://github.com/protectwise/troika/compare/v0.46.2...v0.46.3) (2022-03-11) diff --git a/lerna.json b/lerna.json index 70acb66d..549ae919 100644 --- a/lerna.json +++ b/lerna.json @@ -2,7 +2,7 @@ "packages": [ "packages/*" ], - "version": "0.46.3", + "version": "0.47.0", "command": { "version": { "conventionalCommits": true diff --git a/packages/three-instanced-uniforms-mesh/CHANGELOG.md b/packages/three-instanced-uniforms-mesh/CHANGELOG.md index ee0e0f82..2ac54004 100644 --- a/packages/three-instanced-uniforms-mesh/CHANGELOG.md +++ b/packages/three-instanced-uniforms-mesh/CHANGELOG.md @@ -3,6 +3,18 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.47.0](https://github.com/protectwise/troika/compare/v0.46.3...v0.47.0) (2022-12-15) + + +### Features + +* raise three min version to r125 and fix BufferGeometry references ([#225](https://github.com/protectwise/troika/issues/225)) ([f2ef803](https://github.com/protectwise/troika/commit/f2ef803db7ab3d9d03de2719a2781c1c3f5122cf)) +* **three-instanced-uniforms-mesh:** add typescript definition file ([#217](https://github.com/protectwise/troika/issues/217)) ([cef3564](https://github.com/protectwise/troika/commit/cef3564441f86a79433b35124ac6063980295ab0)) + + + + + # [0.46.0](https://github.com/protectwise/troika/compare/v0.45.0...v0.46.0) (2022-03-05) **Note:** Version bump only for package three-instanced-uniforms-mesh diff --git a/packages/three-instanced-uniforms-mesh/package.json b/packages/three-instanced-uniforms-mesh/package.json index ce93140e..f814e851 100644 --- a/packages/three-instanced-uniforms-mesh/package.json +++ b/packages/three-instanced-uniforms-mesh/package.json @@ -1,6 +1,6 @@ { "name": "three-instanced-uniforms-mesh", - "version": "0.46.0", + "version": "0.47.0", "description": "Extension to Three.js InstancedMesh supporting per-instance uniform values", "author": "Jason Johnston ", "repository": { @@ -14,7 +14,7 @@ "module": "dist/three-instanced-uniforms-mesh.esm.js", "module:src": "src/index.js", "dependencies": { - "troika-three-utils": "^0.46.0" + "troika-three-utils": "^0.47.0" }, "peerDependencies": { "three": ">=0.125.0" diff --git a/packages/troika-2d/CHANGELOG.md b/packages/troika-2d/CHANGELOG.md index af1a0705..1ca6ef6f 100644 --- a/packages/troika-2d/CHANGELOG.md +++ b/packages/troika-2d/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.47.0](https://github.com/protectwise/troika/compare/v0.46.3...v0.47.0) (2022-12-15) + +**Note:** Version bump only for package troika-2d + + + + + # [0.46.0](https://github.com/protectwise/troika/compare/v0.45.0...v0.46.0) (2022-03-05) **Note:** Version bump only for package troika-2d diff --git a/packages/troika-2d/package.json b/packages/troika-2d/package.json index b7b08f1e..cd8e1054 100644 --- a/packages/troika-2d/package.json +++ b/packages/troika-2d/package.json @@ -1,6 +1,6 @@ { "name": "troika-2d", - "version": "0.46.0", + "version": "0.47.0", "description": "Troika 2D", "author": "Jason Johnston ", "repository": { @@ -14,6 +14,6 @@ "module": "dist/troika-2d.esm.js", "module:src": "src/index.js", "dependencies": { - "troika-core": "^0.46.0" + "troika-core": "^0.47.0" } } diff --git a/packages/troika-3d-text/CHANGELOG.md b/packages/troika-3d-text/CHANGELOG.md index cfc615e1..a97a5ce4 100644 --- a/packages/troika-3d-text/CHANGELOG.md +++ b/packages/troika-3d-text/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. +# [0.47.0](https://github.com/protectwise/troika/compare/v0.46.3...v0.47.0) (2022-12-15) + + +### Features + +* raise three min version to r125 and fix BufferGeometry references ([#225](https://github.com/protectwise/troika/issues/225)) ([f2ef803](https://github.com/protectwise/troika/commit/f2ef803db7ab3d9d03de2719a2781c1c3f5122cf)) + + + + + ## [0.46.3](https://github.com/protectwise/troika/compare/v0.46.2...v0.46.3) (2022-03-11) **Note:** Version bump only for package troika-3d-text diff --git a/packages/troika-3d-text/package.json b/packages/troika-3d-text/package.json index 1e6ba40b..96836e66 100644 --- a/packages/troika-3d-text/package.json +++ b/packages/troika-3d-text/package.json @@ -1,6 +1,6 @@ { "name": "troika-3d-text", - "version": "0.46.3", + "version": "0.47.0", "description": "SDF text for the Troika 3D scene management framework", "author": "Jason Johnston ", "repository": { @@ -14,9 +14,9 @@ "module": "dist/troika-3d-text.esm.js", "module:src": "src/index.js", "dependencies": { - "troika-3d": "^0.46.0", - "troika-three-text": "^0.46.3", - "troika-three-utils": "^0.46.0" + "troika-3d": "^0.47.0", + "troika-three-text": "^0.47.0", + "troika-three-utils": "^0.47.0" }, "peerDependencies": { "three": ">=0.125.0" diff --git a/packages/troika-3d-ui/CHANGELOG.md b/packages/troika-3d-ui/CHANGELOG.md index 4a2eecd9..c1ba5c65 100644 --- a/packages/troika-3d-ui/CHANGELOG.md +++ b/packages/troika-3d-ui/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. +# [0.47.0](https://github.com/protectwise/troika/compare/v0.46.3...v0.47.0) (2022-12-15) + + +### Features + +* raise three min version to r125 and fix BufferGeometry references ([#225](https://github.com/protectwise/troika/issues/225)) ([f2ef803](https://github.com/protectwise/troika/commit/f2ef803db7ab3d9d03de2719a2781c1c3f5122cf)) + + + + + ## [0.46.3](https://github.com/protectwise/troika/compare/v0.46.2...v0.46.3) (2022-03-11) **Note:** Version bump only for package troika-3d-ui diff --git a/packages/troika-3d-ui/package.json b/packages/troika-3d-ui/package.json index 3f9bd153..926de8e1 100644 --- a/packages/troika-3d-ui/package.json +++ b/packages/troika-3d-ui/package.json @@ -1,6 +1,6 @@ { "name": "troika-3d-ui", - "version": "0.46.3", + "version": "0.47.0", "description": "Troika 3D User Interface Toolkit", "author": "Jason Johnston ", "repository": { @@ -15,11 +15,11 @@ "module:src": "src/index.js", "dependencies": { "object-path": "^0.11.4", - "troika-3d": "^0.46.0", - "troika-3d-text": "^0.46.3", - "troika-core": "^0.46.0", - "troika-flex-layout": "^0.46.3", - "troika-three-utils": "^0.46.0" + "troika-3d": "^0.47.0", + "troika-3d-text": "^0.47.0", + "troika-core": "^0.47.0", + "troika-flex-layout": "^0.47.0", + "troika-three-utils": "^0.47.0" }, "peerDependencies": { "three": ">=0.125.0" diff --git a/packages/troika-3d/CHANGELOG.md b/packages/troika-3d/CHANGELOG.md index 111cea21..edabac56 100644 --- a/packages/troika-3d/CHANGELOG.md +++ b/packages/troika-3d/CHANGELOG.md @@ -3,6 +3,22 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.47.0](https://github.com/protectwise/troika/compare/v0.46.3...v0.47.0) (2022-12-15) + + +### Bug Fixes + +* add compatibility up to ThreeJS r127 ([03640a0](https://github.com/protectwise/troika/commit/03640a093e1b56049229420ff421317528bb583d)) + + +### Features + +* raise three min version to r125 and fix BufferGeometry references ([#225](https://github.com/protectwise/troika/issues/225)) ([f2ef803](https://github.com/protectwise/troika/commit/f2ef803db7ab3d9d03de2719a2781c1c3f5122cf)) + + + + + # [0.46.0](https://github.com/protectwise/troika/compare/v0.45.0...v0.46.0) (2022-03-05) **Note:** Version bump only for package troika-3d diff --git a/packages/troika-3d/package.json b/packages/troika-3d/package.json index 98c4317b..a49a6686 100644 --- a/packages/troika-3d/package.json +++ b/packages/troika-3d/package.json @@ -1,6 +1,6 @@ { "name": "troika-3d", - "version": "0.46.0", + "version": "0.47.0", "description": "Troika 3D", "author": "Jason Johnston ", "repository": { @@ -14,8 +14,8 @@ "module": "dist/troika-3d.esm.js", "module:src": "src/index.js", "dependencies": { - "troika-core": "^0.46.0", - "troika-three-utils": "^0.46.0" + "troika-core": "^0.47.0", + "troika-three-utils": "^0.47.0" }, "peerDependencies": { "three": ">=0.125.0" diff --git a/packages/troika-animation/CHANGELOG.md b/packages/troika-animation/CHANGELOG.md index d71443d9..5c7b661c 100644 --- a/packages/troika-animation/CHANGELOG.md +++ b/packages/troika-animation/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.47.0](https://github.com/protectwise/troika/compare/v0.46.3...v0.47.0) (2022-12-15) + +**Note:** Version bump only for package troika-animation + + + + + # [0.46.0](https://github.com/protectwise/troika/compare/v0.45.0...v0.46.0) (2022-03-05) **Note:** Version bump only for package troika-animation diff --git a/packages/troika-animation/package.json b/packages/troika-animation/package.json index e606defa..fb49b8a4 100644 --- a/packages/troika-animation/package.json +++ b/packages/troika-animation/package.json @@ -1,6 +1,6 @@ { "name": "troika-animation", - "version": "0.46.0", + "version": "0.47.0", "description": "Troika Animation Utilities", "author": "Jason Johnston ", "repository": { diff --git a/packages/troika-core/CHANGELOG.md b/packages/troika-core/CHANGELOG.md index b4cb9c1c..24a02ec8 100644 --- a/packages/troika-core/CHANGELOG.md +++ b/packages/troika-core/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.47.0](https://github.com/protectwise/troika/compare/v0.46.3...v0.47.0) (2022-12-15) + +**Note:** Version bump only for package troika-core + + + + + # [0.46.0](https://github.com/protectwise/troika/compare/v0.45.0...v0.46.0) (2022-03-05) **Note:** Version bump only for package troika-core diff --git a/packages/troika-core/package.json b/packages/troika-core/package.json index 2f86008d..5c122322 100644 --- a/packages/troika-core/package.json +++ b/packages/troika-core/package.json @@ -1,6 +1,6 @@ { "name": "troika-core", - "version": "0.46.0", + "version": "0.47.0", "description": "Troika Core", "author": "Jason Johnston ", "repository": { @@ -15,7 +15,7 @@ "module:src": "src/index.js", "dependencies": { "prop-types": "^15.6.2", - "troika-animation": "^0.46.0" + "troika-animation": "^0.47.0" }, "peerDependencies": { "react": "^16.5.2", diff --git a/packages/troika-examples/CHANGELOG.md b/packages/troika-examples/CHANGELOG.md index 704f843e..b82e4a9b 100644 --- a/packages/troika-examples/CHANGELOG.md +++ b/packages/troika-examples/CHANGELOG.md @@ -3,6 +3,23 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.47.0](https://github.com/protectwise/troika/compare/v0.46.3...v0.47.0) (2022-12-15) + + +### Bug Fixes + +* add compatibility up to ThreeJS r127 ([03640a0](https://github.com/protectwise/troika/commit/03640a093e1b56049229420ff421317528bb583d)) + + +### Features + +* raise three min version to r125 and fix BufferGeometry references ([#225](https://github.com/protectwise/troika/issues/225)) ([f2ef803](https://github.com/protectwise/troika/commit/f2ef803db7ab3d9d03de2719a2781c1c3f5122cf)) +* **troika-three-text:** add 'top-cap' and 'top-ex' as keywords for anchorY ([#193](https://github.com/protectwise/troika/issues/193)) ([c6a10ae](https://github.com/protectwise/troika/commit/c6a10ae30837d26505d5614b8e15ab49f2ad4625)) + + + + + ## [0.46.3](https://github.com/protectwise/troika/compare/v0.46.2...v0.46.3) (2022-03-11) **Note:** Version bump only for package troika-examples diff --git a/packages/troika-examples/package.json b/packages/troika-examples/package.json index 48ffdc05..80469743 100644 --- a/packages/troika-examples/package.json +++ b/packages/troika-examples/package.json @@ -1,6 +1,6 @@ { "name": "troika-examples", - "version": "0.46.3", + "version": "0.47.0", "private": true, "description": "Troika Examples", "author": "Jason Johnston ", @@ -22,15 +22,15 @@ "react-dat-gui": "^4.0.0", "react-dom": "^16.5.2", "three": "^0.147.0", - "three-instanced-uniforms-mesh": "^0.46.0", + "three-instanced-uniforms-mesh": "^0.47.0", "three-line-2d": "^1.1.6", - "troika-2d": "^0.46.0", - "troika-3d": "^0.46.0", - "troika-3d-text": "^0.46.3", - "troika-3d-ui": "^0.46.3", - "troika-animation": "^0.46.0", - "troika-core": "^0.46.0", - "troika-three-utils": "^0.46.0", - "troika-xr": "^0.46.0" + "troika-2d": "^0.47.0", + "troika-3d": "^0.47.0", + "troika-3d-text": "^0.47.0", + "troika-3d-ui": "^0.47.0", + "troika-animation": "^0.47.0", + "troika-core": "^0.47.0", + "troika-three-utils": "^0.47.0", + "troika-xr": "^0.47.0" } } diff --git a/packages/troika-flex-layout/CHANGELOG.md b/packages/troika-flex-layout/CHANGELOG.md index 956578eb..78fd82f4 100644 --- a/packages/troika-flex-layout/CHANGELOG.md +++ b/packages/troika-flex-layout/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. +# [0.47.0](https://github.com/protectwise/troika/compare/v0.46.3...v0.47.0) (2022-12-15) + + +### Features + +* remove custom Thenable polyfill in favor of native promises ([7af402e](https://github.com/protectwise/troika/commit/7af402e254675ca2fc182467a65d2d4f860845e4)) + + + + + ## [0.46.3](https://github.com/protectwise/troika/compare/v0.46.2...v0.46.3) (2022-03-11) **Note:** Version bump only for package troika-flex-layout diff --git a/packages/troika-flex-layout/package.json b/packages/troika-flex-layout/package.json index cfc18e07..6d9aa5ad 100644 --- a/packages/troika-flex-layout/package.json +++ b/packages/troika-flex-layout/package.json @@ -1,6 +1,6 @@ { "name": "troika-flex-layout", - "version": "0.46.3", + "version": "0.47.0", "description": "Utility for calculating flexbox layouts in a web worker", "author": "Jason Johnston ", "repository": { @@ -14,8 +14,8 @@ "module": "dist/troika-flex-layout.esm.js", "module:src": "src/index.js", "dependencies": { - "troika-three-text": "^0.46.3", - "troika-worker-utils": "^0.46.0" + "troika-three-text": "^0.47.0", + "troika-worker-utils": "^0.47.0" }, "devDependencies": { "terser": "^5.14.2", diff --git a/packages/troika-three-text/CHANGELOG.md b/packages/troika-three-text/CHANGELOG.md index d4eac4c0..a96da34e 100644 --- a/packages/troika-three-text/CHANGELOG.md +++ b/packages/troika-three-text/CHANGELOG.md @@ -3,6 +3,31 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.47.0](https://github.com/protectwise/troika/compare/v0.46.3...v0.47.0) (2022-12-15) + + +### Bug Fixes + +* **troika-three-text:** include lineGap value from the font in 'normal' line-height calculation ([c278118](https://github.com/protectwise/troika/commit/c2781182ad897a444f9502031a9626b703e85050)) +* **troika-three-text:** remove IIFEs for tree-shaking ([#224](https://github.com/protectwise/troika/issues/224)) ([2e688f0](https://github.com/protectwise/troika/commit/2e688f0248296fee46e16f58a5de7b963a4cb73b)) +* **troika-three-text:** update Typr to fix doubled kerning in some fonts ([#196](https://github.com/protectwise/troika/issues/196)) ([1fab9a2](https://github.com/protectwise/troika/commit/1fab9a2ce739a1f26c36b737a499075a439f8980)) +* **troika-three-text:** use sTypoAscender/Descender from OS/2 font table if available ([f5c244c](https://github.com/protectwise/troika/commit/f5c244c92f9ede541b1206744aa1c7e1ff6711fc)) +* **troika-three-text:** work around Safari<15 bug using SDF canvas as a texture ([#199](https://github.com/protectwise/troika/issues/199)) ([fca9aae](https://github.com/protectwise/troika/commit/fca9aae20e7b67cbd7ac3669dd91257ec84f1997)) + + +### Features + +* raise three min version to r125 and fix BufferGeometry references ([#225](https://github.com/protectwise/troika/issues/225)) ([f2ef803](https://github.com/protectwise/troika/commit/f2ef803db7ab3d9d03de2719a2781c1c3f5122cf)) +* **troika-three-text:** add 'top-cap' and 'top-ex' as keywords for anchorY ([#193](https://github.com/protectwise/troika/issues/193)) ([c6a10ae](https://github.com/protectwise/troika/commit/c6a10ae30837d26505d5614b8e15ab49f2ad4625)) +* **troika-three-text:** include capHeight and xHeight font metrics in textRenderInfo ([3459fd5](https://github.com/protectwise/troika/commit/3459fd540925d7aebad48c70c28e1e0a9b4195f0)) +* **troika-three-text:** remove deprecated totalBounds/totalBlockSize properties from textRenderInfo ([2b87308](https://github.com/protectwise/troika/commit/2b87308f8fd02552fb86fdcc81a8e949de8e5989)) +* remove custom Thenable polyfill in favor of native promises ([7af402e](https://github.com/protectwise/troika/commit/7af402e254675ca2fc182467a65d2d4f860845e4)) +* **troika-three-text:** remove long-deprecated `anchor` array property ([752e302](https://github.com/protectwise/troika/commit/752e3025cec4176aadaab2a3ca475b3fd49d572e)) + + + + + ## [0.46.3](https://github.com/protectwise/troika/compare/v0.46.2...v0.46.3) (2022-03-11) diff --git a/packages/troika-three-text/package.json b/packages/troika-three-text/package.json index c99bdbf2..5662f00d 100644 --- a/packages/troika-three-text/package.json +++ b/packages/troika-three-text/package.json @@ -1,6 +1,6 @@ { "name": "troika-three-text", - "version": "0.46.3", + "version": "0.47.0", "description": "SDF-based text rendering for Three.js", "author": "Jason Johnston ", "repository": { @@ -15,8 +15,8 @@ "module:src": "src/index.js", "dependencies": { "bidi-js": "^1.0.2", - "troika-three-utils": "^0.46.0", - "troika-worker-utils": "^0.46.0", + "troika-three-utils": "^0.47.0", + "troika-worker-utils": "^0.47.0", "webgl-sdf-generator": "1.1.1" }, "peerDependencies": { diff --git a/packages/troika-three-utils/CHANGELOG.md b/packages/troika-three-utils/CHANGELOG.md index f6c9e5b9..37b6216d 100644 --- a/packages/troika-three-utils/CHANGELOG.md +++ b/packages/troika-three-utils/CHANGELOG.md @@ -3,6 +3,22 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.47.0](https://github.com/protectwise/troika/compare/v0.46.3...v0.47.0) (2022-12-15) + + +### Bug Fixes + +* Remove incomplete ShaderFloatArray utility to fix build ([ddf712a](https://github.com/protectwise/troika/commit/ddf712af8e9ae164527dfe9cabcb2698eb809dc5)) + + +### Features + +* raise three min version to r125 and fix BufferGeometry references ([#225](https://github.com/protectwise/troika/issues/225)) ([f2ef803](https://github.com/protectwise/troika/commit/f2ef803db7ab3d9d03de2719a2781c1c3f5122cf)) + + + + + # [0.46.0](https://github.com/protectwise/troika/compare/v0.45.0...v0.46.0) (2022-03-05) **Note:** Version bump only for package troika-three-utils diff --git a/packages/troika-three-utils/package.json b/packages/troika-three-utils/package.json index 13f59ffd..3d8fa73c 100644 --- a/packages/troika-three-utils/package.json +++ b/packages/troika-three-utils/package.json @@ -1,6 +1,6 @@ { "name": "troika-three-utils", - "version": "0.46.0", + "version": "0.47.0", "description": "Various utilities related to Three.js", "author": "Jason Johnston ", "repository": { diff --git a/packages/troika-worker-utils/CHANGELOG.md b/packages/troika-worker-utils/CHANGELOG.md index b3770e0f..b399521a 100644 --- a/packages/troika-worker-utils/CHANGELOG.md +++ b/packages/troika-worker-utils/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. +# [0.47.0](https://github.com/protectwise/troika/compare/v0.46.3...v0.47.0) (2022-12-15) + + +### Features + +* remove custom Thenable polyfill in favor of native promises ([7af402e](https://github.com/protectwise/troika/commit/7af402e254675ca2fc182467a65d2d4f860845e4)) + + + + + # [0.46.0](https://github.com/protectwise/troika/compare/v0.45.0...v0.46.0) (2022-03-05) **Note:** Version bump only for package troika-worker-utils diff --git a/packages/troika-worker-utils/package.json b/packages/troika-worker-utils/package.json index f66d7e5a..9f1cd181 100644 --- a/packages/troika-worker-utils/package.json +++ b/packages/troika-worker-utils/package.json @@ -1,6 +1,6 @@ { "name": "troika-worker-utils", - "version": "0.46.0", + "version": "0.47.0", "description": "Utilities for executing code in Web Workers", "author": "Jason Johnston ", "repository": { diff --git a/packages/troika-xr/CHANGELOG.md b/packages/troika-xr/CHANGELOG.md index a789d472..491f2619 100644 --- a/packages/troika-xr/CHANGELOG.md +++ b/packages/troika-xr/CHANGELOG.md @@ -3,6 +3,22 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.47.0](https://github.com/protectwise/troika/compare/v0.46.3...v0.47.0) (2022-12-15) + + +### Bug Fixes + +* add compatibility up to ThreeJS r127 ([03640a0](https://github.com/protectwise/troika/commit/03640a093e1b56049229420ff421317528bb583d)) + + +### Features + +* raise three min version to r125 and fix BufferGeometry references ([#225](https://github.com/protectwise/troika/issues/225)) ([f2ef803](https://github.com/protectwise/troika/commit/f2ef803db7ab3d9d03de2719a2781c1c3f5122cf)) + + + + + # [0.46.0](https://github.com/protectwise/troika/compare/v0.45.0...v0.46.0) (2022-03-05) **Note:** Version bump only for package troika-xr diff --git a/packages/troika-xr/package.json b/packages/troika-xr/package.json index 0aa26cb1..1da677fd 100644 --- a/packages/troika-xr/package.json +++ b/packages/troika-xr/package.json @@ -1,6 +1,6 @@ { "name": "troika-xr", - "version": "0.46.0", + "version": "0.47.0", "description": "Troika XR", "author": "Jason Johnston ", "repository": { @@ -14,10 +14,10 @@ "module": "dist/troika-xr.esm.js", "module:src": "src/index.js", "dependencies": { - "troika-3d": "^0.46.0", - "troika-animation": "^0.46.0", - "troika-core": "^0.46.0", - "troika-three-utils": "^0.46.0" + "troika-3d": "^0.47.0", + "troika-animation": "^0.47.0", + "troika-core": "^0.47.0", + "troika-three-utils": "^0.47.0" }, "peerDependencies": { "three": ">=0.125.0"