libv8-node 18.8.0.0-aarch64-linux → 18.13.0.0-aarch64-linux

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: 9e130a26656b8d51840afa872a14335494f3a52e88cc92c010de515ff4ea3234
4
- data.tar.gz: 9330b60f0510d401643389a331de2e45cad667e6c1ba344f7ac510d4f7c074f1
3
+ metadata.gz: 72ceda11a634bff8f7faa634bc7847a69e32a83c6d7169c2a878971544243d5a
4
+ data.tar.gz: ede2a2da6244065a5b32318214370e0c7dc230492ae2fd38f78ddc20f077a423
5
5
  SHA512:
6
- metadata.gz: 2ec31a25711298707f2f70722a4ec90a89b042881fe088fe7e40f0ffdc84ff2f337433da997ec36054ccb813d3edbc2e769891a9ff63e709f5b8d4434d45240c
7
- data.tar.gz: 83fdaa3f0bd3a65bc71372611314499760e1dbf6be102e73fa00f2bb7ff4ba72394375e46c00588182e61d29f279bf245ebec768a194eb7984133f2d4e30f853
6
+ metadata.gz: 915a3815d1f0fbe69de7ba60f1fd53a96704d9b9e4d607eee60143154f7e26541264a2c74c828d92f578b7a89e97e630051b726d6d2a5fcb44f9b6f8e84863cb
7
+ data.tar.gz: f09e342fbb4bc0e6a493ef33431bf2736ba72462200c36826484da6edd1dd4582b070a59645cff76dbd80b29f83a45e21326a220c95d6a182efca082d29b2f3d
@@ -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: aarch64-linux
6
6
  authors:
7
7
  - ''
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-08-26 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