opal 1.8.3.rc1 → 1.8.3

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: 0b7bdbaa11982b36e41c9595ac6cba3ced898573fa40bee52b0d599aee66c0d9
4
- data.tar.gz: 23b40fdd12f4b82aafb53ffcc376aff8ee7635e74f37fe7b711d99dbc2c315ac
3
+ metadata.gz: b2ea28174046f03dbf38c8a33c59c6e9dfc44704f36e80d0b271cdf6fbc8d591
4
+ data.tar.gz: a1f1dff5830cdc5ca5ad9cae396373da7e1b3bead1d9bfd64de1178f3680ddf7
5
5
  SHA512:
6
- metadata.gz: 419a5ea103d370ec908f98bd2e4e24d79401d8704b781eea52b359041b12b6a012eb048caa01bd2ccedd34746e22b0b6a2fbce51802bc040157855a393b58244
7
- data.tar.gz: 2ba934b813ebb3fb51291273cb4653f80652a1a2a02555b7fd97d8d4c1813fe13938c85495b18b426e59a384dc0cdf706b1e4df63a117163d8327418ac83ec2d
6
+ metadata.gz: 50e163da86b18c05218439925f3bd78706a9761d1f290013841fbf9075131e720aec24ff9d2a60c4d284b4873983fdeb28c1e772773fcbc51fefb47160abe8f7
7
+ data.tar.gz: 2214f9e09e7c0de82a6ed9e2b3fa9a3c99ac6cb82fb09966bc7c1f74a8586d917c85672c8826d14429dc46f18e681fa2dea8e0560e7127a82ce5adfa2cbdcb09
data/CHANGELOG.md CHANGED
@@ -16,17 +16,35 @@ Changes are grouped as follows:
16
16
 
17
17
 
18
18
 
19
- ## [1.8.2](https://github.com/opal/opal/compare/v1.8.1...v1.8.2) - 2023-11-23
19
+ ## [1.8.3](https://github.com/opal/opal/compare/v1.8.2...v1.8.3) - 2026-05-01
20
20
 
21
21
 
22
22
  <!--
23
- ### Internal
24
- ### Changed
25
23
  ### Added
26
24
  ### Removed
27
25
  ### Deprecated
26
+ ### Performance
28
27
  -->
29
28
 
29
+ ### Changed
30
+ - Use of `JS` constant is now deprecated. The constant has been renamed to `Opal::Raw`. Throw a warning if such a constant is in use ([#2525](https://github.com/opal/opal/pull/2525))
31
+
32
+ ### Fixed
33
+ - `String#chars`: Fix iteration over out-of-BMP characters ([#2620](https://github.com/opal/opal/pull/2620))
34
+ - Fix `Array#include?` to respect nil return value ([#2661](https://github.com/opal/opal/pull/2661))
35
+ - Fix `opal-build` command line utility for newer Ruby versions ([#2675](https://github.com/opal/opal/pull/2675))
36
+ - Depend on `base64` gem for Ruby 3.4 compatibility ([#2652](https://github.com/opal/opal/pull/2652))
37
+
38
+ ### Internal
39
+ - Ensure we default to later Ruby versions in CI ([#2624](https://github.com/opal/opal/pull/2624))
40
+ - Unassorted CI/Rubocop/testing system changes (#2676, #2654, #2644, #2631, #2627, #2626)
41
+
42
+
43
+
44
+
45
+ ## [1.8.2](https://github.com/opal/opal/compare/v1.8.1...v1.8.2) - 2023-11-23
46
+
47
+
30
48
  ### Performance
31
49
 
32
50
  - Optimize `Hash#rehash` for the common case, avoid calling `$slice` when no hash collision is present ([#2571](https://github.com/opal/opal/pull/2571))
data/UNRELEASED.md CHANGED
@@ -1,20 +1,10 @@
1
1
  <!--
2
+ ### Internal
3
+ ### Changed
2
4
  ### Added
3
5
  ### Removed
4
6
  ### Deprecated
5
7
  ### Performance
6
- -->
7
-
8
- ### Changed
9
- - Use of `JS` constant is now deprecated. The constant has been renamed to `Opal::Raw`. Throw a warning if such a constant is in use (#2525)
10
-
11
8
  ### Fixed
12
- - `String#chars`: Fix iteration over out-of-BMP characters (#2620)
13
- - Fix `Array#include?` to respect nil return value (#2661)
14
- - Fix `opal-build` command line utility for newer Ruby versions (#2675)
15
- - Depend on `base64` gem for Ruby 3.4 compatibility (#2652)
16
-
17
- ### Internal
18
- - Ensure we default to later Ruby versions in CI (#2624)
19
- - Unassorted CI/Rubocop/testing system changes (#2676, #2654, #2644, #2631, #2627, #2626)
9
+ -->
20
10
 
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.8.3.rc1'
6
+ VERSION = '1.8.3'
7
7
  end
@@ -1,8 +1,8 @@
1
1
  ::RUBY_PLATFORM = 'opal'
2
2
  ::RUBY_ENGINE = 'opal'
3
3
  ::RUBY_VERSION = '3.2.0'
4
- ::RUBY_ENGINE_VERSION = '1.8.3.rc1'
5
- ::RUBY_RELEASE_DATE = '2024-08-08'
4
+ ::RUBY_ENGINE_VERSION = '1.8.3'
5
+ ::RUBY_RELEASE_DATE = '2026-05-01'
6
6
  ::RUBY_PATCHLEVEL = 0
7
7
  ::RUBY_REVISION = '0'
8
8
  ::RUBY_COPYRIGHT = 'opal - Copyright (C) 2011-2024 Adam Beynon and the Opal contributors'
@@ -339,7 +339,7 @@ module ::JS
339
339
  warn '[Opal] JS::Error class has been renamed to Opal::Raw::Error and will change semantics in Opal 2.1. ' \
340
340
  'To ensure forward compatibility, please update your rescue clauses.'
341
341
 
342
- ::JS::Raw::Error
342
+ ::Opal::Raw::Error
343
343
  else
344
344
  super
345
345
  end
metadata CHANGED
@@ -1,16 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: opal
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.8.3.rc1
4
+ version: 1.8.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Elia Schito
8
8
  - meh.
9
9
  - Adam Beynon
10
- autorequire:
11
10
  bindir: exe
12
11
  cert_chain: []
13
- date: 2024-08-08 00:00:00.000000000 Z
12
+ date: 1980-01-02 00:00:00.000000000 Z
14
13
  dependencies:
15
14
  - !ruby/object:Gem::Dependency
16
15
  name: ast
@@ -1246,13 +1245,12 @@ licenses:
1246
1245
  metadata:
1247
1246
  homepage_uri: https://opalrb.com/
1248
1247
  bug_tracker_uri: https://github.com/opal/opal/issues
1249
- changelog_uri: https://github.com/opal/opal/blob/v1.8.3.rc1/CHANGELOG.md
1250
- readme_uri: https://github.com/opal/opal/blob/v1.8.3.rc1/README.md
1251
- api_documentation_uri: http://opalrb.com/docs/api/v1.8.3.rc1/index.html
1252
- guides_uri: http://opalrb.com/docs/guides/v1.8.3.rc1/index.html
1248
+ changelog_uri: https://github.com/opal/opal/blob/v1.8.3/CHANGELOG.md
1249
+ readme_uri: https://github.com/opal/opal/blob/v1.8.3/README.md
1250
+ api_documentation_uri: http://opalrb.com/docs/api/v1.8.3/index.html
1251
+ guides_uri: http://opalrb.com/docs/guides/v1.8.3/index.html
1253
1252
  chat_uri: https://gitter.im/opal/opal
1254
1253
  source_code_uri: https://github.com/opal/opal
1255
- post_install_message:
1256
1254
  rdoc_options: []
1257
1255
  require_paths:
1258
1256
  - lib
@@ -1267,8 +1265,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
1267
1265
  - !ruby/object:Gem::Version
1268
1266
  version: '0'
1269
1267
  requirements: []
1270
- rubygems_version: 3.5.11
1271
- signing_key:
1268
+ rubygems_version: 4.0.6
1272
1269
  specification_version: 4
1273
1270
  summary: Ruby runtime and core library for JavaScript
1274
1271
  test_files: