Skip to content

Commit

Permalink
Version Packages (#1714)
Browse files Browse the repository at this point in the history
This PR was opened by the [Changesets release](https://github.com/changesets/action) GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.


# Releases
## @khanacademy/[email protected]

### Major Changes

-   [#1696](#1696) [`3e1697229`](3e16972) Thanks [@jeremywiebe](https://github.com/jeremywiebe)! - Remove deprecated `Util.widgetShouldHighlight` function

### Minor Changes

-   [#1696](#1696) [`3e1697229`](3e16972) Thanks [@jeremywiebe](https://github.com/jeremywiebe)! - Migrate `Widget` type to be an TypeScript `interface` so each widget can declare it implements it explicitly.

### Patch Changes

-   [#1697](#1697) [`b9d84ccba`](b9d84cc) Thanks [@Myranae](https://github.com/Myranae)! - Refactor cs-program to use a getUserInputFunction


-   [#1713](#1713) [`bcd32425c`](bcd3242) Thanks [@handeyeco](https://github.com/handeyeco)! - Some minor cleanup related to validators


-   [#1708](#1708) [`8e95e00c4`](8e95e00) Thanks [@Myranae](https://github.com/Myranae)! - Move validation logic out of the orderer widget and add tests

## @khanacademy/[email protected]

### Patch Changes

-   Updated dependencies \[[`b9d84ccba`](b9d84cc), [`bcd32425c`](bcd3242), [`8e95e00c4`](8e95e00), [`3e1697229`](3e16972), [`3e1697229`](3e16972)]:
    -   @khanacademy/[email protected]

Author: khan-actions-bot

Reviewers: jeremywiebe

Required Reviewers:

Approved By: jeremywiebe

Checks: ⏭️  Publish npm snapshot, ✅ Lint, Typecheck, Format, and Test (ubuntu-latest, 20.x), ✅ Cypress (ubuntu-latest, 20.x), ✅ Check for .changeset entries for all changed files (ubuntu-latest, 20.x), ✅ Check builds for changes in size (ubuntu-latest, 20.x), ✅ gerald

Pull Request URL: #1714
  • Loading branch information
khan-actions-bot authored Oct 2, 2024
1 parent 3e16972 commit c30bca1
Show file tree
Hide file tree
Showing 9 changed files with 28 additions and 28 deletions.
5 changes: 0 additions & 5 deletions .changeset/big-hairs-speak.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/flat-ravens-promise.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/grumpy-camels-grow.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/perfect-carrots-refuse.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/swift-flies-teach.md

This file was deleted.

7 changes: 7 additions & 0 deletions packages/perseus-editor/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @khanacademy/perseus-editor

## 14.6.2

### Patch Changes

- Updated dependencies [[`b9d84ccba`](https://github.com/Khan/perseus/commit/b9d84ccba8df83df4d2a042f730707e5fa6e562b), [`bcd32425c`](https://github.com/Khan/perseus/commit/bcd32425cbf4c74646ee66f998294c2f9cd3253d), [`8e95e00c4`](https://github.com/Khan/perseus/commit/8e95e00c4decf76f443d286cae29cc4ebf6284b5), [`3e1697229`](https://github.com/Khan/perseus/commit/3e16972293b757e8631f4c5d8c3fb121babf5324), [`3e1697229`](https://github.com/Khan/perseus/commit/3e16972293b757e8631f4c5d8c3fb121babf5324)]:
- @khanacademy/perseus@36.0.0

## 14.6.1

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/perseus-editor/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"description": "Perseus editors",
"author": "Khan Academy",
"license": "MIT",
"version": "14.6.1",
"version": "14.6.2",
"publishConfig": {
"access": "public"
},
Expand Down Expand Up @@ -38,7 +38,7 @@
"@khanacademy/keypad-context": "^1.0.1",
"@khanacademy/kmath": "^0.1.13",
"@khanacademy/math-input": "^21.0.2",
"@khanacademy/perseus": "^35.1.1",
"@khanacademy/perseus": "^36.0.0",
"@khanacademy/perseus-core": "1.5.0",
"mafs": "^0.19.0"
},
Expand Down
18 changes: 18 additions & 0 deletions packages/perseus/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# @khanacademy/perseus

## 36.0.0

### Major Changes

- [#1696](https://github.com/Khan/perseus/pull/1696) [`3e1697229`](https://github.com/Khan/perseus/commit/3e16972293b757e8631f4c5d8c3fb121babf5324) Thanks [@jeremywiebe](https://github.com/jeremywiebe)! - Remove deprecated `Util.widgetShouldHighlight` function

### Minor Changes

- [#1696](https://github.com/Khan/perseus/pull/1696) [`3e1697229`](https://github.com/Khan/perseus/commit/3e16972293b757e8631f4c5d8c3fb121babf5324) Thanks [@jeremywiebe](https://github.com/jeremywiebe)! - Migrate `Widget` type to be an TypeScript `interface` so each widget can declare it implements it explicitly.

### Patch Changes

- [#1697](https://github.com/Khan/perseus/pull/1697) [`b9d84ccba`](https://github.com/Khan/perseus/commit/b9d84ccba8df83df4d2a042f730707e5fa6e562b) Thanks [@Myranae](https://github.com/Myranae)! - Refactor cs-program to use a getUserInputFunction

* [#1713](https://github.com/Khan/perseus/pull/1713) [`bcd32425c`](https://github.com/Khan/perseus/commit/bcd32425cbf4c74646ee66f998294c2f9cd3253d) Thanks [@handeyeco](https://github.com/handeyeco)! - Some minor cleanup related to validators

- [#1708](https://github.com/Khan/perseus/pull/1708) [`8e95e00c4`](https://github.com/Khan/perseus/commit/8e95e00c4decf76f443d286cae29cc4ebf6284b5) Thanks [@Myranae](https://github.com/Myranae)! - Move validation logic out of the orderer widget and add tests

## 35.1.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/perseus/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"description": "Core Perseus API (includes renderers and widgets)",
"author": "Khan Academy",
"license": "MIT",
"version": "35.1.1",
"version": "36.0.0",
"publishConfig": {
"access": "public"
},
Expand Down

0 comments on commit c30bca1

Please sign in to comment.