mini_racer 0.17.0.pre3 → 0.17.0.pre4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 30c0fb2a928a9d8f2131fc06ec172c5ef3e18b22399bc100556bc9ed548df43d
4
- data.tar.gz: b91b328031543ab06538738a012f1742062f9133bd940d7038edadb04ada2d8d
3
+ metadata.gz: 877bcc1b7a601bcd6ef672cc17caeb7e21df723a440b1d07a2a4931e2a4d118a
4
+ data.tar.gz: e8ea952ea537c94d1c05998d521555d78349755ab1172925b24a4135d6691d99
5
5
  SHA512:
6
- metadata.gz: b14478f41225d1241fdeb766984487bc55f6e97b9d647b6f446d10ac185c71af058dc690010519f4845d697024d12294a3172f92ff809234f13b8bb828dffe33
7
- data.tar.gz: 624bd70de9e442834c82c4d4648fcdde0a61faf0d54166b1ae97b6f4b803d1ac51f36621a24d4c777d6466c645b805777abeeac6c873075fcaa2e0abd8d7b44b
6
+ metadata.gz: d1f45fb9e917632eff3131c9399710fad8f7ef47228e02f72a139122efd13565055b2851dc9348e6852cf009e1c5c93f0adf970544983f7713457f482a976a8d
7
+ data.tar.gz: 8ede15ef0dbe8a2b16ad9567d584ef57fcd2e0a2e801931476d7b4107d3c05154f70a5d1d96d7960919b939a4ea496d6d101a994b625d9a8000b79c7ee49bcc9
data/CHANGELOG CHANGED
@@ -1,3 +1,7 @@
1
+ - 0.17.0.pre4 - 18-09-2024
2
+
3
+ - Attempt to change compilation flags to disable strict aliasing to see if it resolves stability issues
4
+
1
5
  - 0.17.0.pre3 - 15-09-2024
2
6
 
3
7
  - Text clang based Linux v8 build, in case there is an edge case with GCC compilation
data/README.md CHANGED
@@ -12,9 +12,12 @@ MiniRacer has an adapter for [execjs](https://github.com/rails/execjs) so it can
12
12
 
13
13
  ## Supported Ruby Versions & Troubleshooting
14
14
 
15
- MiniRacer only supports non-EOL versions of Ruby. See [Ruby Maintenance Branches](https://www.ruby-lang.org/en/downloads/branches/) for the list of non-EOL Rubies. If you require support for older versions of Ruby install an older version of the gem.
15
+ MiniRacer only supports non-EOL versions of Ruby. See [Ruby Maintenance Branches](https://www.ruby-lang.org/en/downloads/branches/) for the list of non-EOL Rubies. If you require support for older versions of Ruby install an older version of the gem. [TruffleRuby](https://github.com/oracle/truffleruby) is also supported.
16
16
 
17
- MiniRacer **does not support** [Ruby built on MinGW](https://github.com/rubyjs/mini_racer/issues/252#issuecomment-1201172236), "pure windows" no Cygwin, no WSL2 (see https://github.com/rubyjs/libv8-node/issues/9).
17
+ MiniRacer **does not support**
18
+
19
+ * [Ruby built on MinGW](https://github.com/rubyjs/mini_racer/issues/252#issuecomment-1201172236), "pure windows" no Cygwin, no WSL2 (see https://github.com/rubyjs/libv8-node/issues/9)
20
+ * [JRuby](https://www.jruby.org)
18
21
 
19
22
  If you have a problem installing MiniRacer, please consider the following steps:
20
23
 
@@ -19,6 +19,9 @@ $CXXFLAGS += " -rdynamic" unless $CXXFLAGS.split.include? "-rdynamic"
19
19
  $CXXFLAGS += " -fPIC" unless $CXXFLAGS.split.include? "-rdynamic" or IS_DARWIN
20
20
  $CXXFLAGS += " -std=c++17"
21
21
  $CXXFLAGS += " -fpermissive"
22
+ $CXXFLAGS += " -fno-rtti"
23
+ $CXXFLAGS += " -fno-exceptions"
24
+ $CXXFLAGS += " -fno-strict-aliasing"
22
25
  #$CXXFLAGS += " -DV8_COMPRESS_POINTERS"
23
26
  $CXXFLAGS += " -fvisibility=hidden "
24
27
 
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module MiniRacer
4
- VERSION = "0.17.0.pre3"
4
+ VERSION = "0.17.0.pre4"
5
5
  LIBV8_NODE_VERSION = "~> 22.7.0.4"
6
6
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mini_racer
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.17.0.pre3
4
+ version: 0.17.0.pre4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sam Saffron
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-09-15 00:00:00.000000000 Z
11
+ date: 2024-09-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -119,9 +119,9 @@ licenses:
119
119
  - MIT
120
120
  metadata:
121
121
  bug_tracker_uri: https://github.com/discourse/mini_racer/issues
122
- changelog_uri: https://github.com/discourse/mini_racer/blob/v0.17.0.pre3/CHANGELOG
123
- documentation_uri: https://www.rubydoc.info/gems/mini_racer/0.17.0.pre3
124
- source_code_uri: https://github.com/discourse/mini_racer/tree/v0.17.0.pre3
122
+ changelog_uri: https://github.com/discourse/mini_racer/blob/v0.17.0.pre4/CHANGELOG
123
+ documentation_uri: https://www.rubydoc.info/gems/mini_racer/0.17.0.pre4
124
+ source_code_uri: https://github.com/discourse/mini_racer/tree/v0.17.0.pre4
125
125
  post_install_message:
126
126
  rdoc_options: []
127
127
  require_paths: