diff --git a/.release-please-manifest.json b/.release-please-manifest.json index d0fafbad..ad1c88fa 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -3,10 +3,10 @@ "packages/compile": "0.7.30", "packages/build": "0.3.12", "packages/cli": "0.7.42", - "packages/check-core": "0.1.9", - "packages/check-ui-shell": "0.2.21", - "packages/plugin-check": "0.3.30", - "packages/plugin-config": "0.2.9", + "packages/check-core": "0.1.10", + "packages/check-ui-shell": "0.2.22", + "packages/plugin-check": "0.3.31", + "packages/plugin-config": "0.2.10", "packages/plugin-vite": "0.2.2", "packages/plugin-wasm": "0.2.7", "packages/plugin-worker": "0.2.13", diff --git a/packages/check-core/CHANGELOG.md b/packages/check-core/CHANGELOG.md index c1cfc3dd..0b939f1c 100644 --- a/packages/check-core/CHANGELOG.md +++ b/packages/check-core/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## [0.1.10](https://github.com/climateinteractive/SDEverywhere/compare/check-core-v0.1.9...check-core-v0.1.10) (2026-05-04) + + +### Features + +* update model-check packages to allow for overriding constants and lookups ([#818](https://github.com/climateinteractive/SDEverywhere/issues/818)) ([4b0aa8c](https://github.com/climateinteractive/SDEverywhere/commit/4b0aa8c8711723b46cc3226368d10de241dc291d)), closes [#770](https://github.com/climateinteractive/SDEverywhere/issues/770) + + +### Bug Fixes + +* convert InputVar type to a discriminated union with slider and switch variants ([#820](https://github.com/climateinteractive/SDEverywhere/issues/820)) ([9bd55cb](https://github.com/climateinteractive/SDEverywhere/commit/9bd55cbb811a4ec4f9e786d7bfe1ecf56975ef47)), closes [#819](https://github.com/climateinteractive/SDEverywhere/issues/819) + ## [0.1.9](https://github.com/climateinteractive/SDEverywhere/compare/check-core-v0.1.8...check-core-v0.1.9) (2026-05-01) diff --git a/packages/check-core/package.json b/packages/check-core/package.json index d7364898..c77ff1d4 100644 --- a/packages/check-core/package.json +++ b/packages/check-core/package.json @@ -1,6 +1,6 @@ { "name": "@sdeverywhere/check-core", - "version": "0.1.9", + "version": "0.1.10", "files": [ "dist/**", "schema/**" diff --git a/packages/check-ui-shell/CHANGELOG.md b/packages/check-ui-shell/CHANGELOG.md index 4da0c2ba..bd36ba20 100644 --- a/packages/check-ui-shell/CHANGELOG.md +++ b/packages/check-ui-shell/CHANGELOG.md @@ -1,5 +1,25 @@ # Changelog +## [0.2.22](https://github.com/climateinteractive/SDEverywhere/compare/check-ui-shell-v0.2.21...check-ui-shell-v0.2.22) (2026-05-04) + + +### Features + +* update model-check packages to allow for overriding constants and lookups ([#818](https://github.com/climateinteractive/SDEverywhere/issues/818)) ([4b0aa8c](https://github.com/climateinteractive/SDEverywhere/commit/4b0aa8c8711723b46cc3226368d10de241dc291d)), closes [#770](https://github.com/climateinteractive/SDEverywhere/issues/770) + + +### Bug Fixes + +* convert InputVar type to a discriminated union with slider and switch variants ([#820](https://github.com/climateinteractive/SDEverywhere/issues/820)) ([9bd55cb](https://github.com/climateinteractive/SDEverywhere/commit/9bd55cbb811a4ec4f9e786d7bfe1ecf56975ef47)), closes [#819](https://github.com/climateinteractive/SDEverywhere/issues/819) +* don't include cache busting parameter for data URLs when fetching remote bundles list ([#816](https://github.com/climateinteractive/SDEverywhere/issues/816)) ([0179dbb](https://github.com/climateinteractive/SDEverywhere/commit/0179dbb512e2658c6a29d6494e6a61febe4f2309)), closes [#815](https://github.com/climateinteractive/SDEverywhere/issues/815) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @sdeverywhere/check-core bumped from ^0.1.9 to ^0.1.10 + ## [0.2.21](https://github.com/climateinteractive/SDEverywhere/compare/check-ui-shell-v0.2.20...check-ui-shell-v0.2.21) (2026-05-01) diff --git a/packages/check-ui-shell/package.json b/packages/check-ui-shell/package.json index 240e46ef..c97e26bb 100644 --- a/packages/check-ui-shell/package.json +++ b/packages/check-ui-shell/package.json @@ -1,6 +1,6 @@ { "name": "@sdeverywhere/check-ui-shell", - "version": "0.2.21", + "version": "0.2.22", "files": [ "dist/**" ], @@ -34,7 +34,7 @@ "@fortawesome/free-regular-svg-icons": "^7.1.0", "@fortawesome/free-solid-svg-icons": "^7.1.0", "@juggle/resize-observer": "^3.4.0", - "@sdeverywhere/check-core": "^0.1.9", + "@sdeverywhere/check-core": "^0.1.10", "assert-never": "^1.2.1", "chart.js": "^2.9.4", "copy-text-to-clipboard": "^3.2.0", diff --git a/packages/plugin-check/CHANGELOG.md b/packages/plugin-check/CHANGELOG.md index c01cbf27..2632fab8 100644 --- a/packages/plugin-check/CHANGELOG.md +++ b/packages/plugin-check/CHANGELOG.md @@ -1,5 +1,20 @@ # Changelog +## [0.3.31](https://github.com/climateinteractive/SDEverywhere/compare/plugin-check-v0.3.30...plugin-check-v0.3.31) (2026-05-04) + + +### Bug Fixes + +* convert InputVar type to a discriminated union with slider and switch variants ([#820](https://github.com/climateinteractive/SDEverywhere/issues/820)) ([9bd55cb](https://github.com/climateinteractive/SDEverywhere/commit/9bd55cbb811a4ec4f9e786d7bfe1ecf56975ef47)), closes [#819](https://github.com/climateinteractive/SDEverywhere/issues/819) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @sdeverywhere/check-core bumped from ^0.1.9 to ^0.1.10 + * @sdeverywhere/check-ui-shell bumped from ^0.2.21 to ^0.2.22 + ## [0.3.30](https://github.com/climateinteractive/SDEverywhere/compare/plugin-check-v0.3.29...plugin-check-v0.3.30) (2026-05-01) diff --git a/packages/plugin-check/package.json b/packages/plugin-check/package.json index c992d9e3..7e1f6b2c 100644 --- a/packages/plugin-check/package.json +++ b/packages/plugin-check/package.json @@ -1,6 +1,6 @@ { "name": "@sdeverywhere/plugin-check", - "version": "0.3.30", + "version": "0.3.31", "files": [ "bin/**", "dist/**", @@ -39,8 +39,8 @@ "dependencies": { "@rollup/plugin-node-resolve": "^16.0.3", "@rollup/plugin-replace": "^6.0.3", - "@sdeverywhere/check-core": "^0.1.9", - "@sdeverywhere/check-ui-shell": "^0.2.21", + "@sdeverywhere/check-core": "^0.1.10", + "@sdeverywhere/check-ui-shell": "^0.2.22", "@sdeverywhere/runtime": "^0.2.8", "@sdeverywhere/runtime-async": "^0.2.8", "assert-never": "^1.2.1", diff --git a/packages/plugin-config/CHANGELOG.md b/packages/plugin-config/CHANGELOG.md index 8c8d2d6c..fba07d0c 100644 --- a/packages/plugin-config/CHANGELOG.md +++ b/packages/plugin-config/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.2.10](https://github.com/climateinteractive/SDEverywhere/compare/plugin-config-v0.2.9...plugin-config-v0.2.10) (2026-05-04) + + +### Bug Fixes + +* convert InputVar type to a discriminated union with slider and switch variants ([#820](https://github.com/climateinteractive/SDEverywhere/issues/820)) ([9bd55cb](https://github.com/climateinteractive/SDEverywhere/commit/9bd55cbb811a4ec4f9e786d7bfe1ecf56975ef47)), closes [#819](https://github.com/climateinteractive/SDEverywhere/issues/819) + ## [0.2.9](https://github.com/climateinteractive/SDEverywhere/compare/plugin-config-v0.2.8...plugin-config-v0.2.9) (2026-02-04) diff --git a/packages/plugin-config/package.json b/packages/plugin-config/package.json index b4a1308e..92e34103 100644 --- a/packages/plugin-config/package.json +++ b/packages/plugin-config/package.json @@ -1,6 +1,6 @@ { "name": "@sdeverywhere/plugin-config", - "version": "0.2.9", + "version": "0.2.10", "files": [ "dist/**", "template-config/**" diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 490ee377..a7fa771e 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -534,7 +534,7 @@ importers: specifier: ^3.4.0 version: 3.4.0 '@sdeverywhere/check-core': - specifier: ^0.1.9 + specifier: ^0.1.10 version: link:../check-core assert-never: specifier: ^1.2.1 @@ -729,10 +729,10 @@ importers: specifier: ^6.0.3 version: 6.0.3(rollup@4.53.3) '@sdeverywhere/check-core': - specifier: ^0.1.9 + specifier: ^0.1.10 version: link:../check-core '@sdeverywhere/check-ui-shell': - specifier: ^0.2.21 + specifier: ^0.2.22 version: link:../check-ui-shell '@sdeverywhere/runtime': specifier: ^0.2.8