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 +4 -4
- data/CHANGELOG +3 -0
- data/ext/mini_racer_extension/mini_racer_extension.c +7 -1
- data/ext/mini_racer_extension/mini_racer_v8.cc +21 -3
- data/lib/mini_racer/version.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d136b28eba55fb9518691cd3dc38a0e95af3171d6d1796c7e892ce411023cfe6
|
4
|
+
data.tar.gz: '07829f6048ef890b28574629b94f0371f441fcef176cb3c70c78da266280dd1f'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a0a80d3d34ba093a39f95fea716048c448800515667a426558fe00d6ffbd70614a375b64c2be923750d57e868c01a959c4396ab5c9afd25e0caefd2816ca4a82
|
7
|
+
data.tar.gz: a3d7655f8f1ec369a1f279f8d983098d4f8fac381e6404116a0d72133e32a06f8c99309001d33628a440085b7b36079bcba318ae6dedd1a1eff0f381e6b8b9d4
|
data/CHANGELOG
CHANGED
@@ -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
|
-
|
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
|
-
|
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
|
-
|
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
|
-
|
662
|
+
reply_retry(st, result);
|
645
663
|
}
|
646
664
|
|
647
665
|
int snapshot(bool is_warmup, bool verbose_exceptions,
|
data/lib/mini_racer/version.rb
CHANGED
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.
|
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
|
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.
|
141
|
-
documentation_uri: https://www.rubydoc.info/gems/mini_racer/0.18.
|
142
|
-
source_code_uri: https://github.com/discourse/mini_racer/tree/v0.18.
|
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:
|