Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updates from upstream #3

Merged
merged 25 commits into from
Aug 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
ff07e2d
fix: windows tests (#450)
guybedford Jun 18, 2024
60f4cbc
update readme for Node.js WASI stability (#452)
guybedford Jun 18, 2024
90154c3
translate errno=-4094 errors to "no-such-device" on Windows (#454)
dicej Jun 26, 2024
80096bc
preview2-shim 0.16.3
guybedford Jun 26, 2024
c5d9ed5
deps: update to latest adapter & environ@22 (#455)
guybedford Jun 28, 2024
6623a3e
Generator-based initialization function (#413)
guybedford Jun 28, 2024
2f1e4d8
1.3.0
guybedford Jun 28, 2024
47073c8
Fix definedResourceTables ReferenceError with instantiation mode (#456)
kateinoigakukun Jun 28, 2024
348ff36
1.3.1
guybedford Jun 28, 2024
d7ec53f
Update Outdated Docs (#458)
danbugs Jun 28, 2024
671844b
allow port numbers up to 65535 in `OutgoingRequest.setAuthority` (#461)
dicej Jul 3, 2024
6b0acbf
preview2-shim@0.16.4
guybedford Jul 3, 2024
304aa9d
fix: TypeScript types (#463)
guybedford Jul 8, 2024
d967800
Update package-lock.json by `npm install` (#467)
kateinoigakukun Jul 9, 2024
15c1f96
fix: support browser types to match component typing (#465)
guybedford Jul 11, 2024
e0919a1
fix: variable deduping in browser entrypoint (#469)
guybedford Jul 11, 2024
7f1f11e
feat: WebIDL support & browser test suite (#471)
guybedford Jul 17, 2024
304312c
correct async type for `getCoreModule` (#473)
wooden-worm Jul 22, 2024
9d0de85
Toolchain upgrade (#477)
guybedford Jul 29, 2024
0bef860
1.4.0
guybedford Jul 29, 2024
3946278
fix: ComponentizeJS bindgen bug (#478)
guybedford Jul 29, 2024
242cf40
Merge remote-tracking branch 'upstream/main' into updates-from-upstream
noise64 Aug 1, 2024
6754c3e
update
noise64 Aug 1, 2024
6696a83
fix submodules
noise64 Aug 2, 2024
52cb142
format
noise64 Aug 2, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ jobs:
run: rustup update stable --no-self-update && rustup default stable
- name: Install wasm32-unknown-unknown target
run: rustup target add wasm32-unknown-unknown
- name: Install wasm32-wasi target
run: rustup target add wasm32-wasi
- name: Install wasm32-wasip1 target
run: rustup target add wasm32-wasip1
- name: Install NPM packages
run: npm install
- name: Build
Expand All @@ -51,7 +51,7 @@ jobs:
- os: macos-latest
node: 18.x
- os: windows-latest
node: 20.x
node: latest
- os: windows-latest
node: 18.x
runs-on: ${{ matrix.os }}
Expand Down Expand Up @@ -96,15 +96,15 @@ jobs:
- name: Install wasm32-unknown-unknown target
if: steps.cache-wasi-tests.outputs.cache-hit != 'true'
run: rustup target add wasm32-unknown-unknown
- name: Install wasm32-wasi target
- name: Install wasm32-wasip1 target
if: steps.cache-wasi-tests.outputs.cache-hit != 'true'
run: rustup target add wasm32-wasi
run: rustup target add wasm32-wasip1
- name: Install wasm-tools
if: steps.cache-wasi-tests.outputs.cache-hit != 'true'
run: cargo install wasm-tools
- name: Generate WASI Tests
if: steps.cache-wasi-tests.outputs.cache-hit != 'true'
run: cargo xtask generate tests
run: cargo xtask generate preview2-tests
- name: Upload Generated WASI Tests
uses: actions/upload-artifact@v4
with:
Expand Down
Loading
Loading