opal 1.5.0.rc1 → 1.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6ac3c5ae91f1f31b94c292f0aed320bdba76511abd34bb6dc45294c11958e802
4
- data.tar.gz: 473ca0893f427b05c88c64805dc0f64668816b263b136863b903f5262aba7aef
3
+ metadata.gz: c7a74100fe9d5254983a2b7efde2482df462edae5aa85bdd691ce89c13de5081
4
+ data.tar.gz: 7c1841adacfc5dbf7156646bafd37592f1d9f54c31e07f98d7e2f77e4dc108e0
5
5
  SHA512:
6
- metadata.gz: 5ba1e5223c56695db351ede10b36872590b29701f4576c9a1962502686434548d855d71fdd147e5b34492bb70964db72bed3229cc552dfa139a2db747dd4caa1
7
- data.tar.gz: 30e97d6c8293b918084145f15cd9f42d6495989405d97ebbccc414440c281a8297405f651560e8a65ea21dda191631d9bd20fda058d5693af1c25b8b61cc1e40
6
+ metadata.gz: 9324444976198f22d216fec12cda5047389b6c4c0afacdf3d19d458e85f329f9339e7fe626de2659af51dd8acd3d8edabaea878789fb58ce05f67d67d254f9da
7
+ data.tar.gz: fe8b6678035e4160ee85328b60a59dfc68307e3a26b7a5e8e1273f3948017a0a7ad38c5858fedf1cce2fdfc7e93c9ea6d7cc210fbd0e7e916da599d2eec7b496
data/CHANGELOG.md CHANGED
@@ -15,27 +15,70 @@ Changes are grouped as follows:
15
15
 
16
16
 
17
17
 
18
- ## [1.4.1](https://github.com/opal/opal/compare/v1.4.0...v1.4.1) - 2022-01-12
18
+ ## [1.5.0](https://github.com/opal/opal/compare/v1.4.1...v1.5.0) - 2022-04-13
19
+
20
+
21
+ ### Added
19
22
 
23
+ - Introduce timezone support for Time ([#2394](https://github.com/opal/opal/pull/2394))
24
+ - DateTime and Date refactor ([#2398](https://github.com/opal/opal/pull/2398))
25
+ - Implement `Number#prev_float`/`#next_float` ([#2404](https://github.com/opal/opal/pull/2404))
26
+ - Support `binding.irb` anywhere in the code, for both browsers and node ([#2392](https://github.com/opal/opal/pull/2392))
27
+ - Added `URI.decode_www_form` ([#2387](https://github.com/opal/opal/pull/2387))
20
28
 
21
29
  ### Changed
22
30
 
23
- - PromiseV2 is now declared a stable interface!
31
+ - Move Math IE11-supporting polyfills to a separate file ([#2395](https://github.com/opal/opal/pull/2395))
32
+ - String methods always return Strings even when overloaded ([#2413](https://github.com/opal/opal/pull/2413))
33
+ - `alias` calls will not add the "old name" method to the list of stubs for method missing ([#2414](https://github.com/opal/opal/pull/2414))
34
+ - Optimize writer/setter methods, up to 4% performance gain ([#2402](https://github.com/opal/opal/pull/2402))
35
+
36
+ ### Performance
37
+
38
+ - Improve performance of argument coertion, fast-track `Integer`, `String`, and calling the designed coertion method ([#2383](https://github.com/opal/opal/pull/2383))
39
+ - Optimize `Array#[]=` by moving the implementation to JavaScript and inlining type checks ([#2383](https://github.com/opal/opal/pull/2383))
40
+ - Optimize internal runtime passing of block-options ([#2383](https://github.com/opal/opal/pull/2383))
41
+ - Compile `case` statements as `switch` whenever possible ([#2411](https://github.com/opal/opal/pull/2411))
42
+ - Improve performance with optimized common method/iter implementation shortcuts ([#2401](https://github.com/opal/opal/pull/2401))
24
43
 
25
44
  ### Fixed
26
45
 
27
- - Args named with JS reserved words weren't always renamed when _zsuper_ was involved ([#2385](https://github.com/opal/opal/pull/2385))
46
+ - Fix `Regexp.new`, previously `\A` and `\z` didn't match beginning and end of input ([#2079](https://github.com/opal/opal/pull/2079))
47
+ - Fix exception during `Hash#each` and `Hash#each_key` if keys get deleted during the loop ([#2403](https://github.com/opal/opal/pull/2403))
48
+ - Fix defining multiple methods with the same block ([#2397](https://github.com/opal/opal/pull/2397))
49
+ - A few edge cases of conditional calls combined with setters, e.g. `foo&.bar = 123` ([#2402](https://github.com/opal/opal/pull/2402))
50
+ - Correct String#to_proc and method_missing compatibility ([#2418](https://github.com/opal/opal/pull/2418))
51
+ - Exit REPL respecting the exit status number ([#2396](https://github.com/opal/opal/pull/2396))
52
+
53
+ ### Internal
54
+
55
+ - Rewriters refactor, fix interaction between cache and inverted runner ([#2400](https://github.com/opal/opal/pull/2400))
28
56
 
29
57
  <!--
58
+ ### Internal
59
+ ### Changed
30
60
  ### Added
31
61
  ### Removed
32
62
  ### Deprecated
33
- ### Internal
34
63
  -->
35
64
 
36
65
 
37
66
 
38
67
 
68
+ ## [1.4.1](https://github.com/opal/opal/compare/v1.4.0...v1.4.1) - 2022-01-12
69
+
70
+
71
+ ### Changed
72
+
73
+ - PromiseV2 is now declared a stable interface! ([#2380](https://github.com/opal/opal/pull/2380))
74
+
75
+ ### Fixed
76
+
77
+ - Args named with JS reserved words weren't always renamed when _zsuper_ was involved ([#2385](https://github.com/opal/opal/pull/2385))
78
+
79
+
80
+
81
+
39
82
  ## [1.4.0](https://github.com/opal/opal/compare/v1.3.2...v1.4.0) - 2021-12-24
40
83
 
41
84
 
data/UNRELEASED.md CHANGED
@@ -1,43 +1,8 @@
1
- ### Added
2
-
3
- - Introduce timezone support for Time (#2394)
4
- - DateTime and Date refactor (#2398)
5
- - Implement `Number#prev_float`/`#next_float` (#2404)
6
- - Support `binding.irb` anywhere in the code, for both browsers and node (#2392)
7
- - Added `URI.decode_www_form` (#2387)
8
-
9
- ### Changed
10
-
11
- - Move Math IE11-supporting polyfills to a separate file (#2395)
12
- - String methods always return Strings even when overloaded (#2413)
13
- - `alias` calls will not add the "old name" method to the list of stubs for method missing (#2414)
14
- - Optimize writer/setter methods, up to 4% performance gain (#2402)
15
-
16
- ### Performance
17
-
18
- - Improve performance of argument coertion, fast-track `Integer`, `String`, and calling the designed coertion method (#2383)
19
- - Optimize `Array#[]=` by moving the implementation to JavaScript and inlining type checks (#2383)
20
- - Optimize internal runtime passing of block-options (#2383)
21
- - Compile `case` statements as `switch` whenever possible (#2411)
22
- - Improve performance with optimized common method/iter implementation shortcuts (#2401)
23
-
24
- ### Fixed
25
-
26
- - Fix `Regexp.new`, previously `\A` and `\z` didn't match beginning and end of input (#2079)
27
- - Fix exception during `Hash#each` and `Hash#each_key` if keys get deleted during the loop (#2403)
28
- - Fix defining multiple methods with the same block (#2397)
29
- - A few edge cases of conditional calls combined with setters, e.g. `foo&.bar = 123` (#2402)
30
- - Correct String#to_proc and method_missing compatibility (#2418)
31
- - Exit REPL respecting the exit status number (#2396)
32
-
33
- ### Internal
34
-
35
- - Rewriters refactor, fix interaction between cache and inverted runner (#2400)
36
-
37
1
  <!--
38
2
  ### Internal
39
3
  ### Changed
40
4
  ### Added
41
5
  ### Removed
42
6
  ### Deprecated
7
+ ### Performance
43
8
  -->
data/lib/opal/version.rb CHANGED
@@ -3,5 +3,5 @@
3
3
  module Opal
4
4
  # WHEN RELEASING:
5
5
  # Remember to update RUBY_ENGINE_VERSION in opal/corelib/constants.rb too!
6
- VERSION = '1.5.0.rc1'
6
+ VERSION = '1.5.0'
7
7
  end
@@ -1,8 +1,8 @@
1
1
  ::RUBY_PLATFORM = 'opal'
2
2
  ::RUBY_ENGINE = 'opal'
3
3
  ::RUBY_VERSION = '3.1.0'
4
- ::RUBY_ENGINE_VERSION = '1.5.0.rc1'
5
- ::RUBY_RELEASE_DATE = '2022-04-06'
4
+ ::RUBY_ENGINE_VERSION = '1.5.0'
5
+ ::RUBY_RELEASE_DATE = '2022-04-13'
6
6
  ::RUBY_PATCHLEVEL = 0
7
7
  ::RUBY_REVISION = '0'
8
8
  ::RUBY_COPYRIGHT = 'opal - Copyright (C) 2013-2022 Adam Beynon and the Opal contributors'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: opal
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.5.0.rc1
4
+ version: 1.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Elia Schito
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: exe
12
12
  cert_chain: []
13
- date: 2022-04-06 00:00:00.000000000 Z
13
+ date: 2022-04-13 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: ast
@@ -1160,10 +1160,10 @@ licenses:
1160
1160
  metadata:
1161
1161
  homepage_uri: https://opalrb.com/
1162
1162
  bug_tracker_uri: https://github.com/opal/opal/issues
1163
- changelog_uri: https://github.com/opal/opal/blob/v1.5.0.rc1/CHANGELOG.md
1164
- readme_uri: https://github.com/opal/opal/blob/v1.5.0.rc1/README.md
1165
- api_documentation_uri: http://opalrb.com/docs/api/v1.5.0.rc1/index.html
1166
- guides_uri: http://opalrb.com/docs/guides/v1.5.0.rc1/index.html
1163
+ changelog_uri: https://github.com/opal/opal/blob/v1.5.0/CHANGELOG.md
1164
+ readme_uri: https://github.com/opal/opal/blob/v1.5.0/README.md
1165
+ api_documentation_uri: http://opalrb.com/docs/api/v1.5.0/index.html
1166
+ guides_uri: http://opalrb.com/docs/guides/v1.5.0/index.html
1167
1167
  chat_uri: https://gitter.im/opal/opal
1168
1168
  source_code_uri: https://github.com/opal/opal
1169
1169
  post_install_message:
@@ -1177,9 +1177,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
1177
1177
  version: '2.3'
1178
1178
  required_rubygems_version: !ruby/object:Gem::Requirement
1179
1179
  requirements:
1180
- - - ">"
1180
+ - - ">="
1181
1181
  - !ruby/object:Gem::Version
1182
- version: 1.3.1
1182
+ version: '0'
1183
1183
  requirements: []
1184
1184
  rubygems_version: 3.3.7
1185
1185
  signing_key: