Skip to content

Commit 55a310e

Browse files
committed
Update interpreters
1 parent feef47f commit 55a310e

File tree

11 files changed

+12
-12
lines changed

11 files changed

+12
-12
lines changed

docs/index.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/index.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

esm/interpreter/micropython.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ const progress = createProgress('mpy');
2525

2626
export default {
2727
type,
28-
module: (version = '1.24.0') =>
28+
module: (version = '1.24.1') =>
2929
`https://cdn.jsdelivr.net/npm/@micropython/micropython-webassembly-pyscript@${version}/micropython.mjs`,
3030
async engine({ loadMicroPython }, config, url, baseURL) {
3131
const { stderr, stdout, get } = stdio({

esm/interpreter/pyodide.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ const indexURLs = new WeakMap();
8282

8383
export default {
8484
type,
85-
module: (version = '0.26.4') =>
85+
module: (version = '0.27.2') =>
8686
`https://cdn.jsdelivr.net/pyodide/v${version}/full/pyodide.mjs`,
8787
async engine({ loadPyodide }, config, url, baseURL) {
8888
// apply override ASAP then load foreign code

esm/interpreter/ruby-wasm-wasi.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ const jsType = type.replace(/\W+/g, '_');
1616
export default {
1717
type,
1818
experimental: true,
19-
module: (version = '2.7.0') =>
19+
module: (version = '2.7.1') =>
2020
`https://cdn.jsdelivr.net/npm/@ruby/3.2-wasm-wasi@${version}/dist/browser/+esm`,
2121
async engine({ DefaultRubyVM }, config, url, baseURL) {
2222
url = url.replace(/\/browser\/\+esm$/, '/ruby.wasm');

node.importmap

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"imports": {
33
"http://pyodide": "./test/mocked/pyodide.mjs",
4-
"https://cdn.jsdelivr.net/pyodide/v0.26.4/full/pyodide.mjs": "./test/mocked/pyodide.mjs",
5-
"https://cdn.jsdelivr.net/npm/@micropython/[email protected].0/micropython.mjs": "./test/mocked/micropython.mjs",
4+
"https://cdn.jsdelivr.net/pyodide/v0.27.2/full/pyodide.mjs": "./test/mocked/pyodide.mjs",
5+
"https://cdn.jsdelivr.net/npm/@micropython/[email protected].1/micropython.mjs": "./test/mocked/micropython.mjs",
66
"./3rd-party/toml.js": "./test/mocked/toml.mjs"
77
}
88
}

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,6 @@
9494
"to-json-callback": "^0.1.1"
9595
},
9696
"worker": {
97-
"blob": "sha256-x6D1Uf/1O2v8l01PSk88G9LjWLDW27N4VcvB2aZggE8="
97+
"blob": "sha256-viPvdPd3Kadv8EIqlnrw+ECks2A7TTCo3sjIBur4cIs="
9898
}
9999
}

test/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ import("../esm/index.js").then(async polyscript => {
7676
// all tests
7777
for (const test of [
7878
async function versionedRuntime() {
79-
document.head.innerHTML = `<script type="pyodide" version="0.26.4">${content}</script>`;
79+
document.head.innerHTML = `<script type="pyodide" version="0.27.2">${content}</script>`;
8080
await tick();
8181
assert(pyodide.content, dedent(content));
8282
assert(pyodide.target.tagName, "PYODIDE-SCRIPT");

versions/micropython

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.24.0
1+
1.24.1

versions/pyodide

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.26.4
1+
0.27.2

versions/ruby-wasm-wasi

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.7.0
1+
2.7.1

0 commit comments

Comments
 (0)