isomorphic-git 1.25.3 → 1.25.4

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.
@@ -1,12 +1,8 @@
1
1
  [
2
2
  "Chrome Headless 79.0.3945.0 (Linux x86_64)",
3
- "Firefox 121.0 (Ubuntu 0.0.0)",
4
- "X Chrome 117.0.0.0 (Android 10)",
3
+ "Firefox 122.0 (Ubuntu 0.0.0)",
4
+ "Chrome 120.0.0.0 (Android 10)",
5
5
  "Edge 79.0.309.65 (Windows 10)",
6
6
  "Mobile Safari 13.0 (iOS 13.0)",
7
- "Safari 13.1 (Mac OS 10.15.4)",
8
- "Chrome Headless 79.0.3945.0 (Linux x86_64)",
9
- "X Chrome 117.0.0.0 (Android 10)",
10
- "Chrome Headless 79.0.3945.0 (Linux x86_64)",
11
- "Chrome 117.0.0.0 (Android 10)"
7
+ "Safari 13.1 (Mac OS 10.15.4)"
12
8
  ]
package/index.cjs CHANGED
@@ -4913,8 +4913,9 @@ function testCompressionStream() {
4913
4913
  try {
4914
4914
  const cs = new CompressionStream('deflate');
4915
4915
  // Test if `Blob.stream` is present. React Native does not have the `stream` method
4916
- new Blob([]).stream();
4917
- if (cs) return true
4916
+ const stream = new Blob([]).stream();
4917
+ stream.cancel();
4918
+ return !!cs
4918
4919
  } catch (_) {
4919
4920
  // no bother
4920
4921
  }
@@ -7333,8 +7334,8 @@ function filterCapabilities(server, client) {
7333
7334
 
7334
7335
  const pkg = {
7335
7336
  name: 'isomorphic-git',
7336
- version: '1.25.3',
7337
- agent: 'git/isomorphic-git@1.25.3',
7337
+ version: '1.25.4',
7338
+ agent: 'git/isomorphic-git@1.25.4',
7338
7339
  };
7339
7340
 
7340
7341
  class FIFO {
package/index.js CHANGED
@@ -4907,8 +4907,9 @@ function testCompressionStream() {
4907
4907
  try {
4908
4908
  const cs = new CompressionStream('deflate');
4909
4909
  // Test if `Blob.stream` is present. React Native does not have the `stream` method
4910
- new Blob([]).stream();
4911
- if (cs) return true
4910
+ const stream = new Blob([]).stream();
4911
+ stream.cancel();
4912
+ return !!cs
4912
4913
  } catch (_) {
4913
4914
  // no bother
4914
4915
  }
@@ -7327,8 +7328,8 @@ function filterCapabilities(server, client) {
7327
7328
 
7328
7329
  const pkg = {
7329
7330
  name: 'isomorphic-git',
7330
- version: '1.25.3',
7331
- agent: 'git/isomorphic-git@1.25.3',
7331
+ version: '1.25.4',
7332
+ agent: 'git/isomorphic-git@1.25.4',
7332
7333
  };
7333
7334
 
7334
7335
  class FIFO {