Skip to content

Releases: ruby/ruby.wasm

2023-11-17-a

17 Nov 15:30
0a3bdcf
Compare
Choose a tag to compare

2023-11-16-a

16 Nov 15:10
0a3bdcf
Compare
Choose a tag to compare

2.2.0

15 Nov 07:55
Compare
Choose a tag to compare
channel source
head ruby/ruby@e1978a905a32af2d48b6e9efb6d0fe1656fddc5b
3_2 ruby/ruby@a528908271c678360d2d8ca232c178e7cdd340b4

What's Changed

  • JS::Object#to_a added to js library:
# Before 2.2.0
collection = JS.global[:document].querySelectorAll("p")
collection[:length].to_i.times do |i|
  element = collection[i]
  # ...
end

# New
JS.global[:document].querySelectorAll("p").to_a.each do |element|
  # ...
end
  • Performance improved: Array#to_js
  • Improved stack size related crashes (Only applied to head channel) #302
  • Update dependencies
    • zlib: 1.2.13 -> 1.3

Pull Requests

New Contributors

  • @gifvex made their first contribution in #270
  • @krmbn0576 made their first contribution in #281
  • @ahogappa0613 made their first contribution in #283

Full Changelog: 2.1.0...2.2.0

2023-11-15-a

15 Nov 15:11
07f1fdc
Compare
Choose a tag to compare

2023-11-14-a

14 Nov 15:30
b37b90c
Compare
Choose a tag to compare

2023-11-12-a

12 Nov 15:39
c5052f2
Compare
Choose a tag to compare

2023-11-11-a

11 Nov 15:13
a67b8f1
Compare
Choose a tag to compare

2023-11-10-a

10 Nov 15:40
Compare
Choose a tag to compare

2023-11-09-a

09 Nov 15:42
Compare
Choose a tag to compare

2023-11-08-a

08 Nov 15:41
Compare
Choose a tag to compare