diff --git a/.changeset/calm-dryers-itch.md b/.changeset/calm-dryers-itch.md deleted file mode 100644 index 3dd200ffd3..0000000000 --- a/.changeset/calm-dryers-itch.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@khanacademy/perseus": minor ---- - -Wrap all SvgImage instances in AssetContext (ensures that host applications can correctly wait for all images to load in a renderer before proceeding). diff --git a/.changeset/funny-carrots-leave.md b/.changeset/funny-carrots-leave.md deleted file mode 100644 index f3bc7a7689..0000000000 --- a/.changeset/funny-carrots-leave.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -"@khanacademy/math-input": major -"@khanacademy/perseus": major ---- - -We've removed the deprecated `useV2Keypad` prop from the MobileKeypad component. - -The V2 keypad is now the default, and the old keypad has been removed. - -Additionally, the mobile keypad no longer accepts the `keypadActive` or -`setKeypadActive` props. It now gets those values itself from the `KeypadContext`. diff --git a/.changeset/hot-apes-carry.md b/.changeset/hot-apes-carry.md deleted file mode 100644 index cd99ec237c..0000000000 --- a/.changeset/hot-apes-carry.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@khanacademy/perseus": minor ---- - -create randomized storybook stories for some widgets diff --git a/.changeset/rare-books-eat.md b/.changeset/rare-books-eat.md deleted file mode 100644 index a94926a185..0000000000 --- a/.changeset/rare-books-eat.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@khanacademy/perseus-editor": minor ---- - -Revert defensive code in ExpressionEditor that caused a crash when an expression config's answer form was missing a `key` property. diff --git a/packages/math-input/CHANGELOG.md b/packages/math-input/CHANGELOG.md index 2907c79e5f..9d3c12a1b9 100644 --- a/packages/math-input/CHANGELOG.md +++ b/packages/math-input/CHANGELOG.md @@ -1,5 +1,16 @@ # @khanacademy/math-input +## 16.0.0 + +### Major Changes + +- [#825](https://github.com/Khan/perseus/pull/825) [`7cb40e4c`](https://github.com/Khan/perseus/commit/7cb40e4c919be50e5ced41e4937178bbf849ec74) Thanks [@benchristel](https://github.com/benchristel)! - We've removed the deprecated `useV2Keypad` prop from the MobileKeypad component. + + The V2 keypad is now the default, and the old keypad has been removed. + + Additionally, the mobile keypad no longer accepts the `keypadActive` or + `setKeypadActive` props. It now gets those values itself from the `KeypadContext`. + ## 15.1.0 ### Minor Changes diff --git a/packages/math-input/package.json b/packages/math-input/package.json index ba4b89ab1b..c206c96539 100644 --- a/packages/math-input/package.json +++ b/packages/math-input/package.json @@ -3,7 +3,7 @@ "description": "Khan Academy's new expression editor for the mobile web.", "author": "Khan Academy", "license": "MIT", - "version": "15.1.0", + "version": "16.0.0", "publishConfig": { "access": "public" }, diff --git a/packages/perseus-editor/CHANGELOG.md b/packages/perseus-editor/CHANGELOG.md index 42816fd1cf..821b44e021 100644 --- a/packages/perseus-editor/CHANGELOG.md +++ b/packages/perseus-editor/CHANGELOG.md @@ -1,5 +1,16 @@ # @khanacademy/perseus-editor +## 2.11.0 + +### Minor Changes + +- [#827](https://github.com/Khan/perseus/pull/827) [`c7410ccc`](https://github.com/Khan/perseus/commit/c7410ccc6254034b599e1909b3cbbd7a6c9ea9b2) Thanks [@jeremywiebe](https://github.com/jeremywiebe)! - Revert defensive code in ExpressionEditor that caused a crash when an expression config's answer form was missing a `key` property. + +### Patch Changes + +- Updated dependencies [[`cdcd162e`](https://github.com/Khan/perseus/commit/cdcd162ea0902d3ff1d77b1b66ad15f2d55a86cd), [`7cb40e4c`](https://github.com/Khan/perseus/commit/7cb40e4c919be50e5ced41e4937178bbf849ec74), [`8f1f0208`](https://github.com/Khan/perseus/commit/8f1f0208fcc08e137053bfd05d330b6f8bf3522d)]: + - @khanacademy/perseus@14.0.0 + ## 2.10.0 ### Minor Changes diff --git a/packages/perseus-editor/package.json b/packages/perseus-editor/package.json index e7cc831167..cdf22f0a56 100644 --- a/packages/perseus-editor/package.json +++ b/packages/perseus-editor/package.json @@ -3,7 +3,7 @@ "description": "Perseus editors", "author": "Khan Academy", "license": "MIT", - "version": "2.10.0", + "version": "2.11.0", "publishConfig": { "access": "public" }, @@ -24,7 +24,7 @@ "dependencies": { "@khanacademy/kas": "^0.3.5", "@khanacademy/kmath": "^0.1.6", - "@khanacademy/perseus": "^13.2.0", + "@khanacademy/perseus": "^14.0.0", "@khanacademy/perseus-core": "1.3.0" }, "devDependencies": { diff --git a/packages/perseus/CHANGELOG.md b/packages/perseus/CHANGELOG.md index 71952b9302..d58a5bd19e 100644 --- a/packages/perseus/CHANGELOG.md +++ b/packages/perseus/CHANGELOG.md @@ -1,5 +1,27 @@ # @khanacademy/perseus +## 14.0.0 + +### Major Changes + +- [#825](https://github.com/Khan/perseus/pull/825) [`7cb40e4c`](https://github.com/Khan/perseus/commit/7cb40e4c919be50e5ced41e4937178bbf849ec74) Thanks [@benchristel](https://github.com/benchristel)! - We've removed the deprecated `useV2Keypad` prop from the MobileKeypad component. + + The V2 keypad is now the default, and the old keypad has been removed. + + Additionally, the mobile keypad no longer accepts the `keypadActive` or + `setKeypadActive` props. It now gets those values itself from the `KeypadContext`. + +### Minor Changes + +- [#816](https://github.com/Khan/perseus/pull/816) [`cdcd162e`](https://github.com/Khan/perseus/commit/cdcd162ea0902d3ff1d77b1b66ad15f2d55a86cd) Thanks [@jeremywiebe](https://github.com/jeremywiebe)! - Wrap all SvgImage instances in AssetContext (ensures that host applications can correctly wait for all images to load in a renderer before proceeding). + +* [#788](https://github.com/Khan/perseus/pull/788) [`8f1f0208`](https://github.com/Khan/perseus/commit/8f1f0208fcc08e137053bfd05d330b6f8bf3522d) Thanks [@jeanettehead](https://github.com/jeanettehead)! - create randomized storybook stories for some widgets + +### Patch Changes + +- Updated dependencies [[`7cb40e4c`](https://github.com/Khan/perseus/commit/7cb40e4c919be50e5ced41e4937178bbf849ec74)]: + - @khanacademy/math-input@16.0.0 + ## 13.2.0 ### Minor Changes diff --git a/packages/perseus/package.json b/packages/perseus/package.json index d1903801d1..84bfd9a964 100644 --- a/packages/perseus/package.json +++ b/packages/perseus/package.json @@ -3,7 +3,7 @@ "description": "Core Perseus API (includes renderers and widgets)", "author": "Khan Academy", "license": "MIT", - "version": "13.2.0", + "version": "14.0.0", "publishConfig": { "access": "public" }, @@ -24,7 +24,7 @@ "dependencies": { "@khanacademy/kas": "^0.3.5", "@khanacademy/kmath": "^0.1.6", - "@khanacademy/math-input": "^15.1.0", + "@khanacademy/math-input": "^16.0.0", "@khanacademy/perseus-core": "1.3.0", "@khanacademy/perseus-linter": "^0.3.8", "@khanacademy/pure-markdown": "^0.2.11",