From 36a46c0d602f934f78d96a6a2a030530cb55a89a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 16 Oct 2024 16:11:48 +0000 Subject: [PATCH] chore: release 10.13.1 --- .release-please-manifest.json | 32 +-- CHANGELOG.md | 9 + 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 | 20 ++ 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, 459 insertions(+), 214 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index e0ec6626e..d3a81461c 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,18 +1,18 @@ { - "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" + "packages/components": "10.13.1", + "packages/core": "10.13.1", + "packages/dashboard": "10.13.1", + "packages/doc-site": "10.13.1", + "packages/core-util": "10.13.1", + "packages/react-components": "10.13.1", + "packages/related-table": "10.13.1", + "packages/scene-composer": "10.13.1", + "packages/source-iotsitewise": "10.13.1", + "packages/source-iottwinmaker": "10.13.1", + ".": "10.13.1", + "configuration/jest-config": "10.13.1", + "packages/testing-util": "10.13.1", + "configuration/ts-config": "10.13.1", + "configuration/eslint-config": "10.13.1", + "packages/tools-iottwinmaker": "10.13.1" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 73fac228f..a4f432a4c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,15 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [10.13.1](https://github.com/awslabs/iot-app-kit/compare/root-v10.13.0...root-v10.13.1) (2024-10-16) + + +### Bug Fixes + +* **draco:** modifying check to ensure globalSettings are ready for evaluation ([80c3295](https://github.com/awslabs/iot-app-kit/commit/80c3295f96609885a043c4cb01d314447a376485)) +* **draco:** updating global settings ([9010137](https://github.com/awslabs/iot-app-kit/commit/90101378170004df2de7de511bb0be458ef45842)) +* **example:** fix HDR loader in react example ([63afb47](https://github.com/awslabs/iot-app-kit/commit/63afb47e94ad4025045116a9eff9d6ac1afdc823)) + ## [10.13.0](https://github.com/awslabs/iot-app-kit/compare/root-v10.12.2...root-v10.13.0) (2024-10-10) diff --git a/configuration/eslint-config/CHANGELOG.md b/configuration/eslint-config/CHANGELOG.md index b07ab1ea7..f9348b710 100644 --- a/configuration/eslint-config/CHANGELOG.md +++ b/configuration/eslint-config/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [10.13.1](https://github.com/awslabs/iot-app-kit/compare/eslint-config-v10.13.0...eslint-config-v10.13.1) (2024-10-16) + + +### Miscellaneous Chores + +* **eslint-config:** Synchronize iot-app-kit versions + ## [10.13.0](https://github.com/awslabs/iot-app-kit/compare/eslint-config-v10.12.2...eslint-config-v10.13.0) (2024-10-10) diff --git a/configuration/eslint-config/package.json b/configuration/eslint-config/package.json index 18c6ec089..8551e70ce 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.13.0", + "version": "10.13.1", "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 68b7f2cf9..cecccfb23 100644 --- a/configuration/jest-config/CHANGELOG.md +++ b/configuration/jest-config/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [10.13.1](https://github.com/awslabs/iot-app-kit/compare/jest-config-v10.13.0...jest-config-v10.13.1) (2024-10-16) + + +### Miscellaneous Chores + +* **jest-config:** Synchronize iot-app-kit versions + ## [10.13.0](https://github.com/awslabs/iot-app-kit/compare/jest-config-v10.12.2...jest-config-v10.13.0) (2024-10-10) diff --git a/configuration/jest-config/package.json b/configuration/jest-config/package.json index c55c8f716..af3066c3a 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.13.0", + "version": "10.13.1", "main": "index.ts", "private": true, "publishConfig": { diff --git a/configuration/ts-config/CHANGELOG.md b/configuration/ts-config/CHANGELOG.md index 608d26aaf..6d3a38842 100644 --- a/configuration/ts-config/CHANGELOG.md +++ b/configuration/ts-config/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [10.13.1](https://github.com/awslabs/iot-app-kit/compare/ts-config-v10.13.0...ts-config-v10.13.1) (2024-10-16) + + +### Miscellaneous Chores + +* **ts-config:** Synchronize iot-app-kit versions + ## [10.13.0](https://github.com/awslabs/iot-app-kit/compare/ts-config-v10.12.2...ts-config-v10.13.0) (2024-10-10) diff --git a/configuration/ts-config/package.json b/configuration/ts-config/package.json index bf0cfdecd..41124c4a6 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.13.0", + "version": "10.13.1", "type": "module", "private": true, "files": [ diff --git a/package-lock.json b/package-lock.json index 38eae1e44..dec88f65c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "iot-app-kit", - "version": "10.13.0", + "version": "10.13.1", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "iot-app-kit", - "version": "10.13.0", + "version": "10.13.1", "license": "Apache-2.0", "workspaces": [ "examples/*", @@ -45,7 +45,7 @@ }, "configuration/eslint-config": { "name": "eslint-config-iot-app-kit", - "version": "10.13.0", + "version": "10.13.1", "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.13.0" + "version": "10.13.1" }, "configuration/ts-config": { "name": "@iot-app-kit/ts-config", - "version": "10.13.0" + "version": "10.13.1" }, "examples/react-app": { "version": "0.1.0", @@ -70963,28 +70963,28 @@ }, "packages/components": { "name": "@iot-app-kit/components", - "version": "10.13.0", + "version": "10.13.1", "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.13.0", - "@iot-app-kit/related-table": "10.13.0", + "@iot-app-kit/core": "10.13.1", + "@iot-app-kit/related-table": "10.13.1", "@stencil/core": "^2.7.0", "@synchro-charts/core": "7.2.0", "styled-components": "^5.3.11" }, "devDependencies": { - "@iot-app-kit/source-iotsitewise": "10.13.0", - "@iot-app-kit/testing-util": "10.13.0", + "@iot-app-kit/source-iotsitewise": "10.13.1", + "@iot-app-kit/testing-util": "10.13.1", "@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.13.0", + "eslint-config-iot-app-kit": "10.13.1", "flush-promises": "^1.0.2", "jest": "^27.0.3", "jest-cli": "^27.4.5", @@ -71164,7 +71164,7 @@ }, "packages/core": { "name": "@iot-app-kit/core", - "version": "10.13.0", + "version": "10.13.1", "license": "Apache-2.0", "dependencies": { "d3-array": "^3.2.4", @@ -71175,12 +71175,12 @@ "uuid": "^9.0.0" }, "devDependencies": { - "@iot-app-kit/jest-config": "10.13.0", - "@iot-app-kit/ts-config": "10.13.0", + "@iot-app-kit/jest-config": "10.13.1", + "@iot-app-kit/ts-config": "10.13.1", "@types/d3-array": "^3.0.5", "@types/jest": "^29.4.0", "@types/uuid": "^9.0.2", - "eslint-config-iot-app-kit": "10.13.0", + "eslint-config-iot-app-kit": "10.13.1", "flush-promises": "^1.0.2", "jest": "^29.5.0", "jest-environment-jsdom": "^29.5.0", @@ -71194,16 +71194,16 @@ }, "packages/core-util": { "name": "@iot-app-kit/core-util", - "version": "10.13.0", + "version": "10.13.1", "license": "Apache-2.0", "dependencies": { - "@iot-app-kit/core": "10.13.0", + "@iot-app-kit/core": "10.13.1", "lodash.difference": "4.5.0" }, "devDependencies": { "@aws-sdk/types": "^3.310.0", - "@iot-app-kit/jest-config": "10.13.0", - "@iot-app-kit/ts-config": "10.13.0", + "@iot-app-kit/jest-config": "10.13.1", + "@iot-app-kit/ts-config": "10.13.1", "@types/jest": "^29.4.0", "@types/lodash.difference": "4.5.9", "jest": "^29.5.0", @@ -72125,15 +72125,15 @@ }, "packages/dashboard": { "name": "@iot-app-kit/dashboard", - "version": "10.13.0", + "version": "10.13.1", "license": "Apache-2.0", "dependencies": { "@iot-app-kit/charts-core": "2.1.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", + "@iot-app-kit/components": "10.13.1", + "@iot-app-kit/core": "10.13.1", + "@iot-app-kit/core-util": "10.13.1", + "@iot-app-kit/react-components": "10.13.1", + "@iot-app-kit/source-iotsitewise": "10.13.1", "@popperjs/core": "^2.11.8", "@tanstack/react-query": "^4.29.15", "aws-sdk-client-mock": "^3.0.0", @@ -72158,9 +72158,9 @@ }, "devDependencies": { "@faker-js/faker": "^8.2.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", + "@iot-app-kit/jest-config": "10.13.1", + "@iot-app-kit/testing-util": "10.13.1", + "@iot-app-kit/ts-config": "10.13.1", "@reduxjs/toolkit": "^1.9.5", "@rollup/plugin-commonjs": "^24.1.0", "@rollup/plugin-image": "^3.0.2", @@ -72189,7 +72189,7 @@ "@types/validator": "^13.12.0", "css-loader": "6.8.1", "dotenv": "^16.3.1", - "eslint-config-iot-app-kit": "10.13.0", + "eslint-config-iot-app-kit": "10.13.1", "eslint-plugin-jsx-a11y": "^6.8.0", "jest": "^29.5.0", "jest-environment-jsdom": "^29.5.0", @@ -73014,13 +73014,13 @@ }, "packages/doc-site": { "name": "@iot-app-kit/doc-site", - "version": "10.13.0", + "version": "10.13.1", "dependencies": { - "@iot-app-kit/core": "^10.13.0", - "@iot-app-kit/react-components": "^10.13.0" + "@iot-app-kit/core": "^10.13.1", + "@iot-app-kit/react-components": "^10.13.1" }, "devDependencies": { - "@iot-app-kit/testing-util": "^10.13.0", + "@iot-app-kit/testing-util": "^10.13.1", "@storybook/addon-essentials": "^7.6.6", "@storybook/addon-interactions": "^7.6.6", "@storybook/addon-links": "^7.6.6", @@ -73032,7 +73032,7 @@ "@storybook/react-webpack5": "^7.6.6", "@storybook/test": "^7.6.6", "@storybook/theming": "^7.6.6", - "eslint-config-iot-app-kit": "^10.13.0", + "eslint-config-iot-app-kit": "^10.13.1", "prop-types": "^15.8.1", "react": "^18.2.0", "react-dom": "^18.2.0", @@ -74347,7 +74347,7 @@ }, "packages/eslint-config": { "name": "eslint-config-iot-app-kit", - "version": "10.13.0", + "version": "10.13.1", "extraneous": true, "dependencies": { "@typescript-eslint/eslint-plugin": "^5.30.6", @@ -74953,7 +74953,7 @@ }, "packages/react-components": { "name": "@iot-app-kit/react-components", - "version": "10.13.0", + "version": "10.13.1", "license": "Apache-2.0", "dependencies": { "@cloudscape-design/collection-hooks": "1.0.36", @@ -74961,10 +74961,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.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", + "@iot-app-kit/components": "10.13.1", + "@iot-app-kit/core": "10.13.1", + "@iot-app-kit/core-util": "10.13.1", + "@iot-app-kit/source-iottwinmaker": "10.13.1", "@tanstack/react-query": "^5.32.1", "color": "^4.2.3", "copy-to-clipboard": "^3.3.3", @@ -75004,11 +75004,11 @@ "zustand": "^4.3.9" }, "devDependencies": { - "@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", + "@iot-app-kit/core": "10.13.1", + "@iot-app-kit/jest-config": "10.13.1", + "@iot-app-kit/source-iotsitewise": "10.13.1", + "@iot-app-kit/testing-util": "10.13.1", + "@iot-app-kit/ts-config": "10.13.1", "@jest/globals": "^29.5.0", "@storybook/addon-essentials": "^6.5.16", "@storybook/addon-links": "^6.5.16", @@ -75048,7 +75048,7 @@ "babel-plugin-formatjs": "10.5.3", "copyfiles": "^2.4.1", "cytoscape": "^3.25.0", - "eslint-config-iot-app-kit": "10.13.0", + "eslint-config-iot-app-kit": "10.13.1", "eslint-plugin-jsx-a11y": "^6.8.0", "flush-promises": "^1.0.2", "jest": "^29.5.0", @@ -76031,7 +76031,7 @@ }, "packages/related-table": { "name": "@iot-app-kit/related-table", - "version": "10.13.0", + "version": "10.13.1", "license": "Apache-2.0", "dependencies": { "uuid": "^9.0.0" @@ -76040,8 +76040,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.13.0", - "@iot-app-kit/ts-config": "10.13.0", + "@iot-app-kit/jest-config": "10.13.1", + "@iot-app-kit/ts-config": "10.13.1", "@storybook/addon-essentials": "^6.5.16", "@storybook/addon-links": "^6.5.16", "@storybook/addons": "^6.5.16", @@ -76052,7 +76052,7 @@ "@types/react-dom": "^18.2.5", "@types/styled-components": "^5.1.26", "@types/uuid": "^9.0.2", - "eslint-config-iot-app-kit": "10.13.0", + "eslint-config-iot-app-kit": "10.13.1", "jest": "^29.5.0", "jest-environment-jsdom": "^29.5.0", "jest-extended": "^3.2.4", @@ -76527,7 +76527,7 @@ }, "packages/scene-composer": { "name": "@iot-app-kit/scene-composer", - "version": "10.13.0", + "version": "10.13.1", "license": "Apache-2.0", "dependencies": { "@aws-sdk/client-iottwinmaker": "3.589.0", @@ -76535,10 +76535,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.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", + "@iot-app-kit/core": "10.13.1", + "@iot-app-kit/react-components": "10.13.1", + "@iot-app-kit/related-table": "10.13.1", + "@iot-app-kit/source-iottwinmaker": "10.13.1", "@matterport/r3f": "0.2.7", "@matterport/webcomponent": "0.1.35", "@react-three/drei": "9.56.27", @@ -76612,7 +76612,7 @@ "babel-jest": "^29.6.4", "babel-plugin-formatjs": "10.5.3", "copyfiles": "^2.4.1", - "eslint-config-iot-app-kit": "10.13.0", + "eslint-config-iot-app-kit": "10.13.1", "husky": "8.0.3", "jest": "^29.7.0", "jest-coverage-ratchet": "^0.2.3", @@ -78902,11 +78902,11 @@ }, "packages/source-iotsitewise": { "name": "@iot-app-kit/source-iotsitewise", - "version": "10.13.0", + "version": "10.13.1", "license": "Apache-2.0", "dependencies": { - "@iot-app-kit/core": "10.13.0", - "@iot-app-kit/core-util": "10.13.0", + "@iot-app-kit/core": "10.13.1", + "@iot-app-kit/core-util": "10.13.1", "@synchro-charts/core": "7.2.0", "dataloader": "^2.2.2", "lodash.isequal": "^4.5.0", @@ -78916,14 +78916,14 @@ }, "devDependencies": { "@aws-sdk/types": "^3.310.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", + "@iot-app-kit/jest-config": "10.13.1", + "@iot-app-kit/testing-util": "10.13.1", + "@iot-app-kit/ts-config": "10.13.1", "@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.13.0", + "eslint-config-iot-app-kit": "10.13.1", "flush-promises": "^1.0.2", "jest": "^29.5.0", "jest-environment-jsdom": "^29.5.0", @@ -79384,7 +79384,7 @@ }, "packages/source-iottwinmaker": { "name": "@iot-app-kit/source-iottwinmaker", - "version": "10.13.0", + "version": "10.13.1", "license": "Apache-2.0", "dependencies": { "@aws-sdk/client-iotsitewise": "3.456.0", @@ -79394,19 +79394,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.13.0", + "@iot-app-kit/core": "10.13.1", "@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.13.0", - "@iot-app-kit/ts-config": "10.13.0", + "@iot-app-kit/jest-config": "10.13.1", + "@iot-app-kit/ts-config": "10.13.1", "@types/jest": "^29.4.0", "@types/lodash": "^4.14.195", "aws-sdk-client-mock": "^1.0.0", - "eslint-config-iot-app-kit": "10.13.0", + "eslint-config-iot-app-kit": "10.13.1", "flush-promises": "^1.0.2", "jest": "^29.5.0", "jest-environment-jsdom": "^29.5.0", @@ -79896,22 +79896,22 @@ }, "packages/testing-util": { "name": "@iot-app-kit/testing-util", - "version": "10.13.0", + "version": "10.13.1", "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.13.0", + "@iot-app-kit/core": "10.13.1", "parse-duration": "^1.1.0" }, "devDependencies": { - "@iot-app-kit/ts-config": "^10.13.0", - "eslint-config-iot-app-kit": "^10.13.0" + "@iot-app-kit/ts-config": "^10.13.1", + "eslint-config-iot-app-kit": "^10.13.1" } }, "packages/tools-iottwinmaker": { "name": "@iot-app-kit/tools-iottwinmaker", - "version": "10.13.0", + "version": "10.13.1", "dependencies": { "@aws-sdk/client-cloudformation": "^3.376.0", "@aws-sdk/client-iam": "^3.363.0", @@ -91731,10 +91731,10 @@ "@awsui/collection-hooks": "^1.0.51", "@awsui/components-react": "^3.0.0", "@awsui/design-tokens": "^3.0.41", - "@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", + "@iot-app-kit/core": "10.13.1", + "@iot-app-kit/related-table": "10.13.1", + "@iot-app-kit/source-iotsitewise": "10.13.1", + "@iot-app-kit/testing-util": "10.13.1", "@rollup/plugin-replace": "^5.0.2", "@stencil/core": "^2.7.0", "@stencil/router": "^1.0.1", @@ -91743,7 +91743,7 @@ "@types/react": "^18.2.12", "@types/react-dom": "^18.2.5", "@types/uuid": "^9.0.2", - "eslint-config-iot-app-kit": "10.13.0", + "eslint-config-iot-app-kit": "10.13.1", "flush-promises": "^1.0.2", "jest": "^27.0.3", "jest-cli": "^27.4.5", @@ -91869,13 +91869,13 @@ "@iot-app-kit/core": { "version": "file:packages/core", "requires": { - "@iot-app-kit/jest-config": "10.13.0", - "@iot-app-kit/ts-config": "10.13.0", + "@iot-app-kit/jest-config": "10.13.1", + "@iot-app-kit/ts-config": "10.13.1", "@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.13.0", + "eslint-config-iot-app-kit": "10.13.1", "flush-promises": "^1.0.2", "intervals-fn": "^3.0.3", "jest": "^29.5.0", @@ -92208,9 +92208,9 @@ "version": "file:packages/core-util", "requires": { "@aws-sdk/types": "^3.310.0", - "@iot-app-kit/core": "10.13.0", - "@iot-app-kit/jest-config": "10.13.0", - "@iot-app-kit/ts-config": "10.13.0", + "@iot-app-kit/core": "10.13.1", + "@iot-app-kit/jest-config": "10.13.1", + "@iot-app-kit/ts-config": "10.13.1", "@types/jest": "^29.4.0", "@types/lodash.difference": "4.5.9", "jest": "^29.5.0", @@ -92588,14 +92588,14 @@ "requires": { "@faker-js/faker": "^8.2.0", "@iot-app-kit/charts-core": "2.1.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", + "@iot-app-kit/components": "10.13.1", + "@iot-app-kit/core": "10.13.1", + "@iot-app-kit/core-util": "10.13.1", + "@iot-app-kit/jest-config": "10.13.1", + "@iot-app-kit/react-components": "10.13.1", + "@iot-app-kit/source-iotsitewise": "10.13.1", + "@iot-app-kit/testing-util": "10.13.1", + "@iot-app-kit/ts-config": "10.13.1", "@popperjs/core": "^2.11.8", "@reduxjs/toolkit": "^1.9.5", "@rollup/plugin-commonjs": "^24.1.0", @@ -92629,7 +92629,7 @@ "css-loader": "6.8.1", "dompurify": "^3.1.6", "dotenv": "^16.3.1", - "eslint-config-iot-app-kit": "10.13.0", + "eslint-config-iot-app-kit": "10.13.1", "eslint-plugin-jsx-a11y": "^6.8.0", "is-hotkey": "^0.2.0", "jest": "^29.5.0", @@ -93255,9 +93255,9 @@ "@iot-app-kit/doc-site": { "version": "file:packages/doc-site", "requires": { - "@iot-app-kit/core": "^10.13.0", - "@iot-app-kit/react-components": "^10.13.0", - "@iot-app-kit/testing-util": "^10.13.0", + "@iot-app-kit/core": "^10.13.1", + "@iot-app-kit/react-components": "^10.13.1", + "@iot-app-kit/testing-util": "^10.13.1", "@storybook/addon-essentials": "^7.6.6", "@storybook/addon-interactions": "^7.6.6", "@storybook/addon-links": "^7.6.6", @@ -93269,7 +93269,7 @@ "@storybook/react-webpack5": "^7.6.6", "@storybook/test": "^7.6.6", "@storybook/theming": "^7.6.6", - "eslint-config-iot-app-kit": "^10.13.0", + "eslint-config-iot-app-kit": "^10.13.1", "prop-types": "^15.8.1", "react": "^18.2.0", "react-dom": "^18.2.0", @@ -94558,14 +94558,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.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", + "@iot-app-kit/components": "10.13.1", + "@iot-app-kit/core": "10.13.1", + "@iot-app-kit/core-util": "10.13.1", + "@iot-app-kit/jest-config": "10.13.1", + "@iot-app-kit/source-iotsitewise": "10.13.1", + "@iot-app-kit/source-iottwinmaker": "10.13.1", + "@iot-app-kit/testing-util": "10.13.1", + "@iot-app-kit/ts-config": "10.13.1", "@jest/globals": "^29.5.0", "@storybook/addon-essentials": "^6.5.16", "@storybook/addon-links": "^6.5.16", @@ -94616,7 +94616,7 @@ "date-fns-tz": "^2.0.1", "dompurify": "3.0.5", "echarts": "^5.4.3", - "eslint-config-iot-app-kit": "10.13.0", + "eslint-config-iot-app-kit": "10.13.1", "eslint-plugin-jsx-a11y": "^6.8.0", "flush-promises": "^1.0.2", "is-hotkey": "^0.2.0", @@ -95348,8 +95348,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.13.0", - "@iot-app-kit/ts-config": "10.13.0", + "@iot-app-kit/jest-config": "10.13.1", + "@iot-app-kit/ts-config": "10.13.1", "@storybook/addon-essentials": "^6.5.16", "@storybook/addon-links": "^6.5.16", "@storybook/addons": "^6.5.16", @@ -95360,7 +95360,7 @@ "@types/react-dom": "^18.2.5", "@types/styled-components": "^5.1.26", "@types/uuid": "^9.0.2", - "eslint-config-iot-app-kit": "10.13.0", + "eslint-config-iot-app-kit": "10.13.1", "jest": "^29.5.0", "jest-environment-jsdom": "^29.5.0", "jest-extended": "^3.2.4", @@ -95723,10 +95723,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.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", + "@iot-app-kit/core": "10.13.1", + "@iot-app-kit/react-components": "10.13.1", + "@iot-app-kit/related-table": "10.13.1", + "@iot-app-kit/source-iottwinmaker": "10.13.1", "@matterport/r3f": "0.2.7", "@matterport/webcomponent": "0.1.35", "@react-spring/three": "^9.7.2", @@ -95764,7 +95764,7 @@ "babel-plugin-formatjs": "10.5.3", "copyfiles": "^2.4.1", "debug": "^4.3.4", - "eslint-config-iot-app-kit": "10.13.0", + "eslint-config-iot-app-kit": "10.13.1", "husky": "8.0.3", "immer": "^9.0.21", "is-absolute-url": "^4.0.1", @@ -97465,18 +97465,18 @@ "version": "file:packages/source-iotsitewise", "requires": { "@aws-sdk/types": "^3.310.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/testing-util": "10.13.0", - "@iot-app-kit/ts-config": "10.13.0", + "@iot-app-kit/core": "10.13.1", + "@iot-app-kit/core-util": "10.13.1", + "@iot-app-kit/jest-config": "10.13.1", + "@iot-app-kit/testing-util": "10.13.1", + "@iot-app-kit/ts-config": "10.13.1", "@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.13.0", + "eslint-config-iot-app-kit": "10.13.1", "flush-promises": "^1.0.2", "jest": "^29.5.0", "jest-environment-jsdom": "^29.5.0", @@ -97830,14 +97830,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.13.0", - "@iot-app-kit/jest-config": "10.13.0", - "@iot-app-kit/ts-config": "10.13.0", + "@iot-app-kit/core": "10.13.1", + "@iot-app-kit/jest-config": "10.13.1", + "@iot-app-kit/ts-config": "10.13.1", "@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.13.0", + "eslint-config-iot-app-kit": "10.13.1", "flush-promises": "^1.0.2", "jest": "^29.5.0", "jest-environment-jsdom": "^29.5.0", @@ -98263,9 +98263,9 @@ "requires": { "@aws-sdk/client-iot-events": "3.354.0", "@aws-sdk/client-iotsitewise": "3.456.0", - "@iot-app-kit/core": "10.13.0", - "@iot-app-kit/ts-config": "^10.13.0", - "eslint-config-iot-app-kit": "^10.13.0", + "@iot-app-kit/core": "10.13.1", + "@iot-app-kit/ts-config": "^10.13.1", + "eslint-config-iot-app-kit": "^10.13.1", "parse-duration": "^1.1.0" } }, diff --git a/package.json b/package.json index 6f66bf28d..ec73a6f71 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "iot-app-kit", "private": true, "description": "IoT Application Kit", - "version": "10.13.0", + "version": "10.13.1", "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 987738a5b..b71a428f3 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.1](https://github.com/awslabs/iot-app-kit/compare/components-v10.13.0...components-v10.13.1) (2024-10-16) + + +### Miscellaneous Chores + +* **components:** Synchronize iot-app-kit versions + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @iot-app-kit/core bumped from 10.13.0 to 10.13.1 + * @iot-app-kit/related-table bumped from 10.13.0 to 10.13.1 + * devDependencies + * @iot-app-kit/source-iotsitewise bumped from 10.13.0 to 10.13.1 + * @iot-app-kit/testing-util bumped from 10.13.0 to 10.13.1 + * eslint-config-iot-app-kit bumped from 10.13.0 to 10.13.1 + ## [10.13.0](https://github.com/awslabs/iot-app-kit/compare/components-v10.12.2...components-v10.13.0) (2024-10-10) diff --git a/packages/components/package.json b/packages/components/package.json index fdfd3b336..b507dd137 100644 --- a/packages/components/package.json +++ b/packages/components/package.json @@ -3,7 +3,7 @@ "publishConfig": { "access": "public" }, - "version": "10.13.0", + "version": "10.13.1", "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.13.0", - "@iot-app-kit/related-table": "10.13.0", + "@iot-app-kit/core": "10.13.1", + "@iot-app-kit/related-table": "10.13.1", "@stencil/core": "^2.7.0", "@synchro-charts/core": "7.2.0", "styled-components": "^5.3.11" }, "devDependencies": { - "@iot-app-kit/source-iotsitewise": "10.13.0", - "@iot-app-kit/testing-util": "10.13.0", + "@iot-app-kit/source-iotsitewise": "10.13.1", + "@iot-app-kit/testing-util": "10.13.1", "@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.13.0", + "eslint-config-iot-app-kit": "10.13.1", "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 76de32cb2..222b3e5ab 100644 --- a/packages/core-util/CHANGELOG.md +++ b/packages/core-util/CHANGELOG.md @@ -1,5 +1,22 @@ # Changelog +## [10.13.1](https://github.com/awslabs/iot-app-kit/compare/core-util-v10.13.0...core-util-v10.13.1) (2024-10-16) + + +### Miscellaneous Chores + +* **core-util:** Synchronize iot-app-kit versions + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @iot-app-kit/core bumped from 10.13.0 to 10.13.1 + * devDependencies + * @iot-app-kit/jest-config bumped from 10.13.0 to 10.13.1 + * @iot-app-kit/ts-config bumped from 10.13.0 to 10.13.1 + ## [10.13.0](https://github.com/awslabs/iot-app-kit/compare/core-util-v10.12.2...core-util-v10.13.0) (2024-10-10) diff --git a/packages/core-util/package.json b/packages/core-util/package.json index 977f863ca..19630ec6a 100644 --- a/packages/core-util/package.json +++ b/packages/core-util/package.json @@ -4,7 +4,7 @@ "publishConfig": { "access": "public" }, - "version": "10.13.0", + "version": "10.13.1", "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.13.0", + "@iot-app-kit/core": "10.13.1", "lodash.difference": "4.5.0" }, "devDependencies": { - "@iot-app-kit/jest-config": "10.13.0", - "@iot-app-kit/ts-config": "10.13.0", + "@iot-app-kit/jest-config": "10.13.1", + "@iot-app-kit/ts-config": "10.13.1", "@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 1f6a89383..ed7882a78 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.1](https://github.com/awslabs/iot-app-kit/compare/core-v10.13.0...core-v10.13.1) (2024-10-16) + + +### Miscellaneous Chores + +* **core:** Synchronize iot-app-kit versions + + +### Dependencies + +* The following workspace dependencies were updated + * devDependencies + * @iot-app-kit/jest-config bumped from 10.13.0 to 10.13.1 + * @iot-app-kit/ts-config bumped from 10.13.0 to 10.13.1 + * eslint-config-iot-app-kit bumped from 10.13.0 to 10.13.1 + ## [10.13.0](https://github.com/awslabs/iot-app-kit/compare/core-v10.12.2...core-v10.13.0) (2024-10-10) diff --git a/packages/core/package.json b/packages/core/package.json index a92d0f6bd..2e8ed1321 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -4,7 +4,7 @@ "publishConfig": { "access": "public" }, - "version": "10.13.0", + "version": "10.13.1", "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.13.0", - "@iot-app-kit/ts-config": "10.13.0", + "@iot-app-kit/jest-config": "10.13.1", + "@iot-app-kit/ts-config": "10.13.1", "@types/d3-array": "^3.0.5", "@types/jest": "^29.4.0", "@types/uuid": "^9.0.2", - "eslint-config-iot-app-kit": "10.13.0", + "eslint-config-iot-app-kit": "10.13.1", "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 fd93fef29..7f5c4cef6 100644 --- a/packages/dashboard/CHANGELOG.md +++ b/packages/dashboard/CHANGELOG.md @@ -1,5 +1,28 @@ # Changelog +## [10.13.1](https://github.com/awslabs/iot-app-kit/compare/dashboard-v10.13.0...dashboard-v10.13.1) (2024-10-16) + + +### Miscellaneous Chores + +* **dashboard:** Synchronize iot-app-kit versions + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @iot-app-kit/components bumped from 10.13.0 to 10.13.1 + * @iot-app-kit/core bumped from 10.13.0 to 10.13.1 + * @iot-app-kit/core-util bumped from 10.13.0 to 10.13.1 + * @iot-app-kit/react-components bumped from 10.13.0 to 10.13.1 + * @iot-app-kit/source-iotsitewise bumped from 10.13.0 to 10.13.1 + * devDependencies + * @iot-app-kit/jest-config bumped from 10.13.0 to 10.13.1 + * @iot-app-kit/testing-util bumped from 10.13.0 to 10.13.1 + * @iot-app-kit/ts-config bumped from 10.13.0 to 10.13.1 + * eslint-config-iot-app-kit bumped from 10.13.0 to 10.13.1 + ## [10.13.0](https://github.com/awslabs/iot-app-kit/compare/dashboard-v10.12.2...dashboard-v10.13.0) (2024-10-10) diff --git a/packages/dashboard/package.json b/packages/dashboard/package.json index f8d442c4f..095e1c6cb 100644 --- a/packages/dashboard/package.json +++ b/packages/dashboard/package.json @@ -3,7 +3,7 @@ "publishConfig": { "access": "public" }, - "version": "10.13.0", + "version": "10.13.1", "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.13.0", - "@iot-app-kit/testing-util": "10.13.0", - "@iot-app-kit/ts-config": "10.13.0", + "@iot-app-kit/jest-config": "10.13.1", + "@iot-app-kit/testing-util": "10.13.1", + "@iot-app-kit/ts-config": "10.13.1", "@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.13.0", + "eslint-config-iot-app-kit": "10.13.1", "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.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", + "@iot-app-kit/components": "10.13.1", + "@iot-app-kit/core": "10.13.1", + "@iot-app-kit/core-util": "10.13.1", + "@iot-app-kit/react-components": "10.13.1", + "@iot-app-kit/source-iotsitewise": "10.13.1", "@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 c520497af..19a4eb571 100644 --- a/packages/doc-site/CHANGELOG.md +++ b/packages/doc-site/CHANGELOG.md @@ -1,5 +1,23 @@ # Changelog +## [10.13.1](https://github.com/awslabs/iot-app-kit/compare/doc-site-v10.13.0...doc-site-v10.13.1) (2024-10-16) + + +### Miscellaneous Chores + +* **doc-site:** Synchronize iot-app-kit versions + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @iot-app-kit/core bumped from ^10.13.0 to ^10.13.1 + * @iot-app-kit/react-components bumped from ^10.13.0 to ^10.13.1 + * devDependencies + * @iot-app-kit/testing-util bumped from ^10.13.0 to ^10.13.1 + * eslint-config-iot-app-kit bumped from ^10.13.0 to ^10.13.1 + ## [10.13.0](https://github.com/awslabs/iot-app-kit/compare/doc-site-v10.12.2...doc-site-v10.13.0) (2024-10-10) diff --git a/packages/doc-site/package.json b/packages/doc-site/package.json index 26d15442c..93afa0dcd 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.13.0", + "version": "10.13.1", "private": true, "scripts": { "storybook": "storybook dev -p 6006", @@ -11,7 +11,7 @@ "fix": "eslint --fix " }, "devDependencies": { - "@iot-app-kit/testing-util": "^10.13.0", + "@iot-app-kit/testing-util": "^10.13.1", "@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.13.0", + "eslint-config-iot-app-kit": "^10.13.1", "prop-types": "^15.8.1", "react": "^18.2.0", "react-dom": "^18.2.0", "storybook": "^7.6.6" }, "dependencies": { - "@iot-app-kit/core": "^10.13.0", - "@iot-app-kit/react-components": "^10.13.0" + "@iot-app-kit/core": "^10.13.1", + "@iot-app-kit/react-components": "^10.13.1" } } diff --git a/packages/react-components/CHANGELOG.md b/packages/react-components/CHANGELOG.md index f8f6033ca..00c51e655 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.1](https://github.com/awslabs/iot-app-kit/compare/react-components-v10.13.0...react-components-v10.13.1) (2024-10-16) + + +### Miscellaneous Chores + +* **react-components:** Synchronize iot-app-kit versions + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @iot-app-kit/components bumped from 10.13.0 to 10.13.1 + * @iot-app-kit/core bumped from 10.13.0 to 10.13.1 + * @iot-app-kit/core-util bumped from 10.13.0 to 10.13.1 + * @iot-app-kit/source-iottwinmaker bumped from 10.13.0 to 10.13.1 + * devDependencies + * @iot-app-kit/core bumped from 10.13.0 to 10.13.1 + * @iot-app-kit/jest-config bumped from 10.13.0 to 10.13.1 + * @iot-app-kit/source-iotsitewise bumped from 10.13.0 to 10.13.1 + * @iot-app-kit/testing-util bumped from 10.13.0 to 10.13.1 + * @iot-app-kit/ts-config bumped from 10.13.0 to 10.13.1 + * eslint-config-iot-app-kit bumped from 10.13.0 to 10.13.1 + ## [10.13.0](https://github.com/awslabs/iot-app-kit/compare/react-components-v10.12.2...react-components-v10.13.0) (2024-10-10) diff --git a/packages/react-components/package.json b/packages/react-components/package.json index 471578259..55b875663 100644 --- a/packages/react-components/package.json +++ b/packages/react-components/package.json @@ -14,7 +14,7 @@ "publishConfig": { "access": "public" }, - "version": "10.13.0", + "version": "10.13.1", "scripts": { "start": "npm run build && npx start-storybook -p 6007", "dev": "npm-watch build", @@ -55,11 +55,11 @@ } }, "devDependencies": { - "@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", + "@iot-app-kit/core": "10.13.1", + "@iot-app-kit/jest-config": "10.13.1", + "@iot-app-kit/source-iotsitewise": "10.13.1", + "@iot-app-kit/testing-util": "10.13.1", + "@iot-app-kit/ts-config": "10.13.1", "@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.13.0", + "eslint-config-iot-app-kit": "10.13.1", "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.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", + "@iot-app-kit/components": "10.13.1", + "@iot-app-kit/core": "10.13.1", + "@iot-app-kit/core-util": "10.13.1", + "@iot-app-kit/source-iottwinmaker": "10.13.1", "@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 6d3cd9069..beda9cd04 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.1](https://github.com/awslabs/iot-app-kit/compare/related-table-v10.13.0...related-table-v10.13.1) (2024-10-16) + + +### 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.13.0 to 10.13.1 + * @iot-app-kit/ts-config bumped from 10.13.0 to 10.13.1 + * eslint-config-iot-app-kit bumped from 10.13.0 to 10.13.1 + ## [10.13.0](https://github.com/awslabs/iot-app-kit/compare/related-table-v10.12.2...related-table-v10.13.0) (2024-10-10) diff --git a/packages/related-table/package.json b/packages/related-table/package.json index bb2e62d99..4ad4a4cf7 100644 --- a/packages/related-table/package.json +++ b/packages/related-table/package.json @@ -3,7 +3,7 @@ "publishConfig": { "access": "public" }, - "version": "10.13.0", + "version": "10.13.1", "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.13.0", - "@iot-app-kit/ts-config": "10.13.0", + "@iot-app-kit/jest-config": "10.13.1", + "@iot-app-kit/ts-config": "10.13.1", "@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.13.0", + "eslint-config-iot-app-kit": "10.13.1", "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 a28480e13..d978e79b6 100644 --- a/packages/scene-composer/CHANGELOG.md +++ b/packages/scene-composer/CHANGELOG.md @@ -4,6 +4,26 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [10.13.1](https://github.com/awslabs/iot-app-kit/compare/scene-composer-v10.13.0...scene-composer-v10.13.1) (2024-10-16) + + +### Bug Fixes + +* **draco:** modifying check to ensure globalSettings are ready for evaluation ([80c3295](https://github.com/awslabs/iot-app-kit/commit/80c3295f96609885a043c4cb01d314447a376485)) +* **draco:** updating global settings ([9010137](https://github.com/awslabs/iot-app-kit/commit/90101378170004df2de7de511bb0be458ef45842)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @iot-app-kit/core bumped from 10.13.0 to 10.13.1 + * @iot-app-kit/react-components bumped from 10.13.0 to 10.13.1 + * @iot-app-kit/related-table bumped from 10.13.0 to 10.13.1 + * @iot-app-kit/source-iottwinmaker bumped from 10.13.0 to 10.13.1 + * devDependencies + * eslint-config-iot-app-kit bumped from 10.13.0 to 10.13.1 + ## [10.13.0](https://github.com/awslabs/iot-app-kit/compare/scene-composer-v10.12.2...scene-composer-v10.13.0) (2024-10-10) diff --git a/packages/scene-composer/package.json b/packages/scene-composer/package.json index d4a9fc0a6..b4df18d38 100644 --- a/packages/scene-composer/package.json +++ b/packages/scene-composer/package.json @@ -3,7 +3,7 @@ "publishConfig": { "access": "public" }, - "version": "10.13.0", + "version": "10.13.1", "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.13.0", + "eslint-config-iot-app-kit": "10.13.1", "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.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", + "@iot-app-kit/core": "10.13.1", + "@iot-app-kit/react-components": "10.13.1", + "@iot-app-kit/related-table": "10.13.1", + "@iot-app-kit/source-iottwinmaker": "10.13.1", "@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 c569eed5f..fa20f63b9 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.1](https://github.com/awslabs/iot-app-kit/compare/source-iotsitewise-v10.13.0...source-iotsitewise-v10.13.1) (2024-10-16) + + +### Miscellaneous Chores + +* **source-iotsitewise:** Synchronize iot-app-kit versions + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @iot-app-kit/core bumped from 10.13.0 to 10.13.1 + * @iot-app-kit/core-util bumped from 10.13.0 to 10.13.1 + * devDependencies + * @iot-app-kit/jest-config bumped from 10.13.0 to 10.13.1 + * @iot-app-kit/testing-util bumped from 10.13.0 to 10.13.1 + * @iot-app-kit/ts-config bumped from 10.13.0 to 10.13.1 + * eslint-config-iot-app-kit bumped from 10.13.0 to 10.13.1 + ## [10.13.0](https://github.com/awslabs/iot-app-kit/compare/source-iotsitewise-v10.12.2...source-iotsitewise-v10.13.0) (2024-10-10) diff --git a/packages/source-iotsitewise/package.json b/packages/source-iotsitewise/package.json index 5196cb900..0949a69b8 100644 --- a/packages/source-iotsitewise/package.json +++ b/packages/source-iotsitewise/package.json @@ -3,7 +3,7 @@ "publishConfig": { "access": "public" }, - "version": "10.13.0", + "version": "10.13.1", "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.13.0", - "@iot-app-kit/core-util": "10.13.0", + "@iot-app-kit/core": "10.13.1", + "@iot-app-kit/core-util": "10.13.1", "@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.13.0", - "@iot-app-kit/testing-util": "10.13.0", - "@iot-app-kit/ts-config": "10.13.0", + "@iot-app-kit/jest-config": "10.13.1", + "@iot-app-kit/testing-util": "10.13.1", + "@iot-app-kit/ts-config": "10.13.1", "@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.13.0", + "eslint-config-iot-app-kit": "10.13.1", "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 eae09c314..9f1bed16d 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.1](https://github.com/awslabs/iot-app-kit/compare/source-iottwinmaker-v10.13.0...source-iottwinmaker-v10.13.1) (2024-10-16) + + +### Miscellaneous Chores + +* **source-iottwinmaker:** Synchronize iot-app-kit versions + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @iot-app-kit/core bumped from 10.13.0 to 10.13.1 + * devDependencies + * @iot-app-kit/jest-config bumped from 10.13.0 to 10.13.1 + * @iot-app-kit/ts-config bumped from 10.13.0 to 10.13.1 + * eslint-config-iot-app-kit bumped from 10.13.0 to 10.13.1 + ## [10.13.0](https://github.com/awslabs/iot-app-kit/compare/source-iottwinmaker-v10.12.2...source-iottwinmaker-v10.13.0) (2024-10-10) diff --git a/packages/source-iottwinmaker/package.json b/packages/source-iottwinmaker/package.json index ea33a6d23..3e3b836cb 100644 --- a/packages/source-iottwinmaker/package.json +++ b/packages/source-iottwinmaker/package.json @@ -3,7 +3,7 @@ "publishConfig": { "access": "public" }, - "version": "10.13.0", + "version": "10.13.1", "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.13.0", + "@iot-app-kit/core": "10.13.1", "@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.13.0", - "@iot-app-kit/ts-config": "10.13.0", + "@iot-app-kit/jest-config": "10.13.1", + "@iot-app-kit/ts-config": "10.13.1", "@types/jest": "^29.4.0", "@types/lodash": "^4.14.195", "aws-sdk-client-mock": "^1.0.0", - "eslint-config-iot-app-kit": "10.13.0", + "eslint-config-iot-app-kit": "10.13.1", "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 0b7c0c4dd..08394b352 100644 --- a/packages/testing-util/CHANGELOG.md +++ b/packages/testing-util/CHANGELOG.md @@ -1,5 +1,22 @@ # Changelog +## [10.13.1](https://github.com/awslabs/iot-app-kit/compare/testing-util-v10.13.0...testing-util-v10.13.1) (2024-10-16) + + +### Miscellaneous Chores + +* **testing-util:** Synchronize iot-app-kit versions + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @iot-app-kit/core bumped from 10.13.0 to 10.13.1 + * devDependencies + * @iot-app-kit/ts-config bumped from ^10.13.0 to ^10.13.1 + * eslint-config-iot-app-kit bumped from ^10.13.0 to ^10.13.1 + ## [10.13.0](https://github.com/awslabs/iot-app-kit/compare/testing-util-v10.12.2...testing-util-v10.13.0) (2024-10-10) diff --git a/packages/testing-util/package.json b/packages/testing-util/package.json index 4fedc9e16..93ebabdbf 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.13.0", + "version": "10.13.1", "main": "./dist/cjs/index.js", "module": "./dist/es/index.js", "types": "./dist/es/index.d.ts", "dependencies": { - "@iot-app-kit/core": "10.13.0", + "@iot-app-kit/core": "10.13.1", "@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.13.0", - "eslint-config-iot-app-kit": "^10.13.0" + "@iot-app-kit/ts-config": "^10.13.1", + "eslint-config-iot-app-kit": "^10.13.1" } } diff --git a/packages/tools-iottwinmaker/CHANGELOG.md b/packages/tools-iottwinmaker/CHANGELOG.md index aa4b91f77..2c8ab11ff 100644 --- a/packages/tools-iottwinmaker/CHANGELOG.md +++ b/packages/tools-iottwinmaker/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [10.13.1](https://github.com/awslabs/iot-app-kit/compare/tools-iottwinmaker-v10.13.0...tools-iottwinmaker-v10.13.1) (2024-10-16) + + +### Miscellaneous Chores + +* **tools-iottwinmaker:** Synchronize iot-app-kit versions + ## [10.13.0](https://github.com/awslabs/iot-app-kit/compare/tools-iottwinmaker-v10.12.2...tools-iottwinmaker-v10.13.0) (2024-10-10) diff --git a/packages/tools-iottwinmaker/package.json b/packages/tools-iottwinmaker/package.json index d5328d977..83e66c249 100644 --- a/packages/tools-iottwinmaker/package.json +++ b/packages/tools-iottwinmaker/package.json @@ -3,7 +3,7 @@ "publishConfig": { "access": "public" }, - "version": "10.13.0", + "version": "10.13.1", "engines": { "node": ">=16", "npm": ">=8"