mini_racer 0.18.0 → 0.18.1

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: fef1f817dc1b549c08a4755afd1c767ea3bdfc34f44febd1792df24f867f28e8
4
- data.tar.gz: 559080d182a14c5c52215d119afb9e79aec02a11a976b39b18088cb0841cbc6e
3
+ metadata.gz: d136b28eba55fb9518691cd3dc38a0e95af3171d6d1796c7e892ce411023cfe6
4
+ data.tar.gz: '07829f6048ef890b28574629b94f0371f441fcef176cb3c70c78da266280dd1f'
5
5
  SHA512:
6
- metadata.gz: b88dd39b59e72befdecc2312096e32e6fd79ee0822ea9ae2b319cfec4fc1327c1092a84bf8c30db721a7309fe279e009b2939cef9ce8334094cd701aea229540
7
- data.tar.gz: 691b89578567b3fa2325f15a13a294f8cad664897fd0e966b78dfb13eae455abfb51d489ca73ffb166738b46a0e37b8ad8ccc225205170d19c58322e11ff10b3
6
+ metadata.gz: a0a80d3d34ba093a39f95fea716048c448800515667a426558fe00d6ffbd70614a375b64c2be923750d57e868c01a959c4396ab5c9afd25e0caefd2816ca4a82
7
+ data.tar.gz: a3d7655f8f1ec369a1f279f8d983098d4f8fac381e6404116a0d72133e32a06f8c99309001d33628a440085b7b36079bcba318ae6dedd1a1eff0f381e6b8b9d4
data/CHANGELOG CHANGED
@@ -1,3 +1,6 @@
1
+ - 0.18.1 - 03-04-2025
2
+ - Convert round doubles to fixnum for very big floats - this has better parity with JavaScript - Ben Noorhuis
3
+
1
4
  - 0.18.0 - 05-03-2025
2
5
  - Time for a major release
3
6
  - Handle ActiveSupport TimeWithZone objects during serialization - Sam Saffron
@@ -1,8 +1,10 @@
1
1
  #include <stdatomic.h>
2
+ #include <stdint.h>
2
3
  #include <stdio.h>
3
4
  #include <stdlib.h>
4
5
  #include <string.h>
5
6
  #include <pthread.h>
7
+ #include <math.h>
6
8
 
7
9
  #include "ruby.h"
8
10
  #include "ruby/encoding.h"
@@ -282,7 +284,11 @@ static void des_int(void *arg, int64_t v)
282
284
 
283
285
  static void des_num(void *arg, double v)
284
286
  {
285
- put(arg, DBL2NUM(v));
287
+ if (isfinite(v) && v == trunc(v) && v >= INT64_MIN && v <= INT64_MAX) {
288
+ put(arg, LONG2FIX(v));
289
+ } else {
290
+ put(arg, DBL2NUM(v));
291
+ }
286
292
  }
287
293
 
288
294
  static void des_date(void *arg, double v)
@@ -192,6 +192,24 @@ bool reply(State& st, v8::Local<v8::Value> result, v8::Local<v8::Value> err)
192
192
  return true;
193
193
  }
194
194
 
195
+ // for when a reply is not expected to fail because of serialization
196
+ // errors but can still fail when preempted by isolate termination;
197
+ // temporarily cancels the termination exception so it can send the reply
198
+ void reply_retry(State& st, v8::Local<v8::Value> response)
199
+ {
200
+ v8::TryCatch try_catch(st.isolate);
201
+ try_catch.SetVerbose(st.verbose_exceptions);
202
+ bool ok = reply(st, response);
203
+ while (!ok) {
204
+ assert(try_catch.HasCaught());
205
+ assert(try_catch.HasTerminated());
206
+ if (!try_catch.HasTerminated()) abort();
207
+ st.isolate->CancelTerminateExecution();
208
+ ok = reply(st, response);
209
+ st.isolate->TerminateExecution();
210
+ }
211
+ }
212
+
195
213
  v8::Local<v8::Value> sanitize(State& st, v8::Local<v8::Value> v)
196
214
  {
197
215
  // punch through proxies
@@ -434,7 +452,7 @@ extern "C" void v8_attach(State *pst, const uint8_t *p, size_t n)
434
452
  fail:
435
453
  if (!cause && try_catch.HasCaught()) cause = RUNTIME_ERROR;
436
454
  auto err = to_error(st, &try_catch, cause);
437
- if (!reply(st, err)) abort();
455
+ reply_retry(st, err);
438
456
  }
439
457
 
440
458
  // response is errback [result, err] array
@@ -590,7 +608,7 @@ extern "C" void v8_heap_stats(State *pst)
590
608
  PROP(number_of_native_contexts);
591
609
  PROP(number_of_detached_contexts);
592
610
  #undef PROP
593
- if (!reply(st, response)) abort();
611
+ reply_retry(st, response);
594
612
  }
595
613
 
596
614
  struct OutputStream : public v8::OutputStream
@@ -641,7 +659,7 @@ fail:
641
659
  st.err_reason = NO_ERROR;
642
660
  }
643
661
  auto result = v8::Boolean::New(st.isolate, ran_task);
644
- if (!reply(st, result)) abort();
662
+ reply_retry(st, result);
645
663
  }
646
664
 
647
665
  int snapshot(bool is_warmup, bool verbose_exceptions,
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module MiniRacer
4
- VERSION = "0.18.0"
4
+ VERSION = "0.18.1"
5
5
  LIBV8_NODE_VERSION = "~> 23.6.1.0"
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.18.0
4
+ version: 0.18.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sam Saffron
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-03-05 00:00:00.000000000 Z
11
+ date: 2025-04-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -137,9 +137,9 @@ licenses:
137
137
  - MIT
138
138
  metadata:
139
139
  bug_tracker_uri: https://github.com/discourse/mini_racer/issues
140
- changelog_uri: https://github.com/discourse/mini_racer/blob/v0.18.0/CHANGELOG
141
- documentation_uri: https://www.rubydoc.info/gems/mini_racer/0.18.0
142
- source_code_uri: https://github.com/discourse/mini_racer/tree/v0.18.0
140
+ changelog_uri: https://github.com/discourse/mini_racer/blob/v0.18.1/CHANGELOG
141
+ documentation_uri: https://www.rubydoc.info/gems/mini_racer/0.18.1
142
+ source_code_uri: https://github.com/discourse/mini_racer/tree/v0.18.1
143
143
  post_install_message:
144
144
  rdoc_options: []
145
145
  require_paths: