isomorphic-git 1.25.9 → 1.25.10

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,8 +1,10 @@
1
1
  [
2
2
  "Chrome Headless 79.0.3945.0 (Linux x86_64)",
3
3
  "Firefox 125.0 (Ubuntu 0.0.0)",
4
- "Chrome 123.0.0.0 (Android 10)",
4
+ "X Chrome 123.0.0.0 (Android 10)",
5
5
  "Edge 79.0.309.65 (Windows 10)",
6
6
  "Safari 13.1 (Mac OS 10.15.4)",
7
- "Mobile Safari 13.0 (iOS 13.0)"
7
+ "Mobile Safari 13.0 (iOS 13.0)",
8
+ "Chrome Headless 79.0.3945.0 (Linux x86_64)",
9
+ "Chrome 123.0.0.0 (Android 10)"
8
10
  ]
package/index.cjs CHANGED
@@ -2431,6 +2431,10 @@ function getIterator(iterable) {
2431
2431
  // inspired by 'gartal' but lighter-weight and more battle-tested.
2432
2432
  class StreamReader {
2433
2433
  constructor(stream) {
2434
+ // TODO: fix usage in bundlers before Buffer dependency is removed #1855
2435
+ if (typeof Buffer === 'undefined') {
2436
+ throw new Error('Missing Buffer dependency')
2437
+ }
2434
2438
  this.stream = getIterator(stream);
2435
2439
  this.buffer = null;
2436
2440
  this.cursor = 0;
@@ -7380,8 +7384,8 @@ function filterCapabilities(server, client) {
7380
7384
 
7381
7385
  const pkg = {
7382
7386
  name: 'isomorphic-git',
7383
- version: '1.25.9',
7384
- agent: 'git/isomorphic-git@1.25.9',
7387
+ version: '1.25.10',
7388
+ agent: 'git/isomorphic-git@1.25.10',
7385
7389
  };
7386
7390
 
7387
7391
  class FIFO {
package/index.js CHANGED
@@ -2425,6 +2425,10 @@ function getIterator(iterable) {
2425
2425
  // inspired by 'gartal' but lighter-weight and more battle-tested.
2426
2426
  class StreamReader {
2427
2427
  constructor(stream) {
2428
+ // TODO: fix usage in bundlers before Buffer dependency is removed #1855
2429
+ if (typeof Buffer === 'undefined') {
2430
+ throw new Error('Missing Buffer dependency')
2431
+ }
2428
2432
  this.stream = getIterator(stream);
2429
2433
  this.buffer = null;
2430
2434
  this.cursor = 0;
@@ -7374,8 +7378,8 @@ function filterCapabilities(server, client) {
7374
7378
 
7375
7379
  const pkg = {
7376
7380
  name: 'isomorphic-git',
7377
- version: '1.25.9',
7378
- agent: 'git/isomorphic-git@1.25.9',
7381
+ version: '1.25.10',
7382
+ agent: 'git/isomorphic-git@1.25.10',
7379
7383
  };
7380
7384
 
7381
7385
  class FIFO {