Skip to content

Commit c490203

Browse files
github-actions[bot]mixu3
authored andcommitted
chore: release 12.5.1
1 parent 3eed077 commit c490203

28 files changed

+327
-124
lines changed

.release-please-manifest.json

+13-13
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
{
2-
"packages/core": "12.5.0",
3-
"packages/dashboard": "12.5.0",
4-
"apps/doc-site": "12.5.0",
5-
"packages/core-util": "12.5.0",
6-
"packages/react-components": "12.5.0",
7-
"packages/scene-composer": "12.5.0",
8-
"packages/source-iotsitewise": "12.5.0",
9-
"packages/source-iottwinmaker": "12.5.0",
10-
".": "12.5.0",
11-
"packages/testing-util": "12.5.0",
12-
"packages/tools-iottwinmaker": "12.5.0",
13-
"configuration/ts-config": "12.5.0",
14-
"configuration/eslint-config": "12.5.0"
2+
"packages/core": "12.5.1",
3+
"packages/dashboard": "12.5.1",
4+
"apps/doc-site": "12.5.1",
5+
"packages/core-util": "12.5.1",
6+
"packages/react-components": "12.5.1",
7+
"packages/scene-composer": "12.5.1",
8+
"packages/source-iotsitewise": "12.5.1",
9+
"packages/source-iottwinmaker": "12.5.1",
10+
".": "12.5.1",
11+
"packages/testing-util": "12.5.1",
12+
"packages/tools-iottwinmaker": "12.5.1",
13+
"configuration/ts-config": "12.5.1",
14+
"configuration/eslint-config": "12.5.1"
1515
}

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [12.5.1](https://github.com/awslabs/iot-app-kit/compare/root-v12.5.0...root-v12.5.1) (2025-03-31)
7+
8+
9+
### Bug Fixes
10+
11+
* client side errors from unexpected null/undefined values ([3eed077](https://github.com/awslabs/iot-app-kit/commit/3eed077cec9beb72ab7fea145b0271af4a910023))
12+
* optional property check for error metadata ([fcdc702](https://github.com/awslabs/iot-app-kit/commit/fcdc7029ab41c408e0d9c3421db1214eac58b00f))
13+
614
## [12.5.0](https://github.com/awslabs/iot-app-kit/compare/root-v12.4.0...root-v12.5.0) (2025-02-03)
715

816

apps/doc-site/CHANGELOG.md

+19
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,24 @@
11
# Changelog
22

3+
## [12.5.1](https://github.com/awslabs/iot-app-kit/compare/doc-site-v12.5.0...doc-site-v12.5.1) (2025-03-31)
4+
5+
6+
### Miscellaneous Chores
7+
8+
* **doc-site:** Synchronize iot-app-kit versions
9+
10+
11+
### Dependencies
12+
13+
* The following workspace dependencies were updated
14+
* dependencies
15+
* @iot-app-kit/core bumped from 12.5.0 to 12.5.1
16+
* @iot-app-kit/react-components bumped from 12.5.0 to 12.5.1
17+
* @iot-app-kit/dashboard bumped from 12.5.0 to 12.5.1
18+
* devDependencies
19+
* @iot-app-kit/testing-util bumped from 12.5.0 to 12.5.1
20+
* eslint-config-iot-app-kit bumped from 12.5.0 to 12.5.1
21+
322
## [12.5.0](https://github.com/awslabs/iot-app-kit/compare/doc-site-v12.4.0...doc-site-v12.5.0) (2025-02-03)
423

524

apps/doc-site/package.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@iot-app-kit/doc-site",
3-
"version": "12.5.0",
3+
"version": "12.5.1",
44
"private": true,
55
"type": "module",
66
"scripts": {
@@ -15,7 +15,7 @@
1515
"fix": "eslint --fix . --cache --cache-location .cache/eslint/"
1616
},
1717
"devDependencies": {
18-
"@iot-app-kit/testing-util": "12.5.0",
18+
"@iot-app-kit/testing-util": "12.5.1",
1919
"@storybook/addon-essentials": "^8.4.5",
2020
"@storybook/addon-interactions": "^8.4.5",
2121
"@storybook/addon-links": "^8.4.5",
@@ -26,7 +26,7 @@
2626
"@storybook/theming": "^8.4.5",
2727
"@types/node": "^18.16.18",
2828
"@vitejs/plugin-react": "^4.3.3",
29-
"eslint-config-iot-app-kit": "12.5.0",
29+
"eslint-config-iot-app-kit": "12.5.1",
3030
"prop-types": "^15.8.1",
3131
"react": "^18.2.0",
3232
"react-dom": "^18.2.0",
@@ -36,9 +36,9 @@
3636
"vite": "^5.4.15"
3737
},
3838
"dependencies": {
39-
"@iot-app-kit/core": "12.5.0",
40-
"@iot-app-kit/react-components": "12.5.0",
41-
"@iot-app-kit/dashboard": "12.5.0",
39+
"@iot-app-kit/core": "12.5.1",
40+
"@iot-app-kit/react-components": "12.5.1",
41+
"@iot-app-kit/dashboard": "12.5.1",
4242
"msw-storybook-addon": "^2.0.4"
4343
},
4444
"msw": {

configuration/eslint-config/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## [12.5.1](https://github.com/awslabs/iot-app-kit/compare/eslint-config-v12.5.0...eslint-config-v12.5.1) (2025-03-31)
4+
5+
6+
### Miscellaneous Chores
7+
8+
* **eslint-config:** Synchronize iot-app-kit versions
9+
310
## [12.5.0](https://github.com/awslabs/iot-app-kit/compare/eslint-config-v12.4.0...eslint-config-v12.5.0) (2025-02-03)
411

512

configuration/eslint-config/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@
3232
"eslint-import-resolver-typescript": "^3.6.0",
3333
"typescript": "^5.5.4"
3434
},
35-
"version": "12.5.0"
35+
"version": "12.5.1"
3636
}

configuration/ts-config/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## [12.5.1](https://github.com/awslabs/iot-app-kit/compare/ts-config-v12.5.0...ts-config-v12.5.1) (2025-03-31)
4+
5+
6+
### Miscellaneous Chores
7+
8+
* **ts-config:** Synchronize iot-app-kit versions
9+
310
## [12.5.0](https://github.com/awslabs/iot-app-kit/compare/ts-config-v12.4.0...ts-config-v12.5.0) (2025-02-03)
411

512

configuration/ts-config/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@
1515
"rimraf": "^5.0.1",
1616
"typescript": "^5.5.4"
1717
},
18-
"version": "12.5.0"
18+
"version": "12.5.1"
1919
}

0 commit comments

Comments
 (0)