libv8-node 18.8.0.0-x86_64-linux-musl → 18.13.0.0-x86_64-linux-musl

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: 6ab69b052f1c21394fece08faf35f5a23961297f8a9ec1fe6cc3783f0dee191b
4
- data.tar.gz: 338a785654b55fd72333a38a9384bca3d82827e95372e958bc6074c173de9bd6
3
+ metadata.gz: bb432b67bef84925211c5525addf707d678735c46b94d22cca5af6a9f7a7c146
4
+ data.tar.gz: 6615f0996f184cee79f107a26c7dced675d3fc7dee53918077a80e9329450529
5
5
  SHA512:
6
- metadata.gz: b5594639a63379038dc8213706b1e72110f4ada7f9ae261d60a95c463c5479745f36a7a05430a511ec67f3b922c546723350073f1b65a9eb03718b20394a1b98
7
- data.tar.gz: 2cc261d10017bb8b62c32c39b0b275d8cab6a60dbf7c0ad30d12d391ecc1638c5cccd95eac95739529a5eb22a45b3f0308a0a4d2f6c789cdb1f352cec01b72da
6
+ metadata.gz: 4e0f5c48cdfd32baca254f5be5202591b26e28420c6caf9d4fb3bf00ca0e89655ec7421e4c8d2eae1f0ef5e86b45a579d099e99aa81f187d103cd629102f20ef
7
+ data.tar.gz: daf926ed1c26dd234661568d9ecdf9e860a090c7078696f4a86176102d55a751909d92fd922bf2f7b9b2abe32a223bc7011b4db91566fa0f2410d087b742bd90
@@ -1,7 +1,7 @@
1
1
  module Libv8; end
2
2
 
3
3
  module Libv8::Node
4
- VERSION = '18.8.0.0'.freeze
5
- NODE_VERSION = '18.8.0'.freeze
6
- LIBV8_VERSION = '10.2.154.13'.freeze # from v8/include/v8-version.h
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 13
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.)
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.8.0.0
4
+ version: 18.13.0.0
5
5
  platform: x86_64-linux-musl
6
6
  authors:
7
7
  - ''
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-08-29 00:00:00.000000000 Z
11
+ date: 2023-01-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake