From 75daa066ff6ca34f1845dc54cc7e994c3272ffec Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 10 Oct 2024 15:09:21 +0000 Subject: [PATCH] chore: release 10.13.0 --- .release-please-manifest.json | 32 +-- CHANGELOG.md | 12 + configuration/eslint-config/CHANGELOG.md | 7 + configuration/eslint-config/package.json | 2 +- configuration/jest-config/CHANGELOG.md | 7 + configuration/jest-config/package.json | 2 +- configuration/ts-config/CHANGELOG.md | 7 + configuration/ts-config/package.json | 2 +- package-lock.json | 254 +++++++++++----------- package.json | 2 +- packages/components/CHANGELOG.md | 19 ++ packages/components/package.json | 12 +- packages/core-util/CHANGELOG.md | 17 ++ packages/core-util/package.json | 8 +- packages/core/CHANGELOG.md | 16 ++ packages/core/package.json | 8 +- packages/dashboard/CHANGELOG.md | 23 ++ packages/dashboard/package.json | 20 +- packages/doc-site/CHANGELOG.md | 18 ++ packages/doc-site/package.json | 10 +- packages/react-components/CHANGELOG.md | 24 ++ packages/react-components/package.json | 22 +- packages/related-table/CHANGELOG.md | 16 ++ packages/related-table/package.json | 8 +- packages/scene-composer/CHANGELOG.md | 19 ++ packages/scene-composer/package.json | 12 +- packages/source-iotsitewise/CHANGELOG.md | 20 ++ packages/source-iotsitewise/package.json | 14 +- packages/source-iottwinmaker/CHANGELOG.md | 18 ++ packages/source-iottwinmaker/package.json | 10 +- packages/testing-util/CHANGELOG.md | 17 ++ packages/testing-util/package.json | 8 +- packages/tools-iottwinmaker/CHANGELOG.md | 7 + packages/tools-iottwinmaker/package.json | 2 +- 34 files changed, 461 insertions(+), 214 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 86c4f98fd..e0ec6626e 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,18 +1,18 @@ { - "packages/components": "10.12.2", - "packages/core": "10.12.2", - "packages/dashboard": "10.12.2", - "packages/doc-site": "10.12.2", - "packages/core-util": "10.12.2", - "packages/react-components": "10.12.2", - "packages/related-table": "10.12.2", - "packages/scene-composer": "10.12.2", - "packages/source-iotsitewise": "10.12.2", - "packages/source-iottwinmaker": "10.12.2", - ".": "10.12.2", - "configuration/jest-config": "10.12.2", - "packages/testing-util": "10.12.2", - "configuration/ts-config": "10.12.2", - "configuration/eslint-config": "10.12.2", - "packages/tools-iottwinmaker": "10.12.2" + "packages/components": "10.13.0", + "packages/core": "10.13.0", + "packages/dashboard": "10.13.0", + "packages/doc-site": "10.13.0", + "packages/core-util": "10.13.0", + "packages/react-components": "10.13.0", + "packages/related-table": "10.13.0", + "packages/scene-composer": "10.13.0", + "packages/source-iotsitewise": "10.13.0", + "packages/source-iottwinmaker": "10.13.0", + ".": "10.13.0", + "configuration/jest-config": "10.13.0", + "packages/testing-util": "10.13.0", + "configuration/ts-config": "10.13.0", + "configuration/eslint-config": "10.13.0", + "packages/tools-iottwinmaker": "10.13.0" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index d168db28b..73fac228f 100644 --- a/CHANGELOG.md +++ b/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. +## [10.13.0](https://github.com/awslabs/iot-app-kit/compare/root-v10.12.2...root-v10.13.0) (2024-10-10) + + +### Features + +* **draco:** setup support for draco compressed files ([cc0d4e4](https://github.com/awslabs/iot-app-kit/commit/cc0d4e4a74232c856100a6781354342a669f5fd0)) + + +### Bug Fixes + +* **imports:** move luxon dependency to right package ([31235da](https://github.com/awslabs/iot-app-kit/commit/31235da4b31e49ec0fc0f1ec21f649cf7af7e253)) + ## [10.12.2](https://github.com/awslabs/iot-app-kit/compare/root-v10.12.1...root-v10.12.2) (2024-09-17) diff --git a/configuration/eslint-config/CHANGELOG.md b/configuration/eslint-config/CHANGELOG.md index 80a4ff5dd..b07ab1ea7 100644 --- a/configuration/eslint-config/CHANGELOG.md +++ b/configuration/eslint-config/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [10.13.0](https://github.com/awslabs/iot-app-kit/compare/eslint-config-v10.12.2...eslint-config-v10.13.0) (2024-10-10) + + +### Miscellaneous Chores + +* **eslint-config:** Synchronize iot-app-kit versions + ## [10.12.2](https://github.com/awslabs/iot-app-kit/compare/eslint-config-v10.12.1...eslint-config-v10.12.2) (2024-09-17) diff --git a/configuration/eslint-config/package.json b/configuration/eslint-config/package.json index 9b2fb83e9..18c6ec089 100644 --- a/configuration/eslint-config/package.json +++ b/configuration/eslint-config/package.json @@ -2,7 +2,7 @@ "name": "eslint-config-iot-app-kit", "main": "index.js", "private": true, - "version": "10.12.2", + "version": "10.13.0", "dependencies": { "@typescript-eslint/eslint-plugin": "^5.60.0", "@typescript-eslint/parser": "^5.62.0", diff --git a/configuration/jest-config/CHANGELOG.md b/configuration/jest-config/CHANGELOG.md index 61bfade97..68b7f2cf9 100644 --- a/configuration/jest-config/CHANGELOG.md +++ b/configuration/jest-config/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [10.13.0](https://github.com/awslabs/iot-app-kit/compare/jest-config-v10.12.2...jest-config-v10.13.0) (2024-10-10) + + +### Miscellaneous Chores + +* **jest-config:** Synchronize iot-app-kit versions + ## [10.12.2](https://github.com/awslabs/iot-app-kit/compare/jest-config-v10.12.1...jest-config-v10.12.2) (2024-09-17) diff --git a/configuration/jest-config/package.json b/configuration/jest-config/package.json index e615b69ce..c55c8f716 100644 --- a/configuration/jest-config/package.json +++ b/configuration/jest-config/package.json @@ -1,6 +1,6 @@ { "name": "@iot-app-kit/jest-config", - "version": "10.12.2", + "version": "10.13.0", "main": "index.ts", "private": true, "publishConfig": { diff --git a/configuration/ts-config/CHANGELOG.md b/configuration/ts-config/CHANGELOG.md index e91f2c90e..608d26aaf 100644 --- a/configuration/ts-config/CHANGELOG.md +++ b/configuration/ts-config/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [10.13.0](https://github.com/awslabs/iot-app-kit/compare/ts-config-v10.12.2...ts-config-v10.13.0) (2024-10-10) + + +### Miscellaneous Chores + +* **ts-config:** Synchronize iot-app-kit versions + ## [10.12.2](https://github.com/awslabs/iot-app-kit/compare/ts-config-v10.12.1...ts-config-v10.12.2) (2024-09-17) diff --git a/configuration/ts-config/package.json b/configuration/ts-config/package.json index 89ceccf59..bf0cfdecd 100644 --- a/configuration/ts-config/package.json +++ b/configuration/ts-config/package.json @@ -1,6 +1,6 @@ { "name": "@iot-app-kit/ts-config", - "version": "10.12.2", + "version": "10.13.0", "type": "module", "private": true, "files": [ diff --git a/package-lock.json b/package-lock.json index 28cef0a00..b32d2a638 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "iot-app-kit", - "version": "10.12.2", + "version": "10.13.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "iot-app-kit", - "version": "10.12.2", + "version": "10.13.0", "license": "Apache-2.0", "workspaces": [ "examples/*", @@ -45,7 +45,7 @@ }, "configuration/eslint-config": { "name": "eslint-config-iot-app-kit", - "version": "10.12.2", + "version": "10.13.0", "dependencies": { "@typescript-eslint/eslint-plugin": "^5.60.0", "@typescript-eslint/parser": "^5.62.0", @@ -83,11 +83,11 @@ }, "configuration/jest-config": { "name": "@iot-app-kit/jest-config", - "version": "10.12.2" + "version": "10.13.0" }, "configuration/ts-config": { "name": "@iot-app-kit/ts-config", - "version": "10.12.2" + "version": "10.13.0" }, "examples/react-app": { "version": "0.1.0", @@ -70962,28 +70962,28 @@ }, "packages/components": { "name": "@iot-app-kit/components", - "version": "10.12.2", + "version": "10.13.0", "license": "Apache-2.0", "dependencies": { "@awsui/collection-hooks": "^1.0.51", "@awsui/components-react": "^3.0.0", "@awsui/design-tokens": "^3.0.41", - "@iot-app-kit/core": "10.12.2", - "@iot-app-kit/related-table": "10.12.2", + "@iot-app-kit/core": "10.13.0", + "@iot-app-kit/related-table": "10.13.0", "@stencil/core": "^2.7.0", "@synchro-charts/core": "7.2.0", "styled-components": "^5.3.11" }, "devDependencies": { - "@iot-app-kit/source-iotsitewise": "10.12.2", - "@iot-app-kit/testing-util": "10.12.2", + "@iot-app-kit/source-iotsitewise": "10.13.0", + "@iot-app-kit/testing-util": "10.13.0", "@rollup/plugin-replace": "^5.0.2", "@stencil/router": "^1.0.1", "@types/jest": "^27.0.3", "@types/react": "^18.2.12", "@types/react-dom": "^18.2.5", "@types/uuid": "^9.0.2", - "eslint-config-iot-app-kit": "10.12.2", + "eslint-config-iot-app-kit": "10.13.0", "flush-promises": "^1.0.2", "jest": "^27.0.3", "jest-cli": "^27.4.5", @@ -71163,7 +71163,7 @@ }, "packages/core": { "name": "@iot-app-kit/core", - "version": "10.12.2", + "version": "10.13.0", "license": "Apache-2.0", "dependencies": { "d3-array": "^3.2.4", @@ -71174,12 +71174,12 @@ "uuid": "^9.0.0" }, "devDependencies": { - "@iot-app-kit/jest-config": "10.12.2", - "@iot-app-kit/ts-config": "10.12.2", + "@iot-app-kit/jest-config": "10.13.0", + "@iot-app-kit/ts-config": "10.13.0", "@types/d3-array": "^3.0.5", "@types/jest": "^29.4.0", "@types/uuid": "^9.0.2", - "eslint-config-iot-app-kit": "10.12.2", + "eslint-config-iot-app-kit": "10.13.0", "flush-promises": "^1.0.2", "jest": "^29.5.0", "jest-environment-jsdom": "^29.5.0", @@ -71193,16 +71193,16 @@ }, "packages/core-util": { "name": "@iot-app-kit/core-util", - "version": "10.12.2", + "version": "10.13.0", "license": "Apache-2.0", "dependencies": { - "@iot-app-kit/core": "10.12.2", + "@iot-app-kit/core": "10.13.0", "lodash.difference": "4.5.0" }, "devDependencies": { "@aws-sdk/types": "^3.310.0", - "@iot-app-kit/jest-config": "10.12.2", - "@iot-app-kit/ts-config": "10.12.2", + "@iot-app-kit/jest-config": "10.13.0", + "@iot-app-kit/ts-config": "10.13.0", "@types/jest": "^29.4.0", "@types/lodash.difference": "4.5.9", "jest": "^29.5.0", @@ -72124,15 +72124,15 @@ }, "packages/dashboard": { "name": "@iot-app-kit/dashboard", - "version": "10.12.2", + "version": "10.13.0", "license": "Apache-2.0", "dependencies": { "@iot-app-kit/charts-core": "2.1.2", - "@iot-app-kit/components": "10.12.2", - "@iot-app-kit/core": "10.12.2", - "@iot-app-kit/core-util": "10.12.2", - "@iot-app-kit/react-components": "10.12.2", - "@iot-app-kit/source-iotsitewise": "10.12.2", + "@iot-app-kit/components": "10.13.0", + "@iot-app-kit/core": "10.13.0", + "@iot-app-kit/core-util": "10.13.0", + "@iot-app-kit/react-components": "10.13.0", + "@iot-app-kit/source-iotsitewise": "10.13.0", "@popperjs/core": "^2.11.8", "@tanstack/react-query": "^4.29.15", "aws-sdk-client-mock": "^3.0.0", @@ -72157,9 +72157,9 @@ }, "devDependencies": { "@faker-js/faker": "^8.2.0", - "@iot-app-kit/jest-config": "10.12.2", - "@iot-app-kit/testing-util": "10.12.2", - "@iot-app-kit/ts-config": "10.12.2", + "@iot-app-kit/jest-config": "10.13.0", + "@iot-app-kit/testing-util": "10.13.0", + "@iot-app-kit/ts-config": "10.13.0", "@reduxjs/toolkit": "^1.9.5", "@rollup/plugin-commonjs": "^24.1.0", "@rollup/plugin-image": "^3.0.2", @@ -72188,7 +72188,7 @@ "@types/validator": "^13.12.0", "css-loader": "6.8.1", "dotenv": "^16.3.1", - "eslint-config-iot-app-kit": "10.12.2", + "eslint-config-iot-app-kit": "10.13.0", "eslint-plugin-jsx-a11y": "^6.8.0", "jest": "^29.5.0", "jest-environment-jsdom": "^29.5.0", @@ -73013,13 +73013,13 @@ }, "packages/doc-site": { "name": "@iot-app-kit/doc-site", - "version": "10.12.2", + "version": "10.13.0", "dependencies": { - "@iot-app-kit/core": "^10.12.2", - "@iot-app-kit/react-components": "^10.12.2" + "@iot-app-kit/core": "^10.13.0", + "@iot-app-kit/react-components": "^10.13.0" }, "devDependencies": { - "@iot-app-kit/testing-util": "^10.12.2", + "@iot-app-kit/testing-util": "^10.13.0", "@storybook/addon-essentials": "^7.6.6", "@storybook/addon-interactions": "^7.6.6", "@storybook/addon-links": "^7.6.6", @@ -73031,7 +73031,7 @@ "@storybook/react-webpack5": "^7.6.6", "@storybook/test": "^7.6.6", "@storybook/theming": "^7.6.6", - "eslint-config-iot-app-kit": "^10.12.2", + "eslint-config-iot-app-kit": "^10.13.0", "prop-types": "^15.8.1", "react": "^18.2.0", "react-dom": "^18.2.0", @@ -74346,7 +74346,7 @@ }, "packages/eslint-config": { "name": "eslint-config-iot-app-kit", - "version": "10.12.2", + "version": "10.13.0", "extraneous": true, "dependencies": { "@typescript-eslint/eslint-plugin": "^5.30.6", @@ -74952,7 +74952,7 @@ }, "packages/react-components": { "name": "@iot-app-kit/react-components", - "version": "10.12.2", + "version": "10.13.0", "license": "Apache-2.0", "dependencies": { "@cloudscape-design/collection-hooks": "1.0.36", @@ -74960,10 +74960,10 @@ "@cloudscape-design/design-tokens": "3.0.34", "@iot-app-kit/charts": "2.1.2", "@iot-app-kit/charts-core": "2.1.2", - "@iot-app-kit/components": "10.12.2", - "@iot-app-kit/core": "10.12.2", - "@iot-app-kit/core-util": "10.12.2", - "@iot-app-kit/source-iottwinmaker": "10.12.2", + "@iot-app-kit/components": "10.13.0", + "@iot-app-kit/core": "10.13.0", + "@iot-app-kit/core-util": "10.13.0", + "@iot-app-kit/source-iottwinmaker": "10.13.0", "@tanstack/react-query": "^5.32.1", "color": "^4.2.3", "copy-to-clipboard": "^3.3.3", @@ -75003,11 +75003,11 @@ "zustand": "^4.3.9" }, "devDependencies": { - "@iot-app-kit/core": "10.12.2", - "@iot-app-kit/jest-config": "10.12.2", - "@iot-app-kit/source-iotsitewise": "10.12.2", - "@iot-app-kit/testing-util": "10.12.2", - "@iot-app-kit/ts-config": "10.12.2", + "@iot-app-kit/core": "10.13.0", + "@iot-app-kit/jest-config": "10.13.0", + "@iot-app-kit/source-iotsitewise": "10.13.0", + "@iot-app-kit/testing-util": "10.13.0", + "@iot-app-kit/ts-config": "10.13.0", "@jest/globals": "^29.5.0", "@storybook/addon-essentials": "^6.5.16", "@storybook/addon-links": "^6.5.16", @@ -75047,7 +75047,7 @@ "babel-plugin-formatjs": "10.5.3", "copyfiles": "^2.4.1", "cytoscape": "^3.25.0", - "eslint-config-iot-app-kit": "10.12.2", + "eslint-config-iot-app-kit": "10.13.0", "eslint-plugin-jsx-a11y": "^6.8.0", "flush-promises": "^1.0.2", "jest": "^29.5.0", @@ -76030,7 +76030,7 @@ }, "packages/related-table": { "name": "@iot-app-kit/related-table", - "version": "10.12.2", + "version": "10.13.0", "license": "Apache-2.0", "dependencies": { "uuid": "^9.0.0" @@ -76039,8 +76039,8 @@ "@awsui/collection-hooks": "^1.0.51", "@awsui/components-react": "^3.0.0", "@awsui/design-tokens": "^3.0.41", - "@iot-app-kit/jest-config": "10.12.2", - "@iot-app-kit/ts-config": "10.12.2", + "@iot-app-kit/jest-config": "10.13.0", + "@iot-app-kit/ts-config": "10.13.0", "@storybook/addon-essentials": "^6.5.16", "@storybook/addon-links": "^6.5.16", "@storybook/addons": "^6.5.16", @@ -76051,7 +76051,7 @@ "@types/react-dom": "^18.2.5", "@types/styled-components": "^5.1.26", "@types/uuid": "^9.0.2", - "eslint-config-iot-app-kit": "10.12.2", + "eslint-config-iot-app-kit": "10.13.0", "jest": "^29.5.0", "jest-environment-jsdom": "^29.5.0", "jest-extended": "^3.2.4", @@ -76526,7 +76526,7 @@ }, "packages/scene-composer": { "name": "@iot-app-kit/scene-composer", - "version": "10.12.2", + "version": "10.13.0", "license": "Apache-2.0", "dependencies": { "@aws-sdk/client-iottwinmaker": "3.589.0", @@ -76534,10 +76534,10 @@ "@fortawesome/fontawesome-svg-core": "^6.4.2", "@fortawesome/free-solid-svg-icons": "^6.4.2", "@fortawesome/react-fontawesome": "^0.2.0", - "@iot-app-kit/core": "10.12.2", - "@iot-app-kit/react-components": "10.12.2", - "@iot-app-kit/related-table": "10.12.2", - "@iot-app-kit/source-iottwinmaker": "10.12.2", + "@iot-app-kit/core": "10.13.0", + "@iot-app-kit/react-components": "10.13.0", + "@iot-app-kit/related-table": "10.13.0", + "@iot-app-kit/source-iottwinmaker": "10.13.0", "@matterport/r3f": "0.2.7", "@matterport/webcomponent": "0.1.35", "@react-three/drei": "9.56.27", @@ -76611,7 +76611,7 @@ "babel-jest": "^29.6.4", "babel-plugin-formatjs": "10.5.3", "copyfiles": "^2.4.1", - "eslint-config-iot-app-kit": "10.12.2", + "eslint-config-iot-app-kit": "10.13.0", "husky": "8.0.3", "jest": "^29.7.0", "jest-coverage-ratchet": "^0.2.3", @@ -78901,11 +78901,11 @@ }, "packages/source-iotsitewise": { "name": "@iot-app-kit/source-iotsitewise", - "version": "10.12.2", + "version": "10.13.0", "license": "Apache-2.0", "dependencies": { - "@iot-app-kit/core": "10.12.2", - "@iot-app-kit/core-util": "10.12.2", + "@iot-app-kit/core": "10.13.0", + "@iot-app-kit/core-util": "10.13.0", "@synchro-charts/core": "7.2.0", "dataloader": "^2.2.2", "lodash.isequal": "^4.5.0", @@ -78915,14 +78915,14 @@ }, "devDependencies": { "@aws-sdk/types": "^3.310.0", - "@iot-app-kit/jest-config": "10.12.2", - "@iot-app-kit/testing-util": "10.12.2", - "@iot-app-kit/ts-config": "10.12.2", + "@iot-app-kit/jest-config": "10.13.0", + "@iot-app-kit/testing-util": "10.13.0", + "@iot-app-kit/ts-config": "10.13.0", "@types/jest": "^29.4.0", "@types/lodash.isequal": "^4.5.6", "@types/lodash.merge": "^4.6.7", "@types/lodash.uniqwith": "^4.5.7", - "eslint-config-iot-app-kit": "10.12.2", + "eslint-config-iot-app-kit": "10.13.0", "flush-promises": "^1.0.2", "jest": "^29.5.0", "jest-environment-jsdom": "^29.5.0", @@ -79383,7 +79383,7 @@ }, "packages/source-iottwinmaker": { "name": "@iot-app-kit/source-iottwinmaker", - "version": "10.12.2", + "version": "10.13.0", "license": "Apache-2.0", "dependencies": { "@aws-sdk/client-iotsitewise": "3.456.0", @@ -79393,19 +79393,19 @@ "@aws-sdk/client-s3": "3.335.0", "@aws-sdk/client-secrets-manager": "3.353.0", "@aws-sdk/url-parser": "3.374.0", - "@iot-app-kit/core": "10.12.2", + "@iot-app-kit/core": "10.13.0", "@tanstack/query-core": "^4.29.15", "lodash": "^4.17.21", "rxjs": "^7.8.1" }, "devDependencies": { "@aws-sdk/types": "^3.310.0", - "@iot-app-kit/jest-config": "10.12.2", - "@iot-app-kit/ts-config": "10.12.2", + "@iot-app-kit/jest-config": "10.13.0", + "@iot-app-kit/ts-config": "10.13.0", "@types/jest": "^29.4.0", "@types/lodash": "^4.14.195", "aws-sdk-client-mock": "^1.0.0", - "eslint-config-iot-app-kit": "10.12.2", + "eslint-config-iot-app-kit": "10.13.0", "flush-promises": "^1.0.2", "jest": "^29.5.0", "jest-environment-jsdom": "^29.5.0", @@ -79895,22 +79895,22 @@ }, "packages/testing-util": { "name": "@iot-app-kit/testing-util", - "version": "10.12.2", + "version": "10.13.0", "license": "Apache-2.0", "dependencies": { "@aws-sdk/client-iot-events": "3.354.0", "@aws-sdk/client-iotsitewise": "3.456.0", - "@iot-app-kit/core": "10.12.2", + "@iot-app-kit/core": "10.13.0", "parse-duration": "^1.1.0" }, "devDependencies": { - "@iot-app-kit/ts-config": "^10.12.2", - "eslint-config-iot-app-kit": "^10.12.2" + "@iot-app-kit/ts-config": "^10.13.0", + "eslint-config-iot-app-kit": "^10.13.0" } }, "packages/tools-iottwinmaker": { "name": "@iot-app-kit/tools-iottwinmaker", - "version": "10.12.2", + "version": "10.13.0", "dependencies": { "@aws-sdk/client-cloudformation": "^3.376.0", "@aws-sdk/client-iam": "^3.363.0", @@ -91730,10 +91730,10 @@ "@awsui/collection-hooks": "^1.0.51", "@awsui/components-react": "^3.0.0", "@awsui/design-tokens": "^3.0.41", - "@iot-app-kit/core": "10.12.2", - "@iot-app-kit/related-table": "10.12.2", - "@iot-app-kit/source-iotsitewise": "10.12.2", - "@iot-app-kit/testing-util": "10.12.2", + "@iot-app-kit/core": "10.13.0", + "@iot-app-kit/related-table": "10.13.0", + "@iot-app-kit/source-iotsitewise": "10.13.0", + "@iot-app-kit/testing-util": "10.13.0", "@rollup/plugin-replace": "^5.0.2", "@stencil/core": "^2.7.0", "@stencil/router": "^1.0.1", @@ -91742,7 +91742,7 @@ "@types/react": "^18.2.12", "@types/react-dom": "^18.2.5", "@types/uuid": "^9.0.2", - "eslint-config-iot-app-kit": "10.12.2", + "eslint-config-iot-app-kit": "10.13.0", "flush-promises": "^1.0.2", "jest": "^27.0.3", "jest-cli": "^27.4.5", @@ -91868,13 +91868,13 @@ "@iot-app-kit/core": { "version": "file:packages/core", "requires": { - "@iot-app-kit/jest-config": "10.12.2", - "@iot-app-kit/ts-config": "10.12.2", + "@iot-app-kit/jest-config": "10.13.0", + "@iot-app-kit/ts-config": "10.13.0", "@types/d3-array": "^3.0.5", "@types/jest": "^29.4.0", "@types/uuid": "^9.0.2", "d3-array": "^3.2.4", - "eslint-config-iot-app-kit": "10.12.2", + "eslint-config-iot-app-kit": "10.13.0", "flush-promises": "^1.0.2", "intervals-fn": "^3.0.3", "jest": "^29.5.0", @@ -92207,9 +92207,9 @@ "version": "file:packages/core-util", "requires": { "@aws-sdk/types": "^3.310.0", - "@iot-app-kit/core": "10.12.2", - "@iot-app-kit/jest-config": "10.12.2", - "@iot-app-kit/ts-config": "10.12.2", + "@iot-app-kit/core": "10.13.0", + "@iot-app-kit/jest-config": "10.13.0", + "@iot-app-kit/ts-config": "10.13.0", "@types/jest": "^29.4.0", "@types/lodash.difference": "4.5.9", "jest": "^29.5.0", @@ -92587,14 +92587,14 @@ "requires": { "@faker-js/faker": "^8.2.0", "@iot-app-kit/charts-core": "2.1.2", - "@iot-app-kit/components": "10.12.2", - "@iot-app-kit/core": "10.12.2", - "@iot-app-kit/core-util": "10.12.2", - "@iot-app-kit/jest-config": "10.12.2", - "@iot-app-kit/react-components": "10.12.2", - "@iot-app-kit/source-iotsitewise": "10.12.2", - "@iot-app-kit/testing-util": "10.12.2", - "@iot-app-kit/ts-config": "10.12.2", + "@iot-app-kit/components": "10.13.0", + "@iot-app-kit/core": "10.13.0", + "@iot-app-kit/core-util": "10.13.0", + "@iot-app-kit/jest-config": "10.13.0", + "@iot-app-kit/react-components": "10.13.0", + "@iot-app-kit/source-iotsitewise": "10.13.0", + "@iot-app-kit/testing-util": "10.13.0", + "@iot-app-kit/ts-config": "10.13.0", "@popperjs/core": "^2.11.8", "@reduxjs/toolkit": "^1.9.5", "@rollup/plugin-commonjs": "^24.1.0", @@ -92628,7 +92628,7 @@ "css-loader": "6.8.1", "dompurify": "^3.1.6", "dotenv": "^16.3.1", - "eslint-config-iot-app-kit": "10.12.2", + "eslint-config-iot-app-kit": "10.13.0", "eslint-plugin-jsx-a11y": "^6.8.0", "is-hotkey": "^0.2.0", "jest": "^29.5.0", @@ -93254,9 +93254,9 @@ "@iot-app-kit/doc-site": { "version": "file:packages/doc-site", "requires": { - "@iot-app-kit/core": "^10.12.2", - "@iot-app-kit/react-components": "^10.12.2", - "@iot-app-kit/testing-util": "^10.12.2", + "@iot-app-kit/core": "^10.13.0", + "@iot-app-kit/react-components": "^10.13.0", + "@iot-app-kit/testing-util": "^10.13.0", "@storybook/addon-essentials": "^7.6.6", "@storybook/addon-interactions": "^7.6.6", "@storybook/addon-links": "^7.6.6", @@ -93268,7 +93268,7 @@ "@storybook/react-webpack5": "^7.6.6", "@storybook/test": "^7.6.6", "@storybook/theming": "^7.6.6", - "eslint-config-iot-app-kit": "^10.12.2", + "eslint-config-iot-app-kit": "^10.13.0", "prop-types": "^15.8.1", "react": "^18.2.0", "react-dom": "^18.2.0", @@ -94557,14 +94557,14 @@ "@cloudscape-design/design-tokens": "3.0.34", "@iot-app-kit/charts": "2.1.2", "@iot-app-kit/charts-core": "2.1.2", - "@iot-app-kit/components": "10.12.2", - "@iot-app-kit/core": "10.12.2", - "@iot-app-kit/core-util": "10.12.2", - "@iot-app-kit/jest-config": "10.12.2", - "@iot-app-kit/source-iotsitewise": "10.12.2", - "@iot-app-kit/source-iottwinmaker": "10.12.2", - "@iot-app-kit/testing-util": "10.12.2", - "@iot-app-kit/ts-config": "10.12.2", + "@iot-app-kit/components": "10.13.0", + "@iot-app-kit/core": "10.13.0", + "@iot-app-kit/core-util": "10.13.0", + "@iot-app-kit/jest-config": "10.13.0", + "@iot-app-kit/source-iotsitewise": "10.13.0", + "@iot-app-kit/source-iottwinmaker": "10.13.0", + "@iot-app-kit/testing-util": "10.13.0", + "@iot-app-kit/ts-config": "10.13.0", "@jest/globals": "^29.5.0", "@storybook/addon-essentials": "^6.5.16", "@storybook/addon-links": "^6.5.16", @@ -94615,7 +94615,7 @@ "date-fns-tz": "^2.0.1", "dompurify": "3.0.5", "echarts": "^5.4.3", - "eslint-config-iot-app-kit": "10.12.2", + "eslint-config-iot-app-kit": "10.13.0", "eslint-plugin-jsx-a11y": "^6.8.0", "flush-promises": "^1.0.2", "is-hotkey": "^0.2.0", @@ -95347,8 +95347,8 @@ "@awsui/collection-hooks": "^1.0.51", "@awsui/components-react": "^3.0.0", "@awsui/design-tokens": "^3.0.41", - "@iot-app-kit/jest-config": "10.12.2", - "@iot-app-kit/ts-config": "10.12.2", + "@iot-app-kit/jest-config": "10.13.0", + "@iot-app-kit/ts-config": "10.13.0", "@storybook/addon-essentials": "^6.5.16", "@storybook/addon-links": "^6.5.16", "@storybook/addons": "^6.5.16", @@ -95359,7 +95359,7 @@ "@types/react-dom": "^18.2.5", "@types/styled-components": "^5.1.26", "@types/uuid": "^9.0.2", - "eslint-config-iot-app-kit": "10.12.2", + "eslint-config-iot-app-kit": "10.13.0", "jest": "^29.5.0", "jest-environment-jsdom": "^29.5.0", "jest-extended": "^3.2.4", @@ -95722,10 +95722,10 @@ "@fortawesome/fontawesome-svg-core": "^6.4.2", "@fortawesome/free-solid-svg-icons": "^6.4.2", "@fortawesome/react-fontawesome": "^0.2.0", - "@iot-app-kit/core": "10.12.2", - "@iot-app-kit/react-components": "10.12.2", - "@iot-app-kit/related-table": "10.12.2", - "@iot-app-kit/source-iottwinmaker": "10.12.2", + "@iot-app-kit/core": "10.13.0", + "@iot-app-kit/react-components": "10.13.0", + "@iot-app-kit/related-table": "10.13.0", + "@iot-app-kit/source-iottwinmaker": "10.13.0", "@matterport/r3f": "0.2.7", "@matterport/webcomponent": "0.1.35", "@react-spring/three": "^9.7.2", @@ -95763,7 +95763,7 @@ "babel-plugin-formatjs": "10.5.3", "copyfiles": "^2.4.1", "debug": "^4.3.4", - "eslint-config-iot-app-kit": "10.12.2", + "eslint-config-iot-app-kit": "10.13.0", "husky": "8.0.3", "immer": "^9.0.21", "is-absolute-url": "^4.0.1", @@ -97464,18 +97464,18 @@ "version": "file:packages/source-iotsitewise", "requires": { "@aws-sdk/types": "^3.310.0", - "@iot-app-kit/core": "10.12.2", - "@iot-app-kit/core-util": "10.12.2", - "@iot-app-kit/jest-config": "10.12.2", - "@iot-app-kit/testing-util": "10.12.2", - "@iot-app-kit/ts-config": "10.12.2", + "@iot-app-kit/core": "10.13.0", + "@iot-app-kit/core-util": "10.13.0", + "@iot-app-kit/jest-config": "10.13.0", + "@iot-app-kit/testing-util": "10.13.0", + "@iot-app-kit/ts-config": "10.13.0", "@synchro-charts/core": "7.2.0", "@types/jest": "^29.4.0", "@types/lodash.isequal": "^4.5.6", "@types/lodash.merge": "^4.6.7", "@types/lodash.uniqwith": "^4.5.7", "dataloader": "^2.2.2", - "eslint-config-iot-app-kit": "10.12.2", + "eslint-config-iot-app-kit": "10.13.0", "flush-promises": "^1.0.2", "jest": "^29.5.0", "jest-environment-jsdom": "^29.5.0", @@ -97829,14 +97829,14 @@ "@aws-sdk/client-secrets-manager": "3.353.0", "@aws-sdk/types": "^3.310.0", "@aws-sdk/url-parser": "3.374.0", - "@iot-app-kit/core": "10.12.2", - "@iot-app-kit/jest-config": "10.12.2", - "@iot-app-kit/ts-config": "10.12.2", + "@iot-app-kit/core": "10.13.0", + "@iot-app-kit/jest-config": "10.13.0", + "@iot-app-kit/ts-config": "10.13.0", "@tanstack/query-core": "^4.29.15", "@types/jest": "^29.4.0", "@types/lodash": "^4.14.195", "aws-sdk-client-mock": "^1.0.0", - "eslint-config-iot-app-kit": "10.12.2", + "eslint-config-iot-app-kit": "10.13.0", "flush-promises": "^1.0.2", "jest": "^29.5.0", "jest-environment-jsdom": "^29.5.0", @@ -98262,9 +98262,9 @@ "requires": { "@aws-sdk/client-iot-events": "3.354.0", "@aws-sdk/client-iotsitewise": "3.456.0", - "@iot-app-kit/core": "10.12.2", - "@iot-app-kit/ts-config": "^10.12.2", - "eslint-config-iot-app-kit": "^10.12.2", + "@iot-app-kit/core": "10.13.0", + "@iot-app-kit/ts-config": "^10.13.0", + "eslint-config-iot-app-kit": "^10.13.0", "parse-duration": "^1.1.0" } }, diff --git a/package.json b/package.json index 606687d1a..6f66bf28d 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "iot-app-kit", "private": true, "description": "IoT Application Kit", - "version": "10.12.2", + "version": "10.13.0", "main": "index.js", "license": "Apache-2.0", "repository": "git@github.com:awslabs/iot-app-kit.git", diff --git a/packages/components/CHANGELOG.md b/packages/components/CHANGELOG.md index 7996a6ada..987738a5b 100644 --- a/packages/components/CHANGELOG.md +++ b/packages/components/CHANGELOG.md @@ -3,6 +3,25 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [10.13.0](https://github.com/awslabs/iot-app-kit/compare/components-v10.12.2...components-v10.13.0) (2024-10-10) + + +### Miscellaneous Chores + +* **components:** Synchronize iot-app-kit versions + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @iot-app-kit/core bumped from 10.12.2 to 10.13.0 + * @iot-app-kit/related-table bumped from 10.12.2 to 10.13.0 + * devDependencies + * @iot-app-kit/source-iotsitewise bumped from 10.12.2 to 10.13.0 + * @iot-app-kit/testing-util bumped from 10.12.2 to 10.13.0 + * eslint-config-iot-app-kit bumped from 10.12.2 to 10.13.0 + ## [10.12.2](https://github.com/awslabs/iot-app-kit/compare/components-v10.12.1...components-v10.12.2) (2024-09-17) diff --git a/packages/components/package.json b/packages/components/package.json index 5cb315408..fdfd3b336 100644 --- a/packages/components/package.json +++ b/packages/components/package.json @@ -3,7 +3,7 @@ "publishConfig": { "access": "public" }, - "version": "10.12.2", + "version": "10.13.0", "description": "IoT App Kit Components", "main": "dist/index.cjs.js", "module": "dist/custom-elements/index.js", @@ -57,22 +57,22 @@ "@awsui/collection-hooks": "^1.0.51", "@awsui/components-react": "^3.0.0", "@awsui/design-tokens": "^3.0.41", - "@iot-app-kit/core": "10.12.2", - "@iot-app-kit/related-table": "10.12.2", + "@iot-app-kit/core": "10.13.0", + "@iot-app-kit/related-table": "10.13.0", "@stencil/core": "^2.7.0", "@synchro-charts/core": "7.2.0", "styled-components": "^5.3.11" }, "devDependencies": { - "@iot-app-kit/source-iotsitewise": "10.12.2", - "@iot-app-kit/testing-util": "10.12.2", + "@iot-app-kit/source-iotsitewise": "10.13.0", + "@iot-app-kit/testing-util": "10.13.0", "@rollup/plugin-replace": "^5.0.2", "@stencil/router": "^1.0.1", "@types/jest": "^27.0.3", "@types/react": "^18.2.12", "@types/react-dom": "^18.2.5", "@types/uuid": "^9.0.2", - "eslint-config-iot-app-kit": "10.12.2", + "eslint-config-iot-app-kit": "10.13.0", "flush-promises": "^1.0.2", "jest": "^27.0.3", "jest-cli": "^27.4.5", diff --git a/packages/core-util/CHANGELOG.md b/packages/core-util/CHANGELOG.md index 43a4bf299..76de32cb2 100644 --- a/packages/core-util/CHANGELOG.md +++ b/packages/core-util/CHANGELOG.md @@ -1,5 +1,22 @@ # Changelog +## [10.13.0](https://github.com/awslabs/iot-app-kit/compare/core-util-v10.12.2...core-util-v10.13.0) (2024-10-10) + + +### Miscellaneous Chores + +* **core-util:** Synchronize iot-app-kit versions + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @iot-app-kit/core bumped from 10.12.2 to 10.13.0 + * devDependencies + * @iot-app-kit/jest-config bumped from 10.12.2 to 10.13.0 + * @iot-app-kit/ts-config bumped from 10.12.2 to 10.13.0 + ## [10.12.2](https://github.com/awslabs/iot-app-kit/compare/core-util-v10.12.1...core-util-v10.12.2) (2024-09-17) diff --git a/packages/core-util/package.json b/packages/core-util/package.json index d12ef8643..977f863ca 100644 --- a/packages/core-util/package.json +++ b/packages/core-util/package.json @@ -4,7 +4,7 @@ "publishConfig": { "access": "public" }, - "version": "10.12.2", + "version": "10.13.0", "main": "./dist/cjs/index.js", "module": "./dist/es/index.js", "types": "./dist/es/index.d.ts", @@ -26,12 +26,12 @@ "test:typescript": "tsc --noEmit" }, "dependencies": { - "@iot-app-kit/core": "10.12.2", + "@iot-app-kit/core": "10.13.0", "lodash.difference": "4.5.0" }, "devDependencies": { - "@iot-app-kit/jest-config": "10.12.2", - "@iot-app-kit/ts-config": "10.12.2", + "@iot-app-kit/jest-config": "10.13.0", + "@iot-app-kit/ts-config": "10.13.0", "@aws-sdk/types": "^3.310.0", "@types/lodash.difference": "4.5.9", "@types/jest": "^29.4.0", diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index 19611fa31..1f6a89383 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/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. +## [10.13.0](https://github.com/awslabs/iot-app-kit/compare/core-v10.12.2...core-v10.13.0) (2024-10-10) + + +### Miscellaneous Chores + +* **core:** Synchronize iot-app-kit versions + + +### Dependencies + +* The following workspace dependencies were updated + * devDependencies + * @iot-app-kit/jest-config bumped from 10.12.2 to 10.13.0 + * @iot-app-kit/ts-config bumped from 10.12.2 to 10.13.0 + * eslint-config-iot-app-kit bumped from 10.12.2 to 10.13.0 + ## [10.12.2](https://github.com/awslabs/iot-app-kit/compare/core-v10.12.1...core-v10.12.2) (2024-09-17) diff --git a/packages/core/package.json b/packages/core/package.json index 9fa39afab..a92d0f6bd 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -4,7 +4,7 @@ "publishConfig": { "access": "public" }, - "version": "10.12.2", + "version": "10.13.0", "description": "IoT Application Kit core", "main": "./dist/cjs/index.js", "module": "./dist/es/index.js", @@ -58,12 +58,12 @@ "uuid": "^9.0.0" }, "devDependencies": { - "@iot-app-kit/jest-config": "10.12.2", - "@iot-app-kit/ts-config": "10.12.2", + "@iot-app-kit/jest-config": "10.13.0", + "@iot-app-kit/ts-config": "10.13.0", "@types/d3-array": "^3.0.5", "@types/jest": "^29.4.0", "@types/uuid": "^9.0.2", - "eslint-config-iot-app-kit": "10.12.2", + "eslint-config-iot-app-kit": "10.13.0", "flush-promises": "^1.0.2", "jest": "^29.5.0", "jest-environment-jsdom": "^29.5.0", diff --git a/packages/dashboard/CHANGELOG.md b/packages/dashboard/CHANGELOG.md index 95ab6fd1f..fd93fef29 100644 --- a/packages/dashboard/CHANGELOG.md +++ b/packages/dashboard/CHANGELOG.md @@ -1,5 +1,28 @@ # Changelog +## [10.13.0](https://github.com/awslabs/iot-app-kit/compare/dashboard-v10.12.2...dashboard-v10.13.0) (2024-10-10) + + +### Bug Fixes + +* **imports:** move luxon dependency to right package ([31235da](https://github.com/awslabs/iot-app-kit/commit/31235da4b31e49ec0fc0f1ec21f649cf7af7e253)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @iot-app-kit/components bumped from 10.12.2 to 10.13.0 + * @iot-app-kit/core bumped from 10.12.2 to 10.13.0 + * @iot-app-kit/core-util bumped from 10.12.2 to 10.13.0 + * @iot-app-kit/react-components bumped from 10.12.2 to 10.13.0 + * @iot-app-kit/source-iotsitewise bumped from 10.12.2 to 10.13.0 + * devDependencies + * @iot-app-kit/jest-config bumped from 10.12.2 to 10.13.0 + * @iot-app-kit/testing-util bumped from 10.12.2 to 10.13.0 + * @iot-app-kit/ts-config bumped from 10.12.2 to 10.13.0 + * eslint-config-iot-app-kit bumped from 10.12.2 to 10.13.0 + ## [10.12.2](https://github.com/awslabs/iot-app-kit/compare/dashboard-v10.12.1...dashboard-v10.12.2) (2024-09-17) diff --git a/packages/dashboard/package.json b/packages/dashboard/package.json index 76485728b..d65f3f1d5 100644 --- a/packages/dashboard/package.json +++ b/packages/dashboard/package.json @@ -3,7 +3,7 @@ "publishConfig": { "access": "public" }, - "version": "10.12.2", + "version": "10.13.0", "description": "A dashboard widget for IoT App Kit components", "homepage": "https://github.com/awslabs/iot-app-kit#readme", "license": "Apache-2.0", @@ -37,9 +37,9 @@ }, "devDependencies": { "@faker-js/faker": "^8.2.0", - "@iot-app-kit/jest-config": "10.12.2", - "@iot-app-kit/testing-util": "10.12.2", - "@iot-app-kit/ts-config": "10.12.2", + "@iot-app-kit/jest-config": "10.13.0", + "@iot-app-kit/testing-util": "10.13.0", + "@iot-app-kit/ts-config": "10.13.0", "@reduxjs/toolkit": "^1.9.5", "@rollup/plugin-commonjs": "^24.1.0", "@rollup/plugin-image": "^3.0.2", @@ -68,7 +68,7 @@ "@types/validator": "^13.12.0", "css-loader": "6.8.1", "dotenv": "^16.3.1", - "eslint-config-iot-app-kit": "10.12.2", + "eslint-config-iot-app-kit": "10.13.0", "eslint-plugin-jsx-a11y": "^6.8.0", "jest": "^29.5.0", "jest-environment-jsdom": "^29.5.0", @@ -101,11 +101,11 @@ }, "dependencies": { "@iot-app-kit/charts-core": "2.1.2", - "@iot-app-kit/components": "10.12.2", - "@iot-app-kit/core": "10.12.2", - "@iot-app-kit/core-util": "10.12.2", - "@iot-app-kit/react-components": "10.12.2", - "@iot-app-kit/source-iotsitewise": "10.12.2", + "@iot-app-kit/components": "10.13.0", + "@iot-app-kit/core": "10.13.0", + "@iot-app-kit/core-util": "10.13.0", + "@iot-app-kit/react-components": "10.13.0", + "@iot-app-kit/source-iotsitewise": "10.13.0", "@popperjs/core": "^2.11.8", "@tanstack/react-query": "^4.29.15", "aws-sdk-client-mock": "^3.0.0", diff --git a/packages/doc-site/CHANGELOG.md b/packages/doc-site/CHANGELOG.md index b2d7546d6..c520497af 100644 --- a/packages/doc-site/CHANGELOG.md +++ b/packages/doc-site/CHANGELOG.md @@ -1,5 +1,23 @@ # Changelog +## [10.13.0](https://github.com/awslabs/iot-app-kit/compare/doc-site-v10.12.2...doc-site-v10.13.0) (2024-10-10) + + +### Miscellaneous Chores + +* **doc-site:** Synchronize iot-app-kit versions + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @iot-app-kit/core bumped from ^10.12.2 to ^10.13.0 + * @iot-app-kit/react-components bumped from ^10.12.2 to ^10.13.0 + * devDependencies + * @iot-app-kit/testing-util bumped from ^10.12.2 to ^10.13.0 + * eslint-config-iot-app-kit bumped from ^10.12.2 to ^10.13.0 + ## [10.12.2](https://github.com/awslabs/iot-app-kit/compare/doc-site-v10.12.1...doc-site-v10.12.2) (2024-09-17) diff --git a/packages/doc-site/package.json b/packages/doc-site/package.json index 68d39ae2c..26d15442c 100644 --- a/packages/doc-site/package.json +++ b/packages/doc-site/package.json @@ -1,6 +1,6 @@ { "name": "@iot-app-kit/doc-site", - "version": "10.12.2", + "version": "10.13.0", "private": true, "scripts": { "storybook": "storybook dev -p 6006", @@ -11,7 +11,7 @@ "fix": "eslint --fix " }, "devDependencies": { - "@iot-app-kit/testing-util": "^10.12.2", + "@iot-app-kit/testing-util": "^10.13.0", "@storybook/addon-essentials": "^7.6.6", "@storybook/addon-interactions": "^7.6.6", "@storybook/addon-links": "^7.6.6", @@ -23,14 +23,14 @@ "@storybook/react-webpack5": "^7.6.6", "@storybook/test": "^7.6.6", "@storybook/theming": "^7.6.6", - "eslint-config-iot-app-kit": "^10.12.2", + "eslint-config-iot-app-kit": "^10.13.0", "prop-types": "^15.8.1", "react": "^18.2.0", "react-dom": "^18.2.0", "storybook": "^7.6.6" }, "dependencies": { - "@iot-app-kit/core": "^10.12.2", - "@iot-app-kit/react-components": "^10.12.2" + "@iot-app-kit/core": "^10.13.0", + "@iot-app-kit/react-components": "^10.13.0" } } diff --git a/packages/react-components/CHANGELOG.md b/packages/react-components/CHANGELOG.md index b296cf91e..f8f6033ca 100644 --- a/packages/react-components/CHANGELOG.md +++ b/packages/react-components/CHANGELOG.md @@ -2,6 +2,30 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [10.13.0](https://github.com/awslabs/iot-app-kit/compare/react-components-v10.12.2...react-components-v10.13.0) (2024-10-10) + + +### Bug Fixes + +* **imports:** move luxon dependency to right package ([31235da](https://github.com/awslabs/iot-app-kit/commit/31235da4b31e49ec0fc0f1ec21f649cf7af7e253)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @iot-app-kit/components bumped from 10.12.2 to 10.13.0 + * @iot-app-kit/core bumped from 10.12.2 to 10.13.0 + * @iot-app-kit/core-util bumped from 10.12.2 to 10.13.0 + * @iot-app-kit/source-iottwinmaker bumped from 10.12.2 to 10.13.0 + * devDependencies + * @iot-app-kit/core bumped from 10.12.2 to 10.13.0 + * @iot-app-kit/jest-config bumped from 10.12.2 to 10.13.0 + * @iot-app-kit/source-iotsitewise bumped from 10.12.2 to 10.13.0 + * @iot-app-kit/testing-util bumped from 10.12.2 to 10.13.0 + * @iot-app-kit/ts-config bumped from 10.12.2 to 10.13.0 + * eslint-config-iot-app-kit bumped from 10.12.2 to 10.13.0 + ## [10.12.2](https://github.com/awslabs/iot-app-kit/compare/react-components-v10.12.1...react-components-v10.12.2) (2024-09-17) diff --git a/packages/react-components/package.json b/packages/react-components/package.json index 651ccbf19..471578259 100644 --- a/packages/react-components/package.json +++ b/packages/react-components/package.json @@ -14,7 +14,7 @@ "publishConfig": { "access": "public" }, - "version": "10.12.2", + "version": "10.13.0", "scripts": { "start": "npm run build && npx start-storybook -p 6007", "dev": "npm-watch build", @@ -55,11 +55,11 @@ } }, "devDependencies": { - "@iot-app-kit/core": "10.12.2", - "@iot-app-kit/jest-config": "10.12.2", - "@iot-app-kit/source-iotsitewise": "10.12.2", - "@iot-app-kit/testing-util": "10.12.2", - "@iot-app-kit/ts-config": "10.12.2", + "@iot-app-kit/core": "10.13.0", + "@iot-app-kit/jest-config": "10.13.0", + "@iot-app-kit/source-iotsitewise": "10.13.0", + "@iot-app-kit/testing-util": "10.13.0", + "@iot-app-kit/ts-config": "10.13.0", "@jest/globals": "^29.5.0", "@storybook/addon-essentials": "^6.5.16", "@storybook/addon-links": "^6.5.16", @@ -99,7 +99,7 @@ "babel-plugin-formatjs": "10.5.3", "copyfiles": "^2.4.1", "cytoscape": "^3.25.0", - "eslint-config-iot-app-kit": "10.12.2", + "eslint-config-iot-app-kit": "10.13.0", "eslint-plugin-jsx-a11y": "^6.8.0", "flush-promises": "^1.0.2", "jest": "^29.5.0", @@ -117,10 +117,10 @@ "@cloudscape-design/design-tokens": "3.0.34", "@iot-app-kit/charts": "2.1.2", "@iot-app-kit/charts-core": "2.1.2", - "@iot-app-kit/components": "10.12.2", - "@iot-app-kit/core": "10.12.2", - "@iot-app-kit/core-util": "10.12.2", - "@iot-app-kit/source-iottwinmaker": "10.12.2", + "@iot-app-kit/components": "10.13.0", + "@iot-app-kit/core": "10.13.0", + "@iot-app-kit/core-util": "10.13.0", + "@iot-app-kit/source-iottwinmaker": "10.13.0", "@tanstack/react-query": "^5.32.1", "color": "^4.2.3", "copy-to-clipboard": "^3.3.3", diff --git a/packages/related-table/CHANGELOG.md b/packages/related-table/CHANGELOG.md index 2e129a08f..6d3cd9069 100644 --- a/packages/related-table/CHANGELOG.md +++ b/packages/related-table/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. +## [10.13.0](https://github.com/awslabs/iot-app-kit/compare/related-table-v10.12.2...related-table-v10.13.0) (2024-10-10) + + +### Miscellaneous Chores + +* **related-table:** Synchronize iot-app-kit versions + + +### Dependencies + +* The following workspace dependencies were updated + * devDependencies + * @iot-app-kit/jest-config bumped from 10.12.2 to 10.13.0 + * @iot-app-kit/ts-config bumped from 10.12.2 to 10.13.0 + * eslint-config-iot-app-kit bumped from 10.12.2 to 10.13.0 + ## [10.12.2](https://github.com/awslabs/iot-app-kit/compare/related-table-v10.12.1...related-table-v10.12.2) (2024-09-17) diff --git a/packages/related-table/package.json b/packages/related-table/package.json index 23c1307fc..bb2e62d99 100644 --- a/packages/related-table/package.json +++ b/packages/related-table/package.json @@ -3,7 +3,7 @@ "publishConfig": { "access": "public" }, - "version": "10.12.2", + "version": "10.13.0", "description": "IoT Application Kit - Related Table component", "license": "Apache-2.0", "main": "dist/index.js", @@ -61,8 +61,8 @@ "@awsui/collection-hooks": "^1.0.51", "@awsui/components-react": "^3.0.0", "@awsui/design-tokens": "^3.0.41", - "@iot-app-kit/jest-config": "10.12.2", - "@iot-app-kit/ts-config": "10.12.2", + "@iot-app-kit/jest-config": "10.13.0", + "@iot-app-kit/ts-config": "10.13.0", "@storybook/addon-essentials": "^6.5.16", "@storybook/addon-links": "^6.5.16", "@storybook/addons": "^6.5.16", @@ -73,7 +73,7 @@ "@types/react-dom": "^18.2.5", "@types/styled-components": "^5.1.26", "@types/uuid": "^9.0.2", - "eslint-config-iot-app-kit": "10.12.2", + "eslint-config-iot-app-kit": "10.13.0", "jest": "^29.5.0", "jest-environment-jsdom": "^29.5.0", "jest-extended": "^3.2.4", diff --git a/packages/scene-composer/CHANGELOG.md b/packages/scene-composer/CHANGELOG.md index bd0340fc9..a28480e13 100644 --- a/packages/scene-composer/CHANGELOG.md +++ b/packages/scene-composer/CHANGELOG.md @@ -4,6 +4,25 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [10.13.0](https://github.com/awslabs/iot-app-kit/compare/scene-composer-v10.12.2...scene-composer-v10.13.0) (2024-10-10) + + +### Features + +* **draco:** setup support for draco compressed files ([cc0d4e4](https://github.com/awslabs/iot-app-kit/commit/cc0d4e4a74232c856100a6781354342a669f5fd0)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @iot-app-kit/core bumped from 10.12.2 to 10.13.0 + * @iot-app-kit/react-components bumped from 10.12.2 to 10.13.0 + * @iot-app-kit/related-table bumped from 10.12.2 to 10.13.0 + * @iot-app-kit/source-iottwinmaker bumped from 10.12.2 to 10.13.0 + * devDependencies + * eslint-config-iot-app-kit bumped from 10.12.2 to 10.13.0 + ## [10.12.2](https://github.com/awslabs/iot-app-kit/compare/scene-composer-v10.12.1...scene-composer-v10.12.2) (2024-09-17) diff --git a/packages/scene-composer/package.json b/packages/scene-composer/package.json index 3793408af..d4a9fc0a6 100644 --- a/packages/scene-composer/package.json +++ b/packages/scene-composer/package.json @@ -3,7 +3,7 @@ "publishConfig": { "access": "public" }, - "version": "10.12.2", + "version": "10.13.0", "description": "AWS IoT TwinMaker Scene Composer Library", "homepage": "https://github.com/awslabs/iot-app-kit#readme", "license": "Apache-2.0", @@ -120,7 +120,7 @@ "babel-jest": "^29.6.4", "babel-plugin-formatjs": "10.5.3", "copyfiles": "^2.4.1", - "eslint-config-iot-app-kit": "10.12.2", + "eslint-config-iot-app-kit": "10.13.0", "husky": "8.0.3", "jest": "^29.7.0", "jest-coverage-ratchet": "^0.2.3", @@ -152,10 +152,10 @@ "@fortawesome/fontawesome-svg-core": "^6.4.2", "@fortawesome/free-solid-svg-icons": "^6.4.2", "@fortawesome/react-fontawesome": "^0.2.0", - "@iot-app-kit/core": "10.12.2", - "@iot-app-kit/react-components": "10.12.2", - "@iot-app-kit/related-table": "10.12.2", - "@iot-app-kit/source-iottwinmaker": "10.12.2", + "@iot-app-kit/core": "10.13.0", + "@iot-app-kit/react-components": "10.13.0", + "@iot-app-kit/related-table": "10.13.0", + "@iot-app-kit/source-iottwinmaker": "10.13.0", "@matterport/r3f": "0.2.7", "@matterport/webcomponent": "0.1.35", "@react-three/drei": "9.56.27", diff --git a/packages/source-iotsitewise/CHANGELOG.md b/packages/source-iotsitewise/CHANGELOG.md index 5dd469658..c569eed5f 100644 --- a/packages/source-iotsitewise/CHANGELOG.md +++ b/packages/source-iotsitewise/CHANGELOG.md @@ -3,6 +3,26 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [10.13.0](https://github.com/awslabs/iot-app-kit/compare/source-iotsitewise-v10.12.2...source-iotsitewise-v10.13.0) (2024-10-10) + + +### Miscellaneous Chores + +* **source-iotsitewise:** Synchronize iot-app-kit versions + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @iot-app-kit/core bumped from 10.12.2 to 10.13.0 + * @iot-app-kit/core-util bumped from 10.12.2 to 10.13.0 + * devDependencies + * @iot-app-kit/jest-config bumped from 10.12.2 to 10.13.0 + * @iot-app-kit/testing-util bumped from 10.12.2 to 10.13.0 + * @iot-app-kit/ts-config bumped from 10.12.2 to 10.13.0 + * eslint-config-iot-app-kit bumped from 10.12.2 to 10.13.0 + ## [10.12.2](https://github.com/awslabs/iot-app-kit/compare/source-iotsitewise-v10.12.1...source-iotsitewise-v10.12.2) (2024-09-17) diff --git a/packages/source-iotsitewise/package.json b/packages/source-iotsitewise/package.json index 519f40955..5196cb900 100644 --- a/packages/source-iotsitewise/package.json +++ b/packages/source-iotsitewise/package.json @@ -3,7 +3,7 @@ "publishConfig": { "access": "public" }, - "version": "10.12.2", + "version": "10.13.0", "description": "AWS IoT SiteWise source for IoT Application Kit", "homepage": "https://github.com/awslabs/iot-app-kit#readme", "license": "Apache-2.0", @@ -51,8 +51,8 @@ "pack": "npm pack" }, "dependencies": { - "@iot-app-kit/core": "10.12.2", - "@iot-app-kit/core-util": "10.12.2", + "@iot-app-kit/core": "10.13.0", + "@iot-app-kit/core-util": "10.13.0", "@synchro-charts/core": "7.2.0", "dataloader": "^2.2.2", "lodash.isequal": "^4.5.0", @@ -62,14 +62,14 @@ }, "devDependencies": { "@aws-sdk/types": "^3.310.0", - "@iot-app-kit/jest-config": "10.12.2", - "@iot-app-kit/testing-util": "10.12.2", - "@iot-app-kit/ts-config": "10.12.2", + "@iot-app-kit/jest-config": "10.13.0", + "@iot-app-kit/testing-util": "10.13.0", + "@iot-app-kit/ts-config": "10.13.0", "@types/jest": "^29.4.0", "@types/lodash.isequal": "^4.5.6", "@types/lodash.merge": "^4.6.7", "@types/lodash.uniqwith": "^4.5.7", - "eslint-config-iot-app-kit": "10.12.2", + "eslint-config-iot-app-kit": "10.13.0", "flush-promises": "^1.0.2", "jest": "^29.5.0", "jest-environment-jsdom": "^29.5.0", diff --git a/packages/source-iottwinmaker/CHANGELOG.md b/packages/source-iottwinmaker/CHANGELOG.md index e0e8310be..eae09c314 100644 --- a/packages/source-iottwinmaker/CHANGELOG.md +++ b/packages/source-iottwinmaker/CHANGELOG.md @@ -3,6 +3,24 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [10.13.0](https://github.com/awslabs/iot-app-kit/compare/source-iottwinmaker-v10.12.2...source-iottwinmaker-v10.13.0) (2024-10-10) + + +### Miscellaneous Chores + +* **source-iottwinmaker:** Synchronize iot-app-kit versions + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @iot-app-kit/core bumped from 10.12.2 to 10.13.0 + * devDependencies + * @iot-app-kit/jest-config bumped from 10.12.2 to 10.13.0 + * @iot-app-kit/ts-config bumped from 10.12.2 to 10.13.0 + * eslint-config-iot-app-kit bumped from 10.12.2 to 10.13.0 + ## [10.12.2](https://github.com/awslabs/iot-app-kit/compare/source-iottwinmaker-v10.12.1...source-iottwinmaker-v10.12.2) (2024-09-17) diff --git a/packages/source-iottwinmaker/package.json b/packages/source-iottwinmaker/package.json index 6a407d214..ea33a6d23 100644 --- a/packages/source-iottwinmaker/package.json +++ b/packages/source-iottwinmaker/package.json @@ -3,7 +3,7 @@ "publishConfig": { "access": "public" }, - "version": "10.12.2", + "version": "10.13.0", "description": "AWS IoT TwinMaker source for IoT Application Kit", "homepage": "https://github.com/awslabs/iot-app-kit#readme", "license": "Apache-2.0", @@ -57,19 +57,19 @@ "@aws-sdk/client-s3": "3.335.0", "@aws-sdk/client-secrets-manager": "3.353.0", "@aws-sdk/url-parser": "3.374.0", - "@iot-app-kit/core": "10.12.2", + "@iot-app-kit/core": "10.13.0", "@tanstack/query-core": "^4.29.15", "lodash": "^4.17.21", "rxjs": "^7.8.1" }, "devDependencies": { "@aws-sdk/types": "^3.310.0", - "@iot-app-kit/jest-config": "10.12.2", - "@iot-app-kit/ts-config": "10.12.2", + "@iot-app-kit/jest-config": "10.13.0", + "@iot-app-kit/ts-config": "10.13.0", "@types/jest": "^29.4.0", "@types/lodash": "^4.14.195", "aws-sdk-client-mock": "^1.0.0", - "eslint-config-iot-app-kit": "10.12.2", + "eslint-config-iot-app-kit": "10.13.0", "flush-promises": "^1.0.2", "jest": "^29.5.0", "jest-environment-jsdom": "^29.5.0", diff --git a/packages/testing-util/CHANGELOG.md b/packages/testing-util/CHANGELOG.md index 4d7937849..0b7c0c4dd 100644 --- a/packages/testing-util/CHANGELOG.md +++ b/packages/testing-util/CHANGELOG.md @@ -1,5 +1,22 @@ # Changelog +## [10.13.0](https://github.com/awslabs/iot-app-kit/compare/testing-util-v10.12.2...testing-util-v10.13.0) (2024-10-10) + + +### Miscellaneous Chores + +* **testing-util:** Synchronize iot-app-kit versions + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @iot-app-kit/core bumped from 10.12.2 to 10.13.0 + * devDependencies + * @iot-app-kit/ts-config bumped from ^10.12.2 to ^10.13.0 + * eslint-config-iot-app-kit bumped from ^10.12.2 to ^10.13.0 + ## [10.12.2](https://github.com/awslabs/iot-app-kit/compare/testing-util-v10.12.1...testing-util-v10.12.2) (2024-09-17) diff --git a/packages/testing-util/package.json b/packages/testing-util/package.json index 91b32c70f..4fedc9e16 100644 --- a/packages/testing-util/package.json +++ b/packages/testing-util/package.json @@ -2,12 +2,12 @@ "name": "@iot-app-kit/testing-util", "license": "Apache-2.0", "private": true, - "version": "10.12.2", + "version": "10.13.0", "main": "./dist/cjs/index.js", "module": "./dist/es/index.js", "types": "./dist/es/index.d.ts", "dependencies": { - "@iot-app-kit/core": "10.12.2", + "@iot-app-kit/core": "10.13.0", "@aws-sdk/client-iot-events": "3.354.0", "@aws-sdk/client-iotsitewise": "3.456.0", "parse-duration": "^1.1.0" @@ -21,7 +21,7 @@ "lint-fix": "eslint --fix ." }, "devDependencies": { - "@iot-app-kit/ts-config": "^10.12.2", - "eslint-config-iot-app-kit": "^10.12.2" + "@iot-app-kit/ts-config": "^10.13.0", + "eslint-config-iot-app-kit": "^10.13.0" } } diff --git a/packages/tools-iottwinmaker/CHANGELOG.md b/packages/tools-iottwinmaker/CHANGELOG.md index 5136cf8f6..aa4b91f77 100644 --- a/packages/tools-iottwinmaker/CHANGELOG.md +++ b/packages/tools-iottwinmaker/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [10.13.0](https://github.com/awslabs/iot-app-kit/compare/tools-iottwinmaker-v10.12.2...tools-iottwinmaker-v10.13.0) (2024-10-10) + + +### Miscellaneous Chores + +* **tools-iottwinmaker:** Synchronize iot-app-kit versions + ## [10.12.2](https://github.com/awslabs/iot-app-kit/compare/tools-iottwinmaker-v10.12.1...tools-iottwinmaker-v10.12.2) (2024-09-17) diff --git a/packages/tools-iottwinmaker/package.json b/packages/tools-iottwinmaker/package.json index 11795f32d..d5328d977 100644 --- a/packages/tools-iottwinmaker/package.json +++ b/packages/tools-iottwinmaker/package.json @@ -3,7 +3,7 @@ "publishConfig": { "access": "public" }, - "version": "10.12.2", + "version": "10.13.0", "engines": { "node": ">=16", "npm": ">=8"