From 94b2eece7fda89e182c4014cf81f48bf4736b03d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 20 Nov 2024 14:57:39 +0000 Subject: [PATCH] chore: release 12.1.0 --- .release-please-manifest.json | 28 ++--- CHANGELOG.md | 7 ++ 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 | 118 +++++++++++----------- package.json | 2 +- 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 | 22 ++++ packages/dashboard/package.json | 18 ++-- packages/doc-site/CHANGELOG.md | 18 ++++ packages/doc-site/package.json | 10 +- packages/react-components/CHANGELOG.md | 23 +++++ packages/react-components/package.json | 20 ++-- packages/scene-composer/CHANGELOG.md | 18 ++++ packages/scene-composer/package.json | 10 +- 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 +- 30 files changed, 335 insertions(+), 131 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 82ef5dbc9..45c88d50b 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,16 +1,16 @@ { - "packages/core": "12.0.0", - "packages/dashboard": "12.0.0", - "packages/doc-site": "12.0.0", - "packages/core-util": "12.0.0", - "packages/react-components": "12.0.0", - "packages/scene-composer": "12.0.0", - "packages/source-iotsitewise": "12.0.0", - "packages/source-iottwinmaker": "12.0.0", - ".": "12.0.0", - "configuration/jest-config": "12.0.0", - "packages/testing-util": "12.0.0", - "configuration/ts-config": "12.0.0", - "configuration/eslint-config": "12.0.0", - "packages/tools-iottwinmaker": "12.0.0" + "packages/core": "12.1.0", + "packages/dashboard": "12.1.0", + "packages/doc-site": "12.1.0", + "packages/core-util": "12.1.0", + "packages/react-components": "12.1.0", + "packages/scene-composer": "12.1.0", + "packages/source-iotsitewise": "12.1.0", + "packages/source-iottwinmaker": "12.1.0", + ".": "12.1.0", + "configuration/jest-config": "12.1.0", + "packages/testing-util": "12.1.0", + "configuration/ts-config": "12.1.0", + "configuration/eslint-config": "12.1.0", + "packages/tools-iottwinmaker": "12.1.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 291350f81..a541b3b1b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,13 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [12.1.0](https://github.com/awslabs/iot-app-kit/compare/root-v12.0.0...root-v12.1.0) (2024-11-20) + + +### Features + +* assistant dashboard e2e ([583b7d9](https://github.com/awslabs/iot-app-kit/commit/583b7d98b5bc0e796c9cbe3898e4b1ba1502c5f4)) + ## [12.0.0](https://github.com/awslabs/iot-app-kit/compare/root-v11.0.0...root-v12.0.0) (2024-11-18) diff --git a/configuration/eslint-config/CHANGELOG.md b/configuration/eslint-config/CHANGELOG.md index 0a042b30d..2e9e1a3e2 100644 --- a/configuration/eslint-config/CHANGELOG.md +++ b/configuration/eslint-config/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [12.1.0](https://github.com/awslabs/iot-app-kit/compare/eslint-config-v12.0.0...eslint-config-v12.1.0) (2024-11-20) + + +### Miscellaneous Chores + +* **eslint-config:** Synchronize iot-app-kit versions + ## [12.0.0](https://github.com/awslabs/iot-app-kit/compare/eslint-config-v11.0.0...eslint-config-v12.0.0) (2024-11-18) diff --git a/configuration/eslint-config/package.json b/configuration/eslint-config/package.json index b5a01c2ab..e918ca19e 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": "12.0.0", + "version": "12.1.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 566546626..d41278ddb 100644 --- a/configuration/jest-config/CHANGELOG.md +++ b/configuration/jest-config/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [12.1.0](https://github.com/awslabs/iot-app-kit/compare/jest-config-v12.0.0...jest-config-v12.1.0) (2024-11-20) + + +### Miscellaneous Chores + +* **jest-config:** Synchronize iot-app-kit versions + ## [12.0.0](https://github.com/awslabs/iot-app-kit/compare/jest-config-v11.0.0...jest-config-v12.0.0) (2024-11-18) diff --git a/configuration/jest-config/package.json b/configuration/jest-config/package.json index b4db75a41..1e4f3b069 100644 --- a/configuration/jest-config/package.json +++ b/configuration/jest-config/package.json @@ -1,6 +1,6 @@ { "name": "@iot-app-kit/jest-config", - "version": "12.0.0", + "version": "12.1.0", "main": "index.ts", "private": true, "publishConfig": { diff --git a/configuration/ts-config/CHANGELOG.md b/configuration/ts-config/CHANGELOG.md index c82bfc7aa..79a04534a 100644 --- a/configuration/ts-config/CHANGELOG.md +++ b/configuration/ts-config/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [12.1.0](https://github.com/awslabs/iot-app-kit/compare/ts-config-v12.0.0...ts-config-v12.1.0) (2024-11-20) + + +### Miscellaneous Chores + +* **ts-config:** Synchronize iot-app-kit versions + ## [12.0.0](https://github.com/awslabs/iot-app-kit/compare/ts-config-v11.0.0...ts-config-v12.0.0) (2024-11-18) diff --git a/configuration/ts-config/package.json b/configuration/ts-config/package.json index 99b62f321..a4dffd8fe 100644 --- a/configuration/ts-config/package.json +++ b/configuration/ts-config/package.json @@ -1,6 +1,6 @@ { "name": "@iot-app-kit/ts-config", - "version": "12.0.0", + "version": "12.1.0", "type": "module", "private": true, "files": [ diff --git a/package-lock.json b/package-lock.json index 8d9d0547a..4bbcf21ee 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "iot-app-kit", - "version": "12.0.0", + "version": "12.1.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "iot-app-kit", - "version": "12.0.0", + "version": "12.1.0", "license": "Apache-2.0", "workspaces": [ "examples/*", @@ -33,7 +33,7 @@ }, "configuration/eslint-config": { "name": "eslint-config-iot-app-kit", - "version": "12.0.0", + "version": "12.1.0", "dependencies": { "@typescript-eslint/eslint-plugin": "^5.60.0", "@typescript-eslint/parser": "^5.62.0", @@ -91,7 +91,7 @@ }, "configuration/jest-config": { "name": "@iot-app-kit/jest-config", - "version": "12.0.0", + "version": "12.1.0", "devDependencies": { "@types/node": "^18.16.18", "typescript": "^4.9.5" @@ -116,7 +116,7 @@ }, "configuration/ts-config": { "name": "@iot-app-kit/ts-config", - "version": "12.0.0", + "version": "12.1.0", "devDependencies": { "@types/node": "^18.16.18", "typescript": "^4.9.5" @@ -63690,7 +63690,7 @@ }, "packages/core": { "name": "@iot-app-kit/core", - "version": "12.0.0", + "version": "12.1.0", "license": "Apache-2.0", "dependencies": { "d3-array": "^3.2.4", @@ -63701,13 +63701,13 @@ "uuid": "^9.0.0" }, "devDependencies": { - "@iot-app-kit/jest-config": "12.0.0", - "@iot-app-kit/ts-config": "12.0.0", + "@iot-app-kit/jest-config": "12.1.0", + "@iot-app-kit/ts-config": "12.1.0", "@types/d3-array": "^3.0.5", "@types/jest": "^29.4.0", "@types/node": "^18.16.18", "@types/uuid": "^9.0.2", - "eslint-config-iot-app-kit": "12.0.0", + "eslint-config-iot-app-kit": "12.1.0", "flush-promises": "^1.0.2", "jest": "^29.5.0", "jest-environment-jsdom": "^29.5.0", @@ -63721,18 +63721,18 @@ }, "packages/core-util": { "name": "@iot-app-kit/core-util", - "version": "12.0.0", + "version": "12.1.0", "license": "Apache-2.0", "dependencies": { - "@iot-app-kit/core": "12.0.0", + "@iot-app-kit/core": "12.1.0", "lodash.difference": "4.5.0", "pako": "^2.1.0", "zustand": "^4.5.2" }, "devDependencies": { "@aws-sdk/types": "^3.696.0", - "@iot-app-kit/jest-config": "12.0.0", - "@iot-app-kit/ts-config": "12.0.0", + "@iot-app-kit/jest-config": "12.1.0", + "@iot-app-kit/ts-config": "12.1.0", "@types/jest": "^29.4.0", "@types/lodash.difference": "4.5.9", "@types/node": "^18.16.18", @@ -63820,16 +63820,16 @@ }, "packages/dashboard": { "name": "@iot-app-kit/dashboard", - "version": "12.0.0", + "version": "12.1.0", "license": "Apache-2.0", "dependencies": { "@cloudscape-design/components": "3.0.693", "@cloudscape-design/design-tokens": "3.0.42", "@cloudscape-design/global-styles": "1.0.32", - "@iot-app-kit/core": "12.0.0", - "@iot-app-kit/core-util": "12.0.0", - "@iot-app-kit/react-components": "12.0.0", - "@iot-app-kit/source-iotsitewise": "12.0.0", + "@iot-app-kit/core": "12.1.0", + "@iot-app-kit/core-util": "12.1.0", + "@iot-app-kit/react-components": "12.1.0", + "@iot-app-kit/source-iotsitewise": "12.1.0", "@popperjs/core": "^2.11.8", "@reduxjs/toolkit": "^1.9.5", "@tanstack/react-query": "^5.40.1", @@ -63857,9 +63857,9 @@ }, "devDependencies": { "@faker-js/faker": "^8.2.0", - "@iot-app-kit/jest-config": "12.0.0", - "@iot-app-kit/testing-util": "12.0.0", - "@iot-app-kit/ts-config": "12.0.0", + "@iot-app-kit/jest-config": "12.1.0", + "@iot-app-kit/testing-util": "12.1.0", + "@iot-app-kit/ts-config": "12.1.0", "@playwright/test": "^1.48.2", "@storybook/addon-essentials": "^6.5.16", "@storybook/addon-interactions": "^6.5.16", @@ -63884,7 +63884,7 @@ "copyfiles": "^2.4.1", "css-loader": "6.8.1", "dotenv": "^16.3.1", - "eslint-config-iot-app-kit": "12.0.0", + "eslint-config-iot-app-kit": "12.1.0", "eslint-plugin-jsx-a11y": "^6.8.0", "identity-obj-proxy": "^3.0.0", "jest": "^29.5.0", @@ -64511,13 +64511,13 @@ }, "packages/doc-site": { "name": "@iot-app-kit/doc-site", - "version": "12.0.0", + "version": "12.1.0", "dependencies": { - "@iot-app-kit/core": "12.0.0", - "@iot-app-kit/react-components": "12.0.0" + "@iot-app-kit/core": "12.1.0", + "@iot-app-kit/react-components": "12.1.0" }, "devDependencies": { - "@iot-app-kit/testing-util": "12.0.0", + "@iot-app-kit/testing-util": "12.1.0", "@storybook/addon-essentials": "^7.6.6", "@storybook/addon-interactions": "^7.6.6", "@storybook/addon-links": "^7.6.6", @@ -64530,7 +64530,7 @@ "@storybook/test": "^7.6.6", "@storybook/theming": "^7.6.6", "@types/node": "^18.16.18", - "eslint-config-iot-app-kit": "12.0.0", + "eslint-config-iot-app-kit": "12.1.0", "prop-types": "^15.8.1", "react": "^18.2.0", "react-dom": "^18.2.0", @@ -65469,7 +65469,7 @@ }, "packages/react-components": { "name": "@iot-app-kit/react-components", - "version": "12.0.0", + "version": "12.1.0", "license": "Apache-2.0", "dependencies": { "@cloudscape-design/chat-components": "^1.0.10", @@ -65479,9 +65479,9 @@ "@cloudscape-design/global-styles": "1.0.32", "@iot-app-kit/charts": "^2.1.2", "@iot-app-kit/charts-core": "^2.1.2", - "@iot-app-kit/core": "12.0.0", - "@iot-app-kit/core-util": "12.0.0", - "@iot-app-kit/source-iottwinmaker": "12.0.0", + "@iot-app-kit/core": "12.1.0", + "@iot-app-kit/core-util": "12.1.0", + "@iot-app-kit/source-iottwinmaker": "12.1.0", "@tanstack/react-query": "^5.32.1", "autosize": "^6.0.1", "color": "^4.2.3", @@ -65523,11 +65523,11 @@ "zustand": "^4.3.9" }, "devDependencies": { - "@iot-app-kit/core": "12.0.0", - "@iot-app-kit/jest-config": "12.0.0", - "@iot-app-kit/source-iotsitewise": "12.0.0", - "@iot-app-kit/testing-util": "12.0.0", - "@iot-app-kit/ts-config": "12.0.0", + "@iot-app-kit/core": "12.1.0", + "@iot-app-kit/jest-config": "12.1.0", + "@iot-app-kit/source-iotsitewise": "12.1.0", + "@iot-app-kit/testing-util": "12.1.0", + "@iot-app-kit/ts-config": "12.1.0", "@jest/globals": "^29.5.0", "@playwright/test": "^1.48.2", "@storybook/addon-essentials": "^6.5.16", @@ -65570,7 +65570,7 @@ "babel-plugin-formatjs": "10.5.3", "copyfiles": "^2.4.1", "cytoscape": "^3.25.0", - "eslint-config-iot-app-kit": "12.0.0", + "eslint-config-iot-app-kit": "12.1.0", "eslint-plugin-jsx-a11y": "^6.8.0", "flush-promises": "^1.0.2", "jest": "^29.5.0", @@ -66926,7 +66926,7 @@ }, "packages/scene-composer": { "name": "@iot-app-kit/scene-composer", - "version": "12.0.0", + "version": "12.1.0", "license": "Apache-2.0", "dependencies": { "@aws-sdk/client-iottwinmaker": "3.589.0", @@ -66934,9 +66934,9 @@ "@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": "12.0.0", - "@iot-app-kit/react-components": "12.0.0", - "@iot-app-kit/source-iottwinmaker": "12.0.0", + "@iot-app-kit/core": "12.1.0", + "@iot-app-kit/react-components": "12.1.0", + "@iot-app-kit/source-iottwinmaker": "12.1.0", "@matterport/r3f": "0.2.7", "@matterport/webcomponent": "0.1.35", "@react-three/drei": "9.56.27", @@ -67011,7 +67011,7 @@ "babel-jest": "^29.6.4", "babel-plugin-formatjs": "10.5.3", "copyfiles": "^2.4.1", - "eslint-config-iot-app-kit": "12.0.0", + "eslint-config-iot-app-kit": "12.1.0", "husky": "8.0.3", "jest": "^29.7.0", "jest-coverage-ratchet": "^0.2.3", @@ -68992,11 +68992,11 @@ }, "packages/source-iotsitewise": { "name": "@iot-app-kit/source-iotsitewise", - "version": "12.0.0", + "version": "12.1.0", "license": "Apache-2.0", "dependencies": { - "@iot-app-kit/core": "12.0.0", - "@iot-app-kit/core-util": "12.0.0", + "@iot-app-kit/core": "12.1.0", + "@iot-app-kit/core-util": "12.1.0", "@synchro-charts/core": "7.2.0", "dataloader": "^2.2.2", "lodash.isequal": "^4.5.0", @@ -69006,15 +69006,15 @@ }, "devDependencies": { "@aws-sdk/types": "^3.696.0", - "@iot-app-kit/jest-config": "12.0.0", - "@iot-app-kit/testing-util": "12.0.0", - "@iot-app-kit/ts-config": "12.0.0", + "@iot-app-kit/jest-config": "12.1.0", + "@iot-app-kit/testing-util": "12.1.0", + "@iot-app-kit/ts-config": "12.1.0", "@types/jest": "^29.4.0", "@types/lodash.isequal": "^4.5.6", "@types/lodash.merge": "^4.6.7", "@types/lodash.uniqwith": "^4.5.7", "@types/node": "^18.16.18", - "eslint-config-iot-app-kit": "12.0.0", + "eslint-config-iot-app-kit": "12.1.0", "flush-promises": "^1.0.2", "jest": "^29.5.0", "jest-environment-jsdom": "^29.5.0", @@ -69071,7 +69071,7 @@ }, "packages/source-iottwinmaker": { "name": "@iot-app-kit/source-iottwinmaker", - "version": "12.0.0", + "version": "12.1.0", "license": "Apache-2.0", "dependencies": { "@aws-sdk/client-iotsitewise": "3.696.0", @@ -69081,20 +69081,20 @@ "@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": "12.0.0", + "@iot-app-kit/core": "12.1.0", "@tanstack/query-core": "^4.29.15", "lodash": "^4.17.21", "rxjs": "^7.8.1" }, "devDependencies": { "@aws-sdk/types": "^3.696.0", - "@iot-app-kit/jest-config": "12.0.0", - "@iot-app-kit/ts-config": "12.0.0", + "@iot-app-kit/jest-config": "12.1.0", + "@iot-app-kit/ts-config": "12.1.0", "@types/jest": "^29.4.0", "@types/lodash": "^4.14.195", "@types/node": "^18.16.18", "aws-sdk-client-mock": "^1.0.0", - "eslint-config-iot-app-kit": "12.0.0", + "eslint-config-iot-app-kit": "12.1.0", "flush-promises": "^1.0.2", "jest": "^29.5.0", "jest-environment-jsdom": "^29.5.0", @@ -69147,18 +69147,18 @@ }, "packages/testing-util": { "name": "@iot-app-kit/testing-util", - "version": "12.0.0", + "version": "12.1.0", "license": "Apache-2.0", "dependencies": { "@aws-sdk/client-iot-events": "3.354.0", "@aws-sdk/client-iotsitewise": "3.696.0", - "@iot-app-kit/core": "12.0.0", + "@iot-app-kit/core": "12.1.0", "parse-duration": "^1.1.0" }, "devDependencies": { - "@iot-app-kit/ts-config": "12.0.0", + "@iot-app-kit/ts-config": "12.1.0", "@types/node": "^18.16.18", - "eslint-config-iot-app-kit": "12.0.0", + "eslint-config-iot-app-kit": "12.1.0", "rimraf": "^5.0.1", "typescript": "^4.9.5" } @@ -69182,7 +69182,7 @@ }, "packages/tools-iottwinmaker": { "name": "@iot-app-kit/tools-iottwinmaker", - "version": "12.0.0", + "version": "12.1.0", "dependencies": { "@aws-sdk/client-cloudformation": "^3.376.0", "@aws-sdk/client-iam": "^3.363.0", diff --git a/package.json b/package.json index e12d4cf46..428bab749 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "iot-app-kit", "private": true, "description": "IoT Application Kit", - "version": "12.0.0", + "version": "12.1.0", "main": "index.js", "license": "Apache-2.0", "repository": "git@github.com:awslabs/iot-app-kit.git", diff --git a/packages/core-util/CHANGELOG.md b/packages/core-util/CHANGELOG.md index 64d667aeb..62f960f1f 100644 --- a/packages/core-util/CHANGELOG.md +++ b/packages/core-util/CHANGELOG.md @@ -1,5 +1,22 @@ # Changelog +## [12.1.0](https://github.com/awslabs/iot-app-kit/compare/core-util-v12.0.0...core-util-v12.1.0) (2024-11-20) + + +### Miscellaneous Chores + +* **core-util:** Synchronize iot-app-kit versions + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @iot-app-kit/core bumped from 12.0.0 to 12.1.0 + * devDependencies + * @iot-app-kit/jest-config bumped from 12.0.0 to 12.1.0 + * @iot-app-kit/ts-config bumped from 12.0.0 to 12.1.0 + ## [12.0.0](https://github.com/awslabs/iot-app-kit/compare/core-util-v11.0.0...core-util-v12.0.0) (2024-11-18) diff --git a/packages/core-util/package.json b/packages/core-util/package.json index b19b7a2b7..59ebed2f0 100644 --- a/packages/core-util/package.json +++ b/packages/core-util/package.json @@ -4,7 +4,7 @@ "publishConfig": { "access": "public" }, - "version": "12.0.0", + "version": "12.1.0", "types": "dist/esm/index.d.ts", "main": "dist/cjs/index.js", "module": "dist/esm/index.js", @@ -39,15 +39,15 @@ "pack": "npm pack" }, "dependencies": { - "@iot-app-kit/core": "12.0.0", + "@iot-app-kit/core": "12.1.0", "lodash.difference": "4.5.0", "pako": "^2.1.0", "zustand": "^4.5.2" }, "devDependencies": { "@aws-sdk/types": "^3.696.0", - "@iot-app-kit/jest-config": "12.0.0", - "@iot-app-kit/ts-config": "12.0.0", + "@iot-app-kit/jest-config": "12.1.0", + "@iot-app-kit/ts-config": "12.1.0", "@types/jest": "^29.4.0", "@types/lodash.difference": "4.5.9", "@types/node": "^18.16.18", diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index cb94cfede..b1b3a7d1f 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. +## [12.1.0](https://github.com/awslabs/iot-app-kit/compare/core-v12.0.0...core-v12.1.0) (2024-11-20) + + +### Miscellaneous Chores + +* **core:** Synchronize iot-app-kit versions + + +### Dependencies + +* The following workspace dependencies were updated + * devDependencies + * @iot-app-kit/jest-config bumped from 12.0.0 to 12.1.0 + * @iot-app-kit/ts-config bumped from 12.0.0 to 12.1.0 + * eslint-config-iot-app-kit bumped from 12.0.0 to 12.1.0 + ## [12.0.0](https://github.com/awslabs/iot-app-kit/compare/core-v11.0.0...core-v12.0.0) (2024-11-18) diff --git a/packages/core/package.json b/packages/core/package.json index 877d17ac1..c5d5fdcc5 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -4,7 +4,7 @@ "publishConfig": { "access": "public" }, - "version": "12.0.0", + "version": "12.1.0", "description": "IoT Application Kit core", "main": "./dist/cjs/index.js", "module": "./dist/esm/index.js", @@ -61,13 +61,13 @@ "uuid": "^9.0.0" }, "devDependencies": { - "@iot-app-kit/jest-config": "12.0.0", - "@iot-app-kit/ts-config": "12.0.0", + "@iot-app-kit/jest-config": "12.1.0", + "@iot-app-kit/ts-config": "12.1.0", "@types/d3-array": "^3.0.5", "@types/jest": "^29.4.0", "@types/node": "^18.16.18", "@types/uuid": "^9.0.2", - "eslint-config-iot-app-kit": "12.0.0", + "eslint-config-iot-app-kit": "12.1.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 5a07725af..1ca6339e0 100644 --- a/packages/dashboard/CHANGELOG.md +++ b/packages/dashboard/CHANGELOG.md @@ -1,5 +1,27 @@ # Changelog +## [12.1.0](https://github.com/awslabs/iot-app-kit/compare/dashboard-v12.0.0...dashboard-v12.1.0) (2024-11-20) + + +### Features + +* assistant dashboard e2e ([583b7d9](https://github.com/awslabs/iot-app-kit/commit/583b7d98b5bc0e796c9cbe3898e4b1ba1502c5f4)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @iot-app-kit/core bumped from 12.0.0 to 12.1.0 + * @iot-app-kit/core-util bumped from 12.0.0 to 12.1.0 + * @iot-app-kit/react-components bumped from 12.0.0 to 12.1.0 + * @iot-app-kit/source-iotsitewise bumped from 12.0.0 to 12.1.0 + * devDependencies + * @iot-app-kit/jest-config bumped from 12.0.0 to 12.1.0 + * @iot-app-kit/testing-util bumped from 12.0.0 to 12.1.0 + * @iot-app-kit/ts-config bumped from 12.0.0 to 12.1.0 + * eslint-config-iot-app-kit bumped from 12.0.0 to 12.1.0 + ## [12.0.0](https://github.com/awslabs/iot-app-kit/compare/dashboard-v11.0.0...dashboard-v12.0.0) (2024-11-18) diff --git a/packages/dashboard/package.json b/packages/dashboard/package.json index 0dd9e5c8c..e021ffc22 100644 --- a/packages/dashboard/package.json +++ b/packages/dashboard/package.json @@ -3,7 +3,7 @@ "publishConfig": { "access": "public" }, - "version": "12.0.0", + "version": "12.1.0", "description": "A dashboard widget for IoT App Kit components", "homepage": "https://github.com/awslabs/iot-app-kit#readme", "license": "Apache-2.0", @@ -53,9 +53,9 @@ }, "devDependencies": { "@faker-js/faker": "^8.2.0", - "@iot-app-kit/jest-config": "12.0.0", - "@iot-app-kit/testing-util": "12.0.0", - "@iot-app-kit/ts-config": "12.0.0", + "@iot-app-kit/jest-config": "12.1.0", + "@iot-app-kit/testing-util": "12.1.0", + "@iot-app-kit/ts-config": "12.1.0", "@playwright/test": "^1.48.2", "@storybook/addon-essentials": "^6.5.16", "@storybook/addon-interactions": "^6.5.16", @@ -80,7 +80,7 @@ "copyfiles": "^2.4.1", "css-loader": "6.8.1", "dotenv": "^16.3.1", - "eslint-config-iot-app-kit": "12.0.0", + "eslint-config-iot-app-kit": "12.1.0", "eslint-plugin-jsx-a11y": "^6.8.0", "identity-obj-proxy": "^3.0.0", "jest": "^29.5.0", @@ -103,10 +103,10 @@ "@cloudscape-design/components": "3.0.693", "@cloudscape-design/design-tokens": "3.0.42", "@cloudscape-design/global-styles": "1.0.32", - "@iot-app-kit/core": "12.0.0", - "@iot-app-kit/core-util": "12.0.0", - "@iot-app-kit/react-components": "12.0.0", - "@iot-app-kit/source-iotsitewise": "12.0.0", + "@iot-app-kit/core": "12.1.0", + "@iot-app-kit/core-util": "12.1.0", + "@iot-app-kit/react-components": "12.1.0", + "@iot-app-kit/source-iotsitewise": "12.1.0", "@popperjs/core": "^2.11.8", "@reduxjs/toolkit": "^1.9.5", "@tanstack/react-query": "^5.40.1", diff --git a/packages/doc-site/CHANGELOG.md b/packages/doc-site/CHANGELOG.md index 10405b9ec..bd19ea49c 100644 --- a/packages/doc-site/CHANGELOG.md +++ b/packages/doc-site/CHANGELOG.md @@ -1,5 +1,23 @@ # Changelog +## [12.1.0](https://github.com/awslabs/iot-app-kit/compare/doc-site-v12.0.0...doc-site-v12.1.0) (2024-11-20) + + +### Miscellaneous Chores + +* **doc-site:** Synchronize iot-app-kit versions + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @iot-app-kit/core bumped from 12.0.0 to 12.1.0 + * @iot-app-kit/react-components bumped from 12.0.0 to 12.1.0 + * devDependencies + * @iot-app-kit/testing-util bumped from 12.0.0 to 12.1.0 + * eslint-config-iot-app-kit bumped from 12.0.0 to 12.1.0 + ## [12.0.0](https://github.com/awslabs/iot-app-kit/compare/doc-site-v11.0.0...doc-site-v12.0.0) (2024-11-18) diff --git a/packages/doc-site/package.json b/packages/doc-site/package.json index 1d538176a..c53c50f57 100644 --- a/packages/doc-site/package.json +++ b/packages/doc-site/package.json @@ -1,6 +1,6 @@ { "name": "@iot-app-kit/doc-site", - "version": "12.0.0", + "version": "12.1.0", "private": true, "scripts": { "storybook": "storybook dev -p 6006", @@ -13,7 +13,7 @@ "fix": "eslint --fix . --cache --cache-location .cache/eslint/" }, "devDependencies": { - "@iot-app-kit/testing-util": "12.0.0", + "@iot-app-kit/testing-util": "12.1.0", "@storybook/addon-essentials": "^7.6.6", "@storybook/addon-interactions": "^7.6.6", "@storybook/addon-links": "^7.6.6", @@ -26,7 +26,7 @@ "@storybook/test": "^7.6.6", "@storybook/theming": "^7.6.6", "@types/node": "^18.16.18", - "eslint-config-iot-app-kit": "12.0.0", + "eslint-config-iot-app-kit": "12.1.0", "prop-types": "^15.8.1", "react": "^18.2.0", "react-dom": "^18.2.0", @@ -35,7 +35,7 @@ "typescript": "^4.9.5" }, "dependencies": { - "@iot-app-kit/core": "12.0.0", - "@iot-app-kit/react-components": "12.0.0" + "@iot-app-kit/core": "12.1.0", + "@iot-app-kit/react-components": "12.1.0" } } diff --git a/packages/react-components/CHANGELOG.md b/packages/react-components/CHANGELOG.md index 10fd8399d..30d672807 100644 --- a/packages/react-components/CHANGELOG.md +++ b/packages/react-components/CHANGELOG.md @@ -2,6 +2,29 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [12.1.0](https://github.com/awslabs/iot-app-kit/compare/react-components-v12.0.0...react-components-v12.1.0) (2024-11-20) + + +### Miscellaneous Chores + +* **react-components:** Synchronize iot-app-kit versions + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @iot-app-kit/core bumped from 12.0.0 to 12.1.0 + * @iot-app-kit/core-util bumped from 12.0.0 to 12.1.0 + * @iot-app-kit/source-iottwinmaker bumped from 12.0.0 to 12.1.0 + * devDependencies + * @iot-app-kit/core bumped from 12.0.0 to 12.1.0 + * @iot-app-kit/jest-config bumped from 12.0.0 to 12.1.0 + * @iot-app-kit/source-iotsitewise bumped from 12.0.0 to 12.1.0 + * @iot-app-kit/testing-util bumped from 12.0.0 to 12.1.0 + * @iot-app-kit/ts-config bumped from 12.0.0 to 12.1.0 + * eslint-config-iot-app-kit bumped from 12.0.0 to 12.1.0 + ## [12.0.0](https://github.com/awslabs/iot-app-kit/compare/react-components-v11.0.0...react-components-v12.0.0) (2024-11-18) diff --git a/packages/react-components/package.json b/packages/react-components/package.json index 0487420e3..fa72258b3 100644 --- a/packages/react-components/package.json +++ b/packages/react-components/package.json @@ -22,7 +22,7 @@ "publishConfig": { "access": "public" }, - "version": "12.0.0", + "version": "12.1.0", "scripts": { "start": "npx start-storybook -p 6007", "build": "tsc -b ./tsconfig.cjs.json ./tsconfig.esm.json && npm run copy-assets:es && npm run copy-assets:cjs", @@ -58,11 +58,11 @@ "pack": "npm pack" }, "devDependencies": { - "@iot-app-kit/core": "12.0.0", - "@iot-app-kit/jest-config": "12.0.0", - "@iot-app-kit/source-iotsitewise": "12.0.0", - "@iot-app-kit/testing-util": "12.0.0", - "@iot-app-kit/ts-config": "12.0.0", + "@iot-app-kit/core": "12.1.0", + "@iot-app-kit/jest-config": "12.1.0", + "@iot-app-kit/source-iotsitewise": "12.1.0", + "@iot-app-kit/testing-util": "12.1.0", + "@iot-app-kit/ts-config": "12.1.0", "@jest/globals": "^29.5.0", "@playwright/test": "^1.48.2", "@storybook/addon-essentials": "^6.5.16", @@ -105,7 +105,7 @@ "babel-plugin-formatjs": "10.5.3", "copyfiles": "^2.4.1", "cytoscape": "^3.25.0", - "eslint-config-iot-app-kit": "12.0.0", + "eslint-config-iot-app-kit": "12.1.0", "eslint-plugin-jsx-a11y": "^6.8.0", "flush-promises": "^1.0.2", "jest": "^29.5.0", @@ -127,9 +127,9 @@ "@cloudscape-design/global-styles": "1.0.32", "@iot-app-kit/charts": "^2.1.2", "@iot-app-kit/charts-core": "^2.1.2", - "@iot-app-kit/core": "12.0.0", - "@iot-app-kit/core-util": "12.0.0", - "@iot-app-kit/source-iottwinmaker": "12.0.0", + "@iot-app-kit/core": "12.1.0", + "@iot-app-kit/core-util": "12.1.0", + "@iot-app-kit/source-iottwinmaker": "12.1.0", "@tanstack/react-query": "^5.32.1", "autosize": "^6.0.1", "color": "^4.2.3", diff --git a/packages/scene-composer/CHANGELOG.md b/packages/scene-composer/CHANGELOG.md index d76e3e821..50a5f126e 100644 --- a/packages/scene-composer/CHANGELOG.md +++ b/packages/scene-composer/CHANGELOG.md @@ -4,6 +4,24 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [12.1.0](https://github.com/awslabs/iot-app-kit/compare/scene-composer-v12.0.0...scene-composer-v12.1.0) (2024-11-20) + + +### Miscellaneous Chores + +* **scene-composer:** Synchronize iot-app-kit versions + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @iot-app-kit/core bumped from 12.0.0 to 12.1.0 + * @iot-app-kit/react-components bumped from 12.0.0 to 12.1.0 + * @iot-app-kit/source-iottwinmaker bumped from 12.0.0 to 12.1.0 + * devDependencies + * eslint-config-iot-app-kit bumped from 12.0.0 to 12.1.0 + ## [12.0.0](https://github.com/awslabs/iot-app-kit/compare/scene-composer-v11.0.0...scene-composer-v12.0.0) (2024-11-18) diff --git a/packages/scene-composer/package.json b/packages/scene-composer/package.json index 5b345d50e..2899aaa70 100644 --- a/packages/scene-composer/package.json +++ b/packages/scene-composer/package.json @@ -3,7 +3,7 @@ "publishConfig": { "access": "public" }, - "version": "12.0.0", + "version": "12.1.0", "description": "AWS IoT TwinMaker Scene Composer Library", "homepage": "https://github.com/awslabs/iot-app-kit#readme", "license": "Apache-2.0", @@ -126,7 +126,7 @@ "babel-jest": "^29.6.4", "babel-plugin-formatjs": "10.5.3", "copyfiles": "^2.4.1", - "eslint-config-iot-app-kit": "12.0.0", + "eslint-config-iot-app-kit": "12.1.0", "husky": "8.0.3", "jest": "^29.7.0", "jest-coverage-ratchet": "^0.2.3", @@ -159,9 +159,9 @@ "@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": "12.0.0", - "@iot-app-kit/react-components": "12.0.0", - "@iot-app-kit/source-iottwinmaker": "12.0.0", + "@iot-app-kit/core": "12.1.0", + "@iot-app-kit/react-components": "12.1.0", + "@iot-app-kit/source-iottwinmaker": "12.1.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 57afede69..3c43a6189 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. +## [12.1.0](https://github.com/awslabs/iot-app-kit/compare/source-iotsitewise-v12.0.0...source-iotsitewise-v12.1.0) (2024-11-20) + + +### Miscellaneous Chores + +* **source-iotsitewise:** Synchronize iot-app-kit versions + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @iot-app-kit/core bumped from 12.0.0 to 12.1.0 + * @iot-app-kit/core-util bumped from 12.0.0 to 12.1.0 + * devDependencies + * @iot-app-kit/jest-config bumped from 12.0.0 to 12.1.0 + * @iot-app-kit/testing-util bumped from 12.0.0 to 12.1.0 + * @iot-app-kit/ts-config bumped from 12.0.0 to 12.1.0 + * eslint-config-iot-app-kit bumped from 12.0.0 to 12.1.0 + ## [12.0.0](https://github.com/awslabs/iot-app-kit/compare/source-iotsitewise-v11.0.0...source-iotsitewise-v12.0.0) (2024-11-18) diff --git a/packages/source-iotsitewise/package.json b/packages/source-iotsitewise/package.json index cf50b20b2..6a7f4b702 100644 --- a/packages/source-iotsitewise/package.json +++ b/packages/source-iotsitewise/package.json @@ -3,7 +3,7 @@ "publishConfig": { "access": "public" }, - "version": "12.0.0", + "version": "12.1.0", "description": "AWS IoT SiteWise source for IoT Application Kit", "homepage": "https://github.com/awslabs/iot-app-kit#readme", "license": "Apache-2.0", @@ -53,8 +53,8 @@ "pack": "npm pack" }, "dependencies": { - "@iot-app-kit/core": "12.0.0", - "@iot-app-kit/core-util": "12.0.0", + "@iot-app-kit/core": "12.1.0", + "@iot-app-kit/core-util": "12.1.0", "@synchro-charts/core": "7.2.0", "dataloader": "^2.2.2", "lodash.isequal": "^4.5.0", @@ -64,15 +64,15 @@ }, "devDependencies": { "@aws-sdk/types": "^3.696.0", - "@iot-app-kit/jest-config": "12.0.0", - "@iot-app-kit/testing-util": "12.0.0", - "@iot-app-kit/ts-config": "12.0.0", + "@iot-app-kit/jest-config": "12.1.0", + "@iot-app-kit/testing-util": "12.1.0", + "@iot-app-kit/ts-config": "12.1.0", "@types/jest": "^29.4.0", "@types/lodash.isequal": "^4.5.6", "@types/lodash.merge": "^4.6.7", "@types/lodash.uniqwith": "^4.5.7", "@types/node": "^18.16.18", - "eslint-config-iot-app-kit": "12.0.0", + "eslint-config-iot-app-kit": "12.1.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 3db7c27d5..55e60640f 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. +## [12.1.0](https://github.com/awslabs/iot-app-kit/compare/source-iottwinmaker-v12.0.0...source-iottwinmaker-v12.1.0) (2024-11-20) + + +### Miscellaneous Chores + +* **source-iottwinmaker:** Synchronize iot-app-kit versions + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @iot-app-kit/core bumped from 12.0.0 to 12.1.0 + * devDependencies + * @iot-app-kit/jest-config bumped from 12.0.0 to 12.1.0 + * @iot-app-kit/ts-config bumped from 12.0.0 to 12.1.0 + * eslint-config-iot-app-kit bumped from 12.0.0 to 12.1.0 + ## [12.0.0](https://github.com/awslabs/iot-app-kit/compare/source-iottwinmaker-v11.0.0...source-iottwinmaker-v12.0.0) (2024-11-18) diff --git a/packages/source-iottwinmaker/package.json b/packages/source-iottwinmaker/package.json index 2e8871620..611790dd1 100644 --- a/packages/source-iottwinmaker/package.json +++ b/packages/source-iottwinmaker/package.json @@ -3,7 +3,7 @@ "publishConfig": { "access": "public" }, - "version": "12.0.0", + "version": "12.1.0", "description": "AWS IoT TwinMaker source for IoT Application Kit", "homepage": "https://github.com/awslabs/iot-app-kit#readme", "license": "Apache-2.0", @@ -59,20 +59,20 @@ "@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": "12.0.0", + "@iot-app-kit/core": "12.1.0", "@tanstack/query-core": "^4.29.15", "lodash": "^4.17.21", "rxjs": "^7.8.1" }, "devDependencies": { "@aws-sdk/types": "^3.696.0", - "@iot-app-kit/jest-config": "12.0.0", - "@iot-app-kit/ts-config": "12.0.0", + "@iot-app-kit/jest-config": "12.1.0", + "@iot-app-kit/ts-config": "12.1.0", "@types/jest": "^29.4.0", "@types/lodash": "^4.14.195", "@types/node": "^18.16.18", "aws-sdk-client-mock": "^1.0.0", - "eslint-config-iot-app-kit": "12.0.0", + "eslint-config-iot-app-kit": "12.1.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 889a7352e..840a72aaf 100644 --- a/packages/testing-util/CHANGELOG.md +++ b/packages/testing-util/CHANGELOG.md @@ -1,5 +1,22 @@ # Changelog +## [12.1.0](https://github.com/awslabs/iot-app-kit/compare/testing-util-v12.0.0...testing-util-v12.1.0) (2024-11-20) + + +### Miscellaneous Chores + +* **testing-util:** Synchronize iot-app-kit versions + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @iot-app-kit/core bumped from 12.0.0 to 12.1.0 + * devDependencies + * @iot-app-kit/ts-config bumped from 12.0.0 to 12.1.0 + * eslint-config-iot-app-kit bumped from 12.0.0 to 12.1.0 + ## [12.0.0](https://github.com/awslabs/iot-app-kit/compare/testing-util-v11.0.0...testing-util-v12.0.0) (2024-11-18) diff --git a/packages/testing-util/package.json b/packages/testing-util/package.json index 6c793d8c5..e80263edb 100644 --- a/packages/testing-util/package.json +++ b/packages/testing-util/package.json @@ -2,7 +2,7 @@ "name": "@iot-app-kit/testing-util", "license": "Apache-2.0", "private": true, - "version": "12.0.0", + "version": "12.1.0", "main": "./dist/cjs/index.js", "module": "./dist/esm/index.js", "types": "./dist/esm/index.d.ts", @@ -32,13 +32,13 @@ "dependencies": { "@aws-sdk/client-iot-events": "3.354.0", "@aws-sdk/client-iotsitewise": "3.696.0", - "@iot-app-kit/core": "12.0.0", + "@iot-app-kit/core": "12.1.0", "parse-duration": "^1.1.0" }, "devDependencies": { - "@iot-app-kit/ts-config": "12.0.0", + "@iot-app-kit/ts-config": "12.1.0", "@types/node": "^18.16.18", - "eslint-config-iot-app-kit": "12.0.0", + "eslint-config-iot-app-kit": "12.1.0", "rimraf": "^5.0.1", "typescript": "^4.9.5" } diff --git a/packages/tools-iottwinmaker/CHANGELOG.md b/packages/tools-iottwinmaker/CHANGELOG.md index a1df30f0b..161eeb7d4 100644 --- a/packages/tools-iottwinmaker/CHANGELOG.md +++ b/packages/tools-iottwinmaker/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [12.1.0](https://github.com/awslabs/iot-app-kit/compare/tools-iottwinmaker-v12.0.0...tools-iottwinmaker-v12.1.0) (2024-11-20) + + +### Miscellaneous Chores + +* **tools-iottwinmaker:** Synchronize iot-app-kit versions + ## [12.0.0](https://github.com/awslabs/iot-app-kit/compare/tools-iottwinmaker-v11.0.0...tools-iottwinmaker-v12.0.0) (2024-11-18) diff --git a/packages/tools-iottwinmaker/package.json b/packages/tools-iottwinmaker/package.json index 72f3ec7fc..4316c4eeb 100644 --- a/packages/tools-iottwinmaker/package.json +++ b/packages/tools-iottwinmaker/package.json @@ -3,7 +3,7 @@ "publishConfig": { "access": "public" }, - "version": "12.0.0", + "version": "12.1.0", "engines": { "node": ">=16", "npm": ">=8"