libv8-node 18.8.0.0-x86_64-darwin → 18.13.0.1-x86_64-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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 44b0b78adb6c143a7c9972809a214e2c8a41af1caf25357a2019fd4ea4a0d550
4
- data.tar.gz: da342a55d309cbb9ba30fa630b3575c2cf18618b819ac51b4e57f946ae1f2387
3
+ metadata.gz: c2d8c02afca361337183b9deafe9db3748c9efcad490d3fe49842d4d839cfc22
4
+ data.tar.gz: 50c4145c24d153a2e4efe8e7eec07a27c5597ebe17a67b85e3493fbdb98de343
5
5
  SHA512:
6
- metadata.gz: 8712177782114ad9f093c5c3a259cd3c2fa8aa420332f02bc8a65a695419efc391f1b0634626fdffdf681d48be499f1362396319bc3b32af67b821836a32859a
7
- data.tar.gz: 3b3e68ab2fd902f2a7e45c4de51a3f1bb47dafdd83ba8b3ab327a4b6a05185253ed66f6470b65b3328def56d954cc196dfbbde53237f37e19e91f79e845ffa8b
6
+ metadata.gz: b13ab680a5e21bdd1ac2c0def56b41b8ae7e5ec945b05d9537eaa28c0fb9c8f5dc57da240b07c39e1adbcc06bec65d1e9e126dae0e743fe5841269d9352fb9df
7
+ data.tar.gz: 448bb3a6e830758b57b9c15c202fb8720d56b8aa7651889e2c64966574048e5f7f5b65418194b741caf8a1e8dd1c2238db823004611420e4c823d49dd4428ab9
@@ -45,7 +45,7 @@ module Libv8::Node
45
45
  def verify_installation!
46
46
  include_paths = Libv8::Node::Paths.include_paths
47
47
 
48
- unless include_paths.detect { |p| Pathname(p).join('v8.h').exist? }
48
+ unless include_paths.detect { |p| Pathname(p).join('v8.h').exist? } # rubocop:disable Style/IfUnlessModifier
49
49
  raise(HeaderNotFound, "Unable to locate 'v8.h' in the libv8 header paths: #{include_paths.inspect}")
50
50
  end
51
51
 
@@ -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.1'.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.1
5
5
  platform: x86_64-darwin
6
6
  authors:
7
7
  - ''
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-08-25 00:00:00.000000000 Z
11
+ date: 2023-05-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake
@@ -30,14 +30,14 @@ dependencies:
30
30
  requirements:
31
31
  - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: 0.50.0
33
+ version: 1.44.0
34
34
  type: :development
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - "~>"
39
39
  - !ruby/object:Gem::Version
40
- version: 0.50.0
40
+ version: 1.44.0
41
41
  description: Node.JS's V8 JavaScript engine for multiplatform goodness
42
42
  email:
43
43
  - ''
@@ -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.2.26
176
+ rubygems_version: 3.3.20
177
177
  signing_key:
178
178
  specification_version: 4
179
179
  summary: Node.JS's V8 JavaScript engine