Skip to content

Commit cf22eeb

Browse files
chore(release): 5.0.301-spork.1 [skip ci]
## [5.0.301-spork.1](v5.0.300...v5.0.301-spork.1) (2025-08-26) ### Bug Fixes * add the hat extension to extension hat blocks ([#5](#5)) ([2baf2c9](2baf2c9)) * add the monitor block extension to extension monitor blocks ([#6](#6)) ([4837dd8](4837dd8)) * **deps:** lock file maintenance ([4b1ca32](4b1ca32)) * fix bug that could result in the VM's representation of shadow blocks getting into a bad state ([#9](#9)) ([31189d6](31189d6)) * Fix test failures. ([#10](#10)) ([111ccd6](111ccd6)) * handle modern workspace comment events ([#3](#3)) ([88c097b](88c097b)) * handle new custom block comment events ([#4](#4)) ([22fcd67](22fcd67)) * run stacks in response to click events ([#1](#1)) ([12e2362](12e2362)) * update VM state when blocks are removed from an input previously occupied by a shadow block ([#8](#8)) ([410826b](410826b)) * use derived IDs for block comments ([#11](#11)) ([6f1235f](6f1235f)) * use scratch-blocks@^2.0.0-beta ([e92a2c6](e92a2c6)) * use toolboxitemid instead of id as the identifier attribute for extensions toolbox categories ([#2](#2)) ([484d15b](484d15b))
1 parent 464bfdb commit cf22eeb

File tree

3 files changed

+23
-4
lines changed

3 files changed

+23
-4
lines changed

CHANGELOG.md

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

6+
## [5.0.301-spork.1](https://github.com/scratchfoundation/scratch-vm/compare/v5.0.300...v5.0.301-spork.1) (2025-08-26)
7+
8+
9+
### Bug Fixes
10+
11+
* add the hat extension to extension hat blocks ([#5](https://github.com/scratchfoundation/scratch-vm/issues/5)) ([2baf2c9](https://github.com/scratchfoundation/scratch-vm/commit/2baf2c91b6b215163a07f686cf2c4ddbbcfbe978))
12+
* add the monitor block extension to extension monitor blocks ([#6](https://github.com/scratchfoundation/scratch-vm/issues/6)) ([4837dd8](https://github.com/scratchfoundation/scratch-vm/commit/4837dd8e8b19ca24b3aa014162b57fba34a74534))
13+
* **deps:** lock file maintenance ([4b1ca32](https://github.com/scratchfoundation/scratch-vm/commit/4b1ca32407d5e26eefc103cb4b306ac8be11d129))
14+
* fix bug that could result in the VM's representation of shadow blocks getting into a bad state ([#9](https://github.com/scratchfoundation/scratch-vm/issues/9)) ([31189d6](https://github.com/scratchfoundation/scratch-vm/commit/31189d616b1fff1715ca65c851cbc7fa2d29a837))
15+
* Fix test failures. ([#10](https://github.com/scratchfoundation/scratch-vm/issues/10)) ([111ccd6](https://github.com/scratchfoundation/scratch-vm/commit/111ccd6481527c1214ae2a9b8e1a30cba01538e5))
16+
* handle modern workspace comment events ([#3](https://github.com/scratchfoundation/scratch-vm/issues/3)) ([88c097b](https://github.com/scratchfoundation/scratch-vm/commit/88c097b1f2b36c2cc244e977f8927c5d02783687))
17+
* handle new custom block comment events ([#4](https://github.com/scratchfoundation/scratch-vm/issues/4)) ([22fcd67](https://github.com/scratchfoundation/scratch-vm/commit/22fcd6753d5348ca3477c4a87c4dfcdbf5560fc1))
18+
* run stacks in response to click events ([#1](https://github.com/scratchfoundation/scratch-vm/issues/1)) ([12e2362](https://github.com/scratchfoundation/scratch-vm/commit/12e2362ac68a7165ecdef650080da83c6d9cd5c6))
19+
* update VM state when blocks are removed from an input previously occupied by a shadow block ([#8](https://github.com/scratchfoundation/scratch-vm/issues/8)) ([410826b](https://github.com/scratchfoundation/scratch-vm/commit/410826b9faa62ed70ff12430e42c8262c858de1f))
20+
* use derived IDs for block comments ([#11](https://github.com/scratchfoundation/scratch-vm/issues/11)) ([6f1235f](https://github.com/scratchfoundation/scratch-vm/commit/6f1235fa7778778e10ba928a26589beaacd09bfe))
21+
* use scratch-blocks@^2.0.0-beta ([e92a2c6](https://github.com/scratchfoundation/scratch-vm/commit/e92a2c64d0a897ddf2df2a43707672a30e0e0978))
22+
* use toolboxitemid instead of id as the identifier attribute for extensions toolbox categories ([#2](https://github.com/scratchfoundation/scratch-vm/issues/2)) ([484d15b](https://github.com/scratchfoundation/scratch-vm/commit/484d15b1bedcfc0702ea1cba94251637c6defc0c))
23+
624
## [5.0.300](https://github.com/scratchfoundation/scratch-vm/compare/v5.0.299...v5.0.300) (2025-05-04)
725

826

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
{
22
"name": "scratch-vm",
3-
"version": "5.0.300",
3+
"version": "5.0.301-spork.1",
44
"description": "Virtual Machine for Scratch 3.0",
55
"author": "Massachusetts Institute of Technology",
66
"license": "AGPL-3.0-only",
77
"homepage": "https://github.com/scratchfoundation/scratch-vm#readme",
88
"repository": {
99
"type": "git",
10-
"url": "https://github.com/scratchfoundation/scratch-vm.git"
10+
"url": "https://github.com/scratchfoundation/scratch-vm.git",
11+
"sha": "464bfdbc87b280fb6857947e979ce82778972cf3"
1112
},
1213
"main": "./dist/node/scratch-vm.js",
1314
"browser": "./dist/web/scratch-vm.js",

0 commit comments

Comments
 (0)