Recent Releases of wasmer

wasmer - 1.1.1

What's Changed

  • chore(deps): bump serde from 1.0.132 to 1.0.136 by @dependabot in https://github.com/wasmerio/wasmer-python/pull/605
  • chore(deps): bump anyhow from 1.0.51 to 1.0.53 by @dependabot in https://github.com/wasmerio/wasmer-python/pull/604
  • chore(deps): bump syn from 1.0.82 to 1.0.86 by @dependabot in https://github.com/wasmerio/wasmer-python/pull/603
  • chore(deps): bump pin-project-lite from 0.2.7 to 0.2.8 by @dependabot in https://github.com/wasmerio/wasmer-python/pull/596
  • chore(deps): bump pyo3-build-config from 0.14.5 to 0.15.1 by @dependabot in https://github.com/wasmerio/wasmer-python/pull/591
  • Fix typos by @kianmeng in https://github.com/wasmerio/wasmer-python/pull/639
  • Small tweak and documentation to build wasmer-python by @brunokim in https://github.com/wasmerio/wasmer-python/pull/681
  • Support for python 3.11 by @ayys in https://github.com/wasmerio/wasmer-python/pull/704
  • Prepare the 1.2.0 release by @ayys in https://github.com/wasmerio/wasmer-python/pull/721

New Contributors

  • @kianmeng made their first contribution in https://github.com/wasmerio/wasmer-python/pull/639
  • @brunokim made their first contribution in https://github.com/wasmerio/wasmer-python/pull/681
  • @ayys made their first contribution in https://github.com/wasmerio/wasmer-python/pull/704

Full Changelog: https://github.com/wasmerio/wasmer-python/compare/1.1.0...1.1.1

- Rust
Published by ayys over 2 years ago

wasmer - 1.1.0

Python Packages: - wasmer - wasmer-compiler-cranelift - wasmer-compiler-llvm - wasmer-compiler-singlepass

- Rust
Published by github-actions[bot] about 4 years ago

wasmer - 1.0.0

Python Packages: - wasmer - wasmer-compiler-cranelift - wasmer-compiler-llvm - wasmer-compiler-singlepass

- Rust
Published by github-actions[bot] about 5 years ago

wasmer - 1.0.0-beta2

Python Packages: - wasmer - wasmer-compiler-cranelift - wasmer-compiler-llvm - wasmer-compiler-singlepass

- Rust
Published by github-actions[bot] about 5 years ago

wasmer - 1.0.0-beta1

Python Packages:

Changed

  • The whole API changed to better match Wasmer and Wasm C API

```python from wasmer import engine, wat2wasm, ImportObject, Module, Store, Instance from wasmercompilercranelift import Compiler

# Create an Engine jit = engine.JIT(Compiler)

# Create a store. store = Store(jit)

# Let's compile the Wasm module. module = Module(store, wasm_bytes)

# Create an empty import object. import_object = ImportObject()

# Let's instantiate the Wasm module. instance = Instance(module, import_object) ```

Please refer to the examples and documentation to learn more about the changes.

- Rust
Published by jubianchi about 5 years ago

wasmer - 1.0.0-alpha3

- Rust
Published by github-actions[bot] over 5 years ago

wasmer - 0.4.1

Added

  • New Buffer class to read memory fast (#125 by @Hywan)

To get the memory buffer, use the Memory.buffer getter. A Buffer implements the Python Buffer Protocol. The goal is to get faster reading operations than the existing memory views API.

bytearray(instance.memory.buffer) is 15x faster than instance.memory.int8_view(). memoryview(instance.memory.buffer) is 14x faster than instance.memory.int8_view().

```python # Get the memory buffer. buffer = Instance(wasm_bytes).memory.buffer

# Use the buffer with memoryview memory_view = memoryview(buffer)

# Use the buffer with byte_array byte_array = bytearray(buffer)

# Enjoy the byte array API! assert byte_array[3:9].decode() == 'Wasmer' ```

  • Support exported globals through the Instance.globals API (#120 by @Hywan)

```python instance = Instance(wasm_bytes) x = instance.globals.x

assert x.value == 7 assert x.mutable == True

x.value = 153

assert x.value == 153 ```

  • Implement a WebAssembly custom section query API (#118 by @Hywan)

Module.custom_section_names is used to list all the custom section names.

Module.custom_section is used to read the value of a specific custom section. If the custom section does not exist, None is returned.

python assert Module(wasm_bytes).custom_section('hello') == b'World!'

  • Add the Module.imports getter to list all imports, and introduce the ImportKind enum (#117 by @Hywan)

python assert Module(wasm_bytes).imports == [ { 'kind': ImportKind.FUNCTION, 'namespace': 'ns', 'name': 'f1', }, { 'kind': ImportKind.FUNCTION, 'namespace': 'ns', 'name': 'f2', }, { 'kind': ImportKind.MEMORY, 'namespace': 'ns', 'name': 'm1', # Additional pairs specific to `MEMORY` 'minimum_pages': 3, 'maximum_pages': 4, }, { 'kind': ImportKind.GLOBAL, 'namespace': 'ns', 'name': 'g1', # Additional pairs specific to `GLOBAL` 'mutable': False, 'type': 'f32' }, { 'kind': ImportKind.TABLE, 'namespace': 'ns', 'name': 't1', # Additional pairs specific to `TABLE` 'minimum_elements': 1, 'maximum_elements': 2, 'element_type': 'anyfunc', } ]

  • Add the Module.exports getter to list all exports, and introduce the ExportKind enum (#115 and #116 by @Hywan)

python assert Module(wasm_bytes).exports == [ { 'name': 'memory', 'kind': ExportKind.MEMORY, }, { 'name': '__heap_base', 'kind': ExportKind.GLOBAL, }, { 'name': '__data_end', 'kind': ExportKind.GLOBAL, }, { 'name': 'sum', 'kind': ExportKind.FUNCTION, }, ]

  • Support modules without an exported memory (#114 by @Hywan)

```python instance = Instance(wasm_bytes)

# Now the memory getter can return None assert instance.memory == None ```

  • Add Rust trait to allow inspection of exported functions (#71 by @Mec-iS)

python instance = Instance(wasm_bytes) assert isinstance(instance.exports.sum.getfullargspec, str) assert isinstance(instance.exports.sum.getargs, str)

  • Memory views support slice assignment (#63 by @Hywan).

python memory = instance.memory.uint8_view() memory[0:4] = b"abcd"

The slice is bound to the memory view length. The slice accepts start, stop, and step parameters, so it is possible to write view[0:5:2] for instance. There is a huge difference with list slice assignment in Python: Elements in memory cannot be moved, so the assignment only overwrite elements.

```python // With regular Python list a = [1, 2, 3, 4, 5] a[1:3] = [10, 11, 12]

assert a == [1, 10, 11, 12, 4, 5]

// With WebAssembly memory views view[0:5] = [1, 2, 3, 4, 5] view[1:3] = [10, 11, 12]

assert view[0:5] == [1, 10, 11, 4, 5] ```

It is 10 times faster than a regular loop to write data in memory.

Read the pull request to learn more.

  • Make wasmer silently available anywhere with wasmer-any (#62 by @syrusakbary)

Changed

  • Improve documentation of Memory (#127 by @Hywan)
  • Add a C to WebAssembly example in the documentation (#122 by @Hywan)
  • Explain new features (#119 by @Hywan)
  • Migrate to Github Actions for the CI (#97, #98 #99 and #101 by @Hywan)
  • Update Wasmer from 0.6.0 to 0.14 (#70, #80, #88, #95, #113 and #132 by @Hywan)
  • Update Pyo3 from 0.8.2 to 0.8.4 (#93, #96)

Security

  • Bump spin from 0.5.0 to 0.5.2 (#72]

- Rust
Published by Hywan almost 6 years ago

wasmer - 0.3.0

Features

Extension

  • #56 Add the Memory.grow method (@Hywan)
  • #54 Bound slice to the size of the memory view —allow to write memory_view[0:] with no error— (@Hywan)
  • #51 Add wasmer.__core_version__ to get the runtime [Wasmer] version (@Hywan)
  • #48 Support module serialization with Module.serialize and Module.deserialize (@Hywan)

```python from wasmer import Module

# Get the Wasm bytes. wasmbytes = open('myprogram.wasm', 'rb').read()

# Compile the bytes into a Wasm module. module1 = Module(wasm_bytes)

# Serialize the module. serialized_module = module1.serialize()

# Let's forget about the module for this example. del module1

# Deserialize the module. module2 = Module.deserialize(serialized_module)

# Instantiate and use it. result = module2.instantiate().exports.sum(1, 2) ```

  • #47 Introduce the Module class, with Module.validate and Module.instantiate (@Hywan)

```python from wasmer import Module

# Get the Wasm bytes. wasmbytes = open('myprogram.wasm', 'rb').read()

# Compile the Wasm bytes into a Wasm module. module = Module(wasm_bytes)

# Instantiate the Wasm module. instance = module.instantiate()

# Call a function on it. result = instance.exports.sum(1, 2)

print(result) # 3 ```

  • #27 Add wasmer.__version__ to get the extension version (@Mec-iS)

Runtime

  • #59 Update Wasmer to 0.5.5 (@Hywan)
  • #42 Update Wasmer to 0.4.2 (@Hywan)
  • #26 Update Wasmer to 0.4.0 (@Hywan)

Bug/security fixes

  • #52 Update smallvec (@Hywan)
  • #46 Update pyo3 (@Hywan)
  • #38 Handle exported functions that return nothing, aka void functions (@Hywan)

Documentation

  • #55 More Python idiomatic examples (@Hywan)
  • #43 Add the greet example (@Hywan)
  • #36 Improve code documentation (@Mec-iS)
  • #25 Fix typos (@Hywan)
  • #19 Fix comments in examples (@Hywan)

Chore

  • #35 Setup Bors (@Hywan)
  • #31 Add Github templates (@Hywan)
  • #30 Rename just rust to just build (@Hywan)

- Rust
Published by Hywan over 6 years ago