libv8-node 18.8.0.0-x86_64-darwin → 18.13.0.0-x86_64-darwin
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ec15997919f02fa3acdf39aa8207e362ce9279c207edb2140516bfd0c6afb624
|
4
|
+
data.tar.gz: 85941eba405f6206720085637432d2ab0c1778a2dce9b4e6ac6ebc74ec6f49b1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 755ca7d6d67a97b9c47a11bc0828444474d8a04d27b843097fdfb5edbcd49c83c4ca5842cfc4b3e2e48e710e243e337ed69448cd42090ab2e5ee34331ebbcf9d
|
7
|
+
data.tar.gz: 41e12d75b0495e3f0dd658b10b7fead6c26e815df0ef2eaf46a69b105365dc3c8cebee03207a181cda343c7635098848ee88d65266e6914fe9c1fb1c5f6ef90a
|
data/lib/libv8/node/version.rb
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
module Libv8; end
|
2
2
|
|
3
3
|
module Libv8::Node
|
4
|
-
VERSION = '18.
|
5
|
-
NODE_VERSION = '18.
|
6
|
-
LIBV8_VERSION = '10.2.154.
|
4
|
+
VERSION = '18.13.0.0'.freeze
|
5
|
+
NODE_VERSION = '18.13.0'.freeze
|
6
|
+
LIBV8_VERSION = '10.2.154.23'.freeze # from v8/include/v8-version.h
|
7
7
|
end
|
@@ -240,6 +240,11 @@ class V8_EXPORT ArrayBuffer : public Object {
|
|
240
240
|
*/
|
241
241
|
bool IsDetachable() const;
|
242
242
|
|
243
|
+
/**
|
244
|
+
* Returns true if this ArrayBuffer has been detached.
|
245
|
+
*/
|
246
|
+
bool WasDetached() const;
|
247
|
+
|
243
248
|
/**
|
244
249
|
* Detaches this ArrayBuffer and all its views (typed arrays).
|
245
250
|
* Detaching sets the byte length of the buffer and all typed arrays to zero,
|
@@ -253,6 +258,9 @@ class V8_EXPORT ArrayBuffer : public Object {
|
|
253
258
|
* pointer coordinates the lifetime management of the internal storage
|
254
259
|
* with any live ArrayBuffers on the heap, even across isolates. The embedder
|
255
260
|
* should not attempt to manage lifetime of the storage through other means.
|
261
|
+
*
|
262
|
+
* The returned shared pointer will not be empty, even if the ArrayBuffer has
|
263
|
+
* been detached. Use |WasDetached| to tell if it has been detached instead.
|
256
264
|
*/
|
257
265
|
std::shared_ptr<BackingStore> GetBackingStore();
|
258
266
|
|
@@ -11,7 +11,7 @@
|
|
11
11
|
#define V8_MAJOR_VERSION 10
|
12
12
|
#define V8_MINOR_VERSION 2
|
13
13
|
#define V8_BUILD_NUMBER 154
|
14
|
-
#define V8_PATCH_LEVEL
|
14
|
+
#define V8_PATCH_LEVEL 23
|
15
15
|
|
16
16
|
// Use 1 for candidates and 0 otherwise.
|
17
17
|
// (Boolean macro values are not supported by all preprocessors.)
|
Binary file
|
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: 18.
|
4
|
+
version: 18.13.0.0
|
5
5
|
platform: x86_64-darwin
|
6
6
|
authors:
|
7
7
|
- ''
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2023-01-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rake
|
@@ -173,7 +173,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
173
173
|
- !ruby/object:Gem::Version
|
174
174
|
version: '0'
|
175
175
|
requirements: []
|
176
|
-
rubygems_version: 3.
|
176
|
+
rubygems_version: 3.3.20
|
177
177
|
signing_key:
|
178
178
|
specification_version: 4
|
179
179
|
summary: Node.JS's V8 JavaScript engine
|