isomorphic-git 1.27.0 → 1.27.1
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 +1 -0
- package/browser-tests.json +3 -5
- package/index.cjs +6 -3
- package/index.js +6 -3
- package/index.umd.min.js +1 -1
- package/index.umd.min.js.map +1 -1
- package/package.json +1 -1
- package/size_report.html +1 -1
package/README.md
CHANGED
|
@@ -377,6 +377,7 @@ Thanks goes to these wonderful people ([emoji key](https://github.com/kentcdodds
|
|
|
377
377
|
<td align="center"><a href="https://github.com/limond"><img src="https://avatars.githubusercontent.com/u/1025682?v=4?s=60" width="60px;" alt=""/><br /><sub><b>Leon Kaucher</b></sub></a><br /><a href="https://github.com/isomorphic-git/isomorphic-git/commits?author=limond" title="Code">💻</a> <a href="https://github.com/isomorphic-git/isomorphic-git/commits?author=limond" title="Tests">⚠️</a></td>
|
|
378
378
|
<td align="center"><a href="https://github.com/gilisho"><img src="https://avatars.githubusercontent.com/u/40733156?v=4?s=60" width="60px;" alt=""/><br /><sub><b>Gili Shohat</b></sub></a><br /><a href="https://github.com/isomorphic-git/isomorphic-git/commits?author=gilisho" title="Code">💻</a> <a href="https://github.com/isomorphic-git/isomorphic-git/commits?author=gilisho" title="Documentation">📖</a> <a href="https://github.com/isomorphic-git/isomorphic-git/commits?author=gilisho" title="Tests">⚠️</a></td>
|
|
379
379
|
<td align="center"><a href="https://github.com/hhourani27"><img src="https://avatars.githubusercontent.com/u/61935766?v=4?s=60" width="60px;" alt=""/><br /><sub><b>Habib</b></sub></a><br /><a href="https://github.com/isomorphic-git/isomorphic-git/commits?author=hhourani27" title="Code">💻</a> <a href="https://github.com/isomorphic-git/isomorphic-git/commits?author=hhourani27" title="Documentation">📖</a> <a href="https://github.com/isomorphic-git/isomorphic-git/commits?author=hhourani27" title="Tests">⚠️</a></td>
|
|
380
|
+
<td align="center"><a href="https://github.com/Vinzent03"><img src="https://avatars.githubusercontent.com/u/63981639?v=4?s=60" width="60px;" alt=""/><br /><sub><b>Vinzent</b></sub></a><br /><a href="https://github.com/isomorphic-git/isomorphic-git/commits?author=Vinzent03" title="Code">💻</a></td>
|
|
380
381
|
</tr>
|
|
381
382
|
</table>
|
|
382
383
|
|
package/browser-tests.json
CHANGED
|
@@ -1,10 +1,8 @@
|
|
|
1
1
|
[
|
|
2
2
|
"Chrome Headless 79.0.3945.0 (Linux x86_64)",
|
|
3
3
|
"Firefox 127.0 (Ubuntu 0.0.0)",
|
|
4
|
-
"
|
|
5
|
-
"Mobile Safari 13.0 (iOS 13.0)",
|
|
6
|
-
"Safari 13.1 (Mac OS 10.15.4)",
|
|
4
|
+
"Chrome 123.0.0.0 (Android 10)",
|
|
7
5
|
"Edge 79.0.309.65 (Windows 10)",
|
|
8
|
-
"
|
|
9
|
-
"
|
|
6
|
+
"Mobile Safari 13.0 (iOS 13.0)",
|
|
7
|
+
"Safari 13.1 (Mac OS 10.15.4)"
|
|
10
8
|
]
|
package/index.cjs
CHANGED
|
@@ -4264,7 +4264,10 @@ class GitWalkerFs {
|
|
|
4264
4264
|
const stats = await entry.stat();
|
|
4265
4265
|
const config = await GitConfigManager.get({ fs, gitdir });
|
|
4266
4266
|
const filemode = await config.get('core.filemode');
|
|
4267
|
-
const trustino =
|
|
4267
|
+
const trustino =
|
|
4268
|
+
typeof process !== 'undefined'
|
|
4269
|
+
? !(process.platform === 'win32')
|
|
4270
|
+
: true;
|
|
4268
4271
|
if (!stage || compareStats(stats, stage, filemode, trustino)) {
|
|
4269
4272
|
const content = await entry.content();
|
|
4270
4273
|
if (content === undefined) {
|
|
@@ -7626,8 +7629,8 @@ function filterCapabilities(server, client) {
|
|
|
7626
7629
|
|
|
7627
7630
|
const pkg = {
|
|
7628
7631
|
name: 'isomorphic-git',
|
|
7629
|
-
version: '1.27.
|
|
7630
|
-
agent: 'git/isomorphic-git@1.27.
|
|
7632
|
+
version: '1.27.1',
|
|
7633
|
+
agent: 'git/isomorphic-git@1.27.1',
|
|
7631
7634
|
};
|
|
7632
7635
|
|
|
7633
7636
|
class FIFO {
|
package/index.js
CHANGED
|
@@ -4258,7 +4258,10 @@ class GitWalkerFs {
|
|
|
4258
4258
|
const stats = await entry.stat();
|
|
4259
4259
|
const config = await GitConfigManager.get({ fs, gitdir });
|
|
4260
4260
|
const filemode = await config.get('core.filemode');
|
|
4261
|
-
const trustino =
|
|
4261
|
+
const trustino =
|
|
4262
|
+
typeof process !== 'undefined'
|
|
4263
|
+
? !(process.platform === 'win32')
|
|
4264
|
+
: true;
|
|
4262
4265
|
if (!stage || compareStats(stats, stage, filemode, trustino)) {
|
|
4263
4266
|
const content = await entry.content();
|
|
4264
4267
|
if (content === undefined) {
|
|
@@ -7620,8 +7623,8 @@ function filterCapabilities(server, client) {
|
|
|
7620
7623
|
|
|
7621
7624
|
const pkg = {
|
|
7622
7625
|
name: 'isomorphic-git',
|
|
7623
|
-
version: '1.27.
|
|
7624
|
-
agent: 'git/isomorphic-git@1.27.
|
|
7626
|
+
version: '1.27.1',
|
|
7627
|
+
agent: 'git/isomorphic-git@1.27.1',
|
|
7625
7628
|
};
|
|
7626
7629
|
|
|
7627
7630
|
class FIFO {
|