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

Wasmer 3 🔥 #1674

Merged
merged 62 commits into from
May 24, 2023
Merged
Show file tree
Hide file tree
Changes from 57 commits
Commits
Show all changes
62 commits
Select commit Hold shift + click to select a range
980f81e
Install Wasmer 3.2.1
webmaster128 Apr 25, 2023
b548cfe
Update LimitingTunables
webmaster128 Apr 25, 2023
63759a4
Update store.rs
webmaster128 Apr 25, 2023
f0969c1
Update calls.rs
webmaster128 Apr 25, 2023
d9567ef
Update gatekeeper.rs
webmaster128 Apr 25, 2023
1b6a555
Update static_analysis.rs
webmaster128 Apr 25, 2023
01e512c
Work
webmaster128 Apr 25, 2023
9313cae
Make it compile
webmaster128 Apr 26, 2023
b909c6e
Fix memory handling
webmaster128 Apr 26, 2023
b01b751
Update module version tests
webmaster128 Apr 26, 2023
d2f9b33
Update module size tests
webmaster128 Apr 26, 2023
48b9409
Fix write_region
webmaster128 Apr 26, 2023
847d5b0
Fix store in caching
webmaster128 Apr 26, 2023
f25f919
Fix pin_unpin_works
webmaster128 Apr 26, 2023
754a396
Fix cache handling
webmaster128 Apr 27, 2023
ef4aa09
Make remaining tests pass
webmaster128 Apr 27, 2023
ad619fa
Let get_module return CachedModule
webmaster128 Apr 27, 2023
b74b223
Fix unused warnings
webmaster128 Apr 27, 2023
173ac3d
Finalize zero_padding_bytes implementation
webmaster128 Apr 27, 2023
5810f6a
Fix some more unused warnings
webmaster128 Apr 27, 2023
016df4f
Bump min bytes version and update contracts
webmaster128 Apr 27, 2023
6d8f88d
Remove loupe
webmaster128 Apr 27, 2023
bea904f
Improve min Rust version from 1.60.0 to 1.62.0 in CI
webmaster128 Apr 27, 2023
2d3a248
Remove explicit generic arguments from write_to_contract
webmaster128 Apr 27, 2023
e65df15
Fix clippy warnings
webmaster128 Apr 27, 2023
6361490
Make from_pinned_cache private
webmaster128 Apr 27, 2023
4a0d289
Return instances in multithread test
webmaster128 Apr 27, 2023
8ae0b27
Cache module and new store
maurolacy May 16, 2023
6c66294
Add make_engine helper
maurolacy May 16, 2023
ccbb221
Cache Engine not Store
maurolacy May 16, 2023
77d0c5d
Store memory limit in cache
maurolacy May 17, 2023
97b77e7
Use cached memory limit when building store
maurolacy May 17, 2023
d14f3bb
Adapt module_size
maurolacy May 17, 2023
d10b69b
Adapt multi_threaded_cache
maurolacy May 17, 2023
6b97286
Fix: pinned memory cache
maurolacy May 17, 2023
a8849c6
Fix: multiple cached instances test
maurolacy May 17, 2023
65ca1b3
Restore instance recycle
maurolacy May 17, 2023
b009efb
Restore recycle original signature
maurolacy May 17, 2023
6141876
Fix clippy warning
maurolacy May 17, 2023
0a1fd84
Adapt cosmwasm-check
maurolacy May 17, 2023
a41226f
Update to wasmer 3.3.x
maurolacy May 17, 2023
8339745
Update lock files
maurolacy May 17, 2023
97ab526
cargo update
maurolacy May 17, 2023
cc42aa3
Adapt fs cache tests to new hash
maurolacy May 17, 2023
2b2b886
Restore removed move_out test
maurolacy May 17, 2023
fe292aa
Restore removed comment
maurolacy May 17, 2023
756d1b2
Use make_engine helper for consistency
maurolacy May 17, 2023
e62d244
Fix naming / details
maurolacy May 17, 2023
057e16e
Use headless engine for simplicity
maurolacy May 17, 2023
751442d
Simplify use declaration
maurolacy May 22, 2023
6dd7170
Set wasmer version to fixed
maurolacy May 22, 2023
9d5f735
Remove memory_limit from CachedModule
maurolacy May 22, 2023
ecfafe4
Merge pull request #1689 from CosmWasm/w3-new-store-2
webmaster128 May 22, 2023
8c1e8b4
Merge branch 'main' into w3
webmaster128 May 23, 2023
d53b62a
Benchmark Wasmer 3 branch
webmaster128 May 23, 2023
da7f99e
Merge branch 'main' into w3
webmaster128 May 23, 2023
a0eed15
Fix some text
webmaster128 May 23, 2023
c8f3e4e
Remove unused code
webmaster128 May 24, 2023
e9cc7be
Improve memory doc comment
webmaster128 May 24, 2023
07fcba8
Fix Modulej comment
webmaster128 May 24, 2023
4b5e5e3
Remove unused make_compile_time_store
webmaster128 May 24, 2023
fe24771
Organize operators
webmaster128 May 24, 2023
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
1 change: 1 addition & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ workflows:
- /^[0-9]+\.[0-9]+$/
# Add your branch here if benchmarking matters to your work
- fix-benchmarking
- w3
Copy link
Contributor

@maurolacy maurolacy May 24, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can now be removed perhaps?

- coverage
deploy:
jobs:
Expand Down
Loading