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 +4 -4
- data/CHANGELOG.md +21 -3
- data/UNRELEASED.md +3 -13
- data/lib/opal/version.rb +1 -1
- data/opal/corelib/constants.rb +2 -2
- data/opal/corelib/error.rb +1 -1
- metadata +7 -10
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b2ea28174046f03dbf38c8a33c59c6e9dfc44704f36e80d0b271cdf6fbc8d591
|
|
4
|
+
data.tar.gz: a1f1dff5830cdc5ca5ad9cae396373da7e1b3bead1d9bfd64de1178f3680ddf7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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.
|
|
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
|
-
|
|
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
data/opal/corelib/constants.rb
CHANGED
|
@@ -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
|
|
5
|
-
::RUBY_RELEASE_DATE = '
|
|
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'
|
data/opal/corelib/error.rb
CHANGED
|
@@ -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
|
-
::
|
|
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
|
|
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:
|
|
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
|
|
1250
|
-
readme_uri: https://github.com/opal/opal/blob/v1.8.3
|
|
1251
|
-
api_documentation_uri: http://opalrb.com/docs/api/v1.8.3
|
|
1252
|
-
guides_uri: http://opalrb.com/docs/guides/v1.8.3
|
|
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:
|
|
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:
|