chore(release): 2.0.0 [skip ci]

# [2.0.0](https://github.com/LLK/scratch-vm/compare/v1.6.19...v2.0.0) (2023-09-26)

### Bug Fixes

* **deps:** update dependency scratch-storage to v2.2.1 ([c2ee02b](c2ee02bc28))
* don't set run ID until storage exists (also add tests) ([e696e35](e696e3548b))
* tell fetchWithTimeout to use scratchFetch from storage instance ([829ae1d](829ae1dfac))

### Features

* use scratchFetch ([9fca9ee](9fca9ee583))

### BREAKING CHANGES

* servers must accept new header x-projectid
This commit is contained in:
semantic-release-bot 2023-09-26 16:20:46 +00:00
parent f1b0c71f9e
commit 95dcb283de
3 changed files with 23 additions and 4 deletions

View file

@ -3,6 +3,25 @@
All notable changes to this project will be documented in this file. See All notable changes to this project will be documented in this file. See
[Conventional Commits](https://conventionalcommits.org) for commit guidelines. [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [2.0.0](https://github.com/LLK/scratch-vm/compare/v1.6.19...v2.0.0) (2023-09-26)
### Bug Fixes
* **deps:** update dependency scratch-storage to v2.2.1 ([c2ee02b](https://github.com/LLK/scratch-vm/commit/c2ee02bc2806ecb2acd8e618ad1cbc58732e0d3e))
* don't set run ID until storage exists (also add tests) ([e696e35](https://github.com/LLK/scratch-vm/commit/e696e3548b542f37fe800d7564c1d908777a0935))
* tell fetchWithTimeout to use scratchFetch from storage instance ([829ae1d](https://github.com/LLK/scratch-vm/commit/829ae1dface2890e6dc8d8f39b62a3180d006853))
### Features
* use scratchFetch ([9fca9ee](https://github.com/LLK/scratch-vm/commit/9fca9ee5839a8eec60b1adb6ec3a11638ada0b17))
### BREAKING CHANGES
* servers must accept new header x-projectid
## [1.6.19](https://github.com/LLK/scratch-vm/compare/v1.6.18...v1.6.19) (2023-09-25) ## [1.6.19](https://github.com/LLK/scratch-vm/compare/v1.6.18...v1.6.19) (2023-09-25)

4
package-lock.json generated
View file

@ -1,12 +1,12 @@
{ {
"name": "scratch-vm", "name": "scratch-vm",
"version": "1.6.19", "version": "2.0.0",
"lockfileVersion": 2, "lockfileVersion": 2,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "scratch-vm", "name": "scratch-vm",
"version": "1.6.19", "version": "2.0.0",
"license": "BSD-3-Clause", "license": "BSD-3-Clause",
"dependencies": { "dependencies": {
"@vernier/godirect": "1.5.0", "@vernier/godirect": "1.5.0",

View file

@ -1,6 +1,6 @@
{ {
"name": "scratch-vm", "name": "scratch-vm",
"version": "1.6.19", "version": "2.0.0",
"description": "Virtual Machine for Scratch 3.0", "description": "Virtual Machine for Scratch 3.0",
"author": "Massachusetts Institute of Technology", "author": "Massachusetts Institute of Technology",
"license": "BSD-3-Clause", "license": "BSD-3-Clause",
@ -8,7 +8,7 @@
"repository": { "repository": {
"type": "git", "type": "git",
"url": "https://github.com/LLK/scratch-vm.git", "url": "https://github.com/LLK/scratch-vm.git",
"sha": "4060bd3a2c9cfbdfa7bab0f9461f6a923533fc3a" "sha": "f1b0c71f9e1a2427fd0419699abdcb28ef6a876e"
}, },
"main": "./dist/node/scratch-vm.js", "main": "./dist/node/scratch-vm.js",
"browser": "./src/index.js", "browser": "./src/index.js",