isomorphic-git 1.33.2 → 1.33.3

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.
package/README.md CHANGED
@@ -391,6 +391,7 @@ Thanks goes to these wonderful people ([emoji key](https://github.com/kentcdodds
391
391
  <td align="center"><a href="https://github.com/ARBhosale"><img src="https://avatars.githubusercontent.com/u/26981417?v=4?s=60" width="60px;" alt=""/><br /><sub><b>Aniket Bhosale</b></sub></a><br /><a href="https://github.com/isomorphic-git/isomorphic-git/commits?author=ARBhosale" title="Code">💻</a> <a href="https://github.com/isomorphic-git/isomorphic-git/commits?author=ARBhosale" title="Documentation">📖</a> <a href="https://github.com/isomorphic-git/isomorphic-git/commits?author=ARBhosale" title="Tests">⚠️</a></td>
392
392
  <td align="center"><a href="https://github.com/gnillev"><img src="https://avatars.githubusercontent.com/u/8965094?v=4?s=60" width="60px;" alt=""/><br /><sub><b>Mathias Nisted Velling</b></sub></a><br /><a href="https://github.com/isomorphic-git/isomorphic-git/commits?author=gnillev" title="Code">💻</a> <a href="https://github.com/isomorphic-git/isomorphic-git/commits?author=gnillev" title="Tests">⚠️</a></td>
393
393
  <td align="center"><a href="https://github.com/acandoo"><img src="https://avatars.githubusercontent.com/u/117209328?v=4?s=60" width="60px;" alt=""/><br /><sub><b>acandoo</b></sub></a><br /><a href="#platform-acandoo" title="Packaging/porting to new platform">📦</a> <a href="#userTesting-acandoo" title="User Testing">📓</a></td>
394
+ <td align="center"><a href="https://github.com/bekatan"><img src="https://avatars.githubusercontent.com/u/19550476?v=4?s=60" width="60px;" alt=""/><br /><sub><b>Bekatan Satyev</b></sub></a><br /><a href="https://github.com/isomorphic-git/isomorphic-git/commits?author=bekatan" title="Code">💻</a> <a href="https://github.com/isomorphic-git/isomorphic-git/commits?author=bekatan" title="Tests">⚠️</a></td>
394
395
  <td align="center"><a href="https://github.com/hemanthkini"><img src="https://avatars.githubusercontent.com/u/3934055?v=4?s=60" width="60px;" alt=""/><br /><sub><b>Hemanth Kini</b></sub></a><br /><a href="https://github.com/isomorphic-git/isomorphic-git/commits?author=hemanthkini" title="Code">💻</a></td>
395
396
  </tr>
396
397
  </table>
@@ -1,9 +1,8 @@
1
1
  [
2
2
  "Chrome Headless 79.0.3945.0 (Linux x86_64)",
3
3
  "Firefox 143.0 (Linux x86_64)",
4
- "Edge 79.0.309.65 (Windows 10)",
5
- "Safari 14.1 (Mac OS 10.15.7)",
4
+ "Chrome 137.0.0.0 (Android 10)",
6
5
  "Mobile Safari 14.0 (iOS 14.0.1)",
7
- "Chrome Headless 79.0.3945.0 (Linux x86_64)",
8
- "Chrome 137.0.0.0 (Android 10)"
6
+ "Edge 79.0.309.65 (Windows 10)",
7
+ "Safari 14.1 (Mac OS 10.15.7)"
9
8
  ]
package/index.cjs CHANGED
@@ -8067,8 +8067,8 @@ function filterCapabilities(server, client) {
8067
8067
 
8068
8068
  const pkg = {
8069
8069
  name: 'isomorphic-git',
8070
- version: '1.33.2',
8071
- agent: 'git/isomorphic-git@1.33.2',
8070
+ version: '1.33.3',
8071
+ agent: 'git/isomorphic-git@1.33.3',
8072
8072
  };
8073
8073
 
8074
8074
  class FIFO {
@@ -15179,7 +15179,11 @@ async function _stashDrop({ fs, dir, gitdir, refIdx = 0 }) {
15179
15179
  const stashReflogPath = stashMgr.refLogsStashPath;
15180
15180
  await acquireLock$1({ reflogEntries, stashReflogPath, stashMgr }, async () => {
15181
15181
  if (reflogEntries.length) {
15182
- await fs.write(stashReflogPath, reflogEntries.join('\n'), 'utf8');
15182
+ await fs.write(
15183
+ stashReflogPath,
15184
+ reflogEntries.reverse().join('\n') + '\n',
15185
+ 'utf8'
15186
+ );
15183
15187
  const lastStashCommit = reflogEntries[reflogEntries.length - 1].split(
15184
15188
  ' '
15185
15189
  )[1];
package/index.js CHANGED
@@ -8061,8 +8061,8 @@ function filterCapabilities(server, client) {
8061
8061
 
8062
8062
  const pkg = {
8063
8063
  name: 'isomorphic-git',
8064
- version: '1.33.2',
8065
- agent: 'git/isomorphic-git@1.33.2',
8064
+ version: '1.33.3',
8065
+ agent: 'git/isomorphic-git@1.33.3',
8066
8066
  };
8067
8067
 
8068
8068
  class FIFO {
@@ -15173,7 +15173,11 @@ async function _stashDrop({ fs, dir, gitdir, refIdx = 0 }) {
15173
15173
  const stashReflogPath = stashMgr.refLogsStashPath;
15174
15174
  await acquireLock$1({ reflogEntries, stashReflogPath, stashMgr }, async () => {
15175
15175
  if (reflogEntries.length) {
15176
- await fs.write(stashReflogPath, reflogEntries.join('\n'), 'utf8');
15176
+ await fs.write(
15177
+ stashReflogPath,
15178
+ reflogEntries.reverse().join('\n') + '\n',
15179
+ 'utf8'
15180
+ );
15177
15181
  const lastStashCommit = reflogEntries[reflogEntries.length - 1].split(
15178
15182
  ' '
15179
15183
  )[1];