libv8-node 20.2.0.0-arm64-darwin → 20.12.1.0-arm64-darwin
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/lib/libv8/node/version.rb +2 -2
- data/vendor/v8/arm64-darwin/libv8/obj/libv8_monolith.a +0 -0
- data/vendor/v8/include/v8-cppgc.h +5 -0
- data/vendor/v8/include/v8-object.h +17 -0
- data/vendor/v8/include/v8-profiler.h +10 -0
- data/vendor/v8/include/v8-script.h +3 -4
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: dda399fffad297a8a3a2bba429874e95e94693f1541549f311c13ceb2a96d525
|
4
|
+
data.tar.gz: 473244fdd30decefd0c5b918bd98e8900eecb991ee1cf254fa046cee79c2d7eb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cb66566366e294b6a7cf0e3dc5a94631869cbceea21f42f5b6f02be94ada6dcffa3ccba9d9cbd119b01fca54ea6ec6e9765a288999404ce0869e9765386f22db
|
7
|
+
data.tar.gz: 1d7fd89a9ea00264dc87cd07074245da7409e275eae5eb4a6ff11d018c3b517480b3e71ef2121a8b1be9508d1ef00bc4961f8f75f5f9d6324487967e208a512f
|
data/lib/libv8/node/version.rb
CHANGED
Binary file
|
@@ -177,6 +177,11 @@ class V8_EXPORT CppHeap {
|
|
177
177
|
void CollectGarbageInYoungGenerationForTesting(
|
178
178
|
cppgc::EmbedderStackState stack_state);
|
179
179
|
|
180
|
+
/**
|
181
|
+
* \returns the wrapper descriptor of this CppHeap.
|
182
|
+
*/
|
183
|
+
v8::WrapperDescriptor wrapper_descriptor() const;
|
184
|
+
|
180
185
|
private:
|
181
186
|
CppHeap() = default;
|
182
187
|
|
@@ -20,6 +20,8 @@ class Function;
|
|
20
20
|
class FunctionTemplate;
|
21
21
|
template <typename T>
|
22
22
|
class PropertyCallbackInfo;
|
23
|
+
class Module;
|
24
|
+
class UnboundScript;
|
23
25
|
|
24
26
|
/**
|
25
27
|
* A private symbol
|
@@ -480,6 +482,21 @@ class V8_EXPORT Object : public Value {
|
|
480
482
|
/** Sets the value in an internal field. */
|
481
483
|
void SetInternalField(int index, Local<Value> value);
|
482
484
|
|
485
|
+
/**
|
486
|
+
* Warning: These are Node.js-specific extentions used to avoid breaking
|
487
|
+
* changes in Node.js v20.x. They do not exist in V8 upstream and will
|
488
|
+
* not exist in Node.js v21.x. Node.js embedders and addon authors should
|
489
|
+
* not use them from v20.x.
|
490
|
+
*/
|
491
|
+
#ifndef NODE_WANT_INTERNALS
|
492
|
+
V8_DEPRECATED("This extention should only be used by Node.js core")
|
493
|
+
#endif
|
494
|
+
void SetInternalFieldForNodeCore(int index, Local<Module> value);
|
495
|
+
#ifndef NODE_WANT_INTERNALS
|
496
|
+
V8_DEPRECATED("This extention should only be used by Node.js core")
|
497
|
+
#endif
|
498
|
+
void SetInternalFieldForNodeCore(int index, Local<UnboundScript> value);
|
499
|
+
|
483
500
|
/**
|
484
501
|
* Gets a 2-byte-aligned native pointer from an internal field. This field
|
485
502
|
* must have been set by SetAlignedPointerInInternalField, everything else
|
@@ -912,12 +912,22 @@ class V8_EXPORT EmbedderGraph {
|
|
912
912
|
virtual ~EmbedderGraph() = default;
|
913
913
|
};
|
914
914
|
|
915
|
+
class QueryObjectPredicate {
|
916
|
+
public:
|
917
|
+
virtual ~QueryObjectPredicate() = default;
|
918
|
+
virtual bool Filter(v8::Local<v8::Object> object) = 0;
|
919
|
+
};
|
920
|
+
|
915
921
|
/**
|
916
922
|
* Interface for controlling heap profiling. Instance of the
|
917
923
|
* profiler can be retrieved using v8::Isolate::GetHeapProfiler.
|
918
924
|
*/
|
919
925
|
class V8_EXPORT HeapProfiler {
|
920
926
|
public:
|
927
|
+
void QueryObjects(v8::Local<v8::Context> context,
|
928
|
+
QueryObjectPredicate* predicate,
|
929
|
+
std::vector<v8::Global<v8::Object>>* objects);
|
930
|
+
|
921
931
|
enum SamplingFlags {
|
922
932
|
kSamplingNoFlags = 0,
|
923
933
|
kSamplingForceGC = 1 << 0,
|
@@ -142,10 +142,9 @@ class V8_EXPORT ModuleRequest : public Data {
|
|
142
142
|
*
|
143
143
|
* All assertions present in the module request will be supplied in this
|
144
144
|
* list, regardless of whether they are supported by the host. Per
|
145
|
-
* https://tc39.es/proposal-import-
|
146
|
-
* hosts are expected to
|
147
|
-
* opposed to, for example,
|
148
|
-
* present).
|
145
|
+
* https://tc39.es/proposal-import-attributes/#sec-hostgetsupportedimportattributes,
|
146
|
+
* hosts are expected to throw for assertions that they do not support (as
|
147
|
+
* opposed to, for example, ignoring them).
|
149
148
|
*/
|
150
149
|
Local<FixedArray> GetImportAssertions() const;
|
151
150
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: libv8-node
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 20.
|
4
|
+
version: 20.12.1.0
|
5
5
|
platform: arm64-darwin
|
6
6
|
authors:
|
7
7
|
- ''
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-04-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rake
|
@@ -177,7 +177,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
177
177
|
- !ruby/object:Gem::Version
|
178
178
|
version: '0'
|
179
179
|
requirements: []
|
180
|
-
rubygems_version: 3.
|
180
|
+
rubygems_version: 3.4.22
|
181
181
|
signing_key:
|
182
182
|
specification_version: 4
|
183
183
|
summary: Node.JS's V8 JavaScript engine
|