ruby_wasm 2.6.1-aarch64-linux-musl → 2.6.2-aarch64-linux-musl

Sign up to get free protection for your applications and to get access to all the features.
data/package.json CHANGED
@@ -5,9 +5,9 @@
5
5
  "packages/npm-packages/*"
6
6
  ],
7
7
  "devDependencies": {
8
- "@playwright/test": "^1.43.1",
8
+ "@playwright/test": "^1.44.1",
9
9
  "@rollup/plugin-json": "^6.1.0",
10
- "rollup": "^4.17.2",
10
+ "rollup": "^4.18.0",
11
11
  "@bytecodealliance/jco": "./vendor/jco"
12
12
  }
13
13
  }
@@ -30,9 +30,10 @@ def npm_pkg_rubies_cache_key(pkg)
30
30
  require "open3"
31
31
  cmd = build_command + ["--print-ruby-cache-key"]
32
32
  chdir = pkg[:gemfile] ? File.dirname(pkg[:gemfile]) : Dir.pwd
33
- stdout, status = Open3.capture2(*cmd, chdir: chdir)
33
+ env = { "RUBY_WASM_ROOT" => LIB_ROOT }
34
+ stdout, status = Open3.capture2(env, *cmd, chdir: chdir)
34
35
  unless status.success?
35
- raise "Command failed with status (#{status.exitstatus}): #{cmd.join ""}"
36
+ raise "Command failed with status (#{status.exitstatus}): #{cmd.join " "}"
36
37
  end
37
38
  require "json"
38
39
  JSON.parse(stdout)["hexdigest"]
@@ -79,7 +80,7 @@ namespace :npm do
79
80
  component_path = File.join(pkg_dir, "tmp", "ruby.component.wasm")
80
81
  FileUtils.mkdir_p(File.dirname(component_path))
81
82
 
82
- sh env.merge("RUBY_WASM_EXPERIMENTAL_COMPONENT_MODEL" => "1"),
83
+ sh env.merge("RUBY_WASM_EXPERIMENTAL_DYNAMIC_LINKING" => "1"),
83
84
  *build_command, "-o", component_path
84
85
  sh "npx", "jco", "transpile",
85
86
  "--no-wasi-shim", "--instantiation", "--valid-lifting-optimization",
@@ -33,6 +33,7 @@ module RubyWasm
33
33
  @source: BuildSource
34
34
 
35
35
  attr_reader toolchain: Toolchain
36
+ attr_reader baseruby: BaseRubyProduct
36
37
 
37
38
  def initialize: (
38
39
  string name,
@@ -33,4 +33,12 @@ module RubyWasmExt
33
33
  def import_name_map: (Hash[String, String] map) -> void
34
34
  def encode: () -> bytes
35
35
  end
36
+
37
+ class WasiVirt
38
+ def initialize: () -> void
39
+ def allow_all: () -> void
40
+ def map_dir: (String guest_path, String host_path) -> void
41
+ def finish: () -> bytes
42
+ def compose: (bytes component_bytes) -> bytes
43
+ end
36
44
  end
@@ -46,7 +46,7 @@ class RubyWasm::Packager
46
46
 
47
47
  def root: () -> string
48
48
 
49
- ALL_DEFAULT_EXTS: string
49
+ ALL_DEFAULT_EXTS: String
50
50
 
51
51
  def build_options: () -> Hash[Symbol, untyped]
52
52
  def full_build_options: () -> Hash[Symbol, untyped]
@@ -77,6 +77,7 @@ class RubyWasm::Packager
77
77
  def build_gem_exts: (RubyWasm::BuildExecutor, string gem_home) -> void
78
78
  def link_gem_exts: (RubyWasm::BuildExecutor, string ruby_root, string gem_home, bytes module_bytes) -> bytes
79
79
  def wasi_exec_model: () -> String
80
+ def with_unbundled_env: () { () -> void } -> void
80
81
  end
81
82
 
82
83
  class DynamicLinking < RubyWasm::Packager::Core::BuildStrategy
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruby_wasm
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.6.1
4
+ version: 2.6.2
5
5
  platform: aarch64-linux-musl
6
6
  authors:
7
7
  - Yuta Saito
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-05-22 00:00:00.000000000 Z
11
+ date: 2024-06-29 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Ruby to WebAssembly toolkit. This gem takes Ruby code and Gemfile, and
14
14
  packages them with Ruby runtime into a WebAssembly binary.