isomorphic-git 1.11.1 → 1.11.2
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 -2
- package/index.cjs +3 -3
- package/index.d.ts +3 -3
- package/index.js +3 -3
- package/index.umd.min.d.ts +3 -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
|
@@ -339,6 +339,7 @@ Thanks goes to these wonderful people ([emoji key](https://github.com/kentcdodds
|
|
|
339
339
|
<td align="center"><a href="https://github.com/strangedev"><img src="https://avatars.githubusercontent.com/u/3045979?v=4?s=60" width="60px;" alt=""/><br /><sub><b>Noah Hummel</b></sub></a><br /><a href="https://github.com/isomorphic-git/isomorphic-git/commits?author=strangedev" title="Code">💻</a> <a href="https://github.com/isomorphic-git/isomorphic-git/commits?author=strangedev" title="Tests">⚠️</a></td>
|
|
340
340
|
<td align="center"><a href="https://github.com/mtlewis"><img src="https://avatars.githubusercontent.com/u/542836?v=4?s=60" width="60px;" alt=""/><br /><sub><b>Mike Lewis</b></sub></a><br /><a href="https://github.com/isomorphic-git/isomorphic-git/commits?author=mtlewis" title="Documentation">📖</a></td>
|
|
341
341
|
<td align="center"><a href="https://twitter.com/SamVerschueren"><img src="https://avatars.githubusercontent.com/u/1913805?v=4?s=60" width="60px;" alt=""/><br /><sub><b>Sam Verschueren</b></sub></a><br /><a href="https://github.com/isomorphic-git/isomorphic-git/commits?author=SamVerschueren" title="Code">💻</a></td>
|
|
342
|
+
<td align="center"><a href="http://vitorluizc.github.io/"><img src="https://avatars.githubusercontent.com/u/9027363?v=4?s=60" width="60px;" alt=""/><br /><sub><b>Vitor Luiz Cavalcanti</b></sub></a><br /><a href="https://github.com/isomorphic-git/isomorphic-git/commits?author=VitorLuizC" title="Documentation">📖</a></td>
|
|
342
343
|
</tr>
|
|
343
344
|
</table>
|
|
344
345
|
|
package/browser-tests.json
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
[
|
|
2
2
|
"HeadlessChrome 0.0.0 (Linux 0.0.0)",
|
|
3
3
|
"Firefox 96.0.0 (Ubuntu 0.0.0)",
|
|
4
|
-
"
|
|
4
|
+
"Safari 13.1.0 (Mac OS X 10.15.4)",
|
|
5
5
|
"Chrome 79.0.3945 (Windows 10 0.0.0)",
|
|
6
6
|
"Mobile Safari 13.0.0 (iOS 13.0.0)",
|
|
7
|
-
"
|
|
7
|
+
"X Chrome Mobile 96.0.4664 (Android 0.0.0)",
|
|
8
|
+
"Chrome Mobile 96.0.4664 (Android 0.0.0)"
|
|
8
9
|
]
|
package/index.cjs
CHANGED
|
@@ -3271,7 +3271,7 @@ class UnknownTransportError extends BaseError {
|
|
|
3271
3271
|
/**
|
|
3272
3272
|
* @param {string} url
|
|
3273
3273
|
* @param {string} transport
|
|
3274
|
-
* @param {string} suggestion
|
|
3274
|
+
* @param {string} [suggestion]
|
|
3275
3275
|
*/
|
|
3276
3276
|
constructor(url, transport, suggestion) {
|
|
3277
3277
|
super(
|
|
@@ -6872,8 +6872,8 @@ function filterCapabilities(server, client) {
|
|
|
6872
6872
|
|
|
6873
6873
|
const pkg = {
|
|
6874
6874
|
name: 'isomorphic-git',
|
|
6875
|
-
version: '1.11.
|
|
6876
|
-
agent: 'git/isomorphic-git@1.11.
|
|
6875
|
+
version: '1.11.2',
|
|
6876
|
+
agent: 'git/isomorphic-git@1.11.2',
|
|
6877
6877
|
};
|
|
6878
6878
|
|
|
6879
6879
|
class FIFO {
|
package/index.d.ts
CHANGED
|
@@ -3948,15 +3948,15 @@ declare class UnknownTransportError extends BaseError {
|
|
|
3948
3948
|
/**
|
|
3949
3949
|
* @param {string} url
|
|
3950
3950
|
* @param {string} transport
|
|
3951
|
-
* @param {string} suggestion
|
|
3951
|
+
* @param {string} [suggestion]
|
|
3952
3952
|
*/
|
|
3953
|
-
constructor(url: string, transport: string, suggestion
|
|
3953
|
+
constructor(url: string, transport: string, suggestion?: string | undefined);
|
|
3954
3954
|
code: "UnknownTransportError";
|
|
3955
3955
|
name: "UnknownTransportError";
|
|
3956
3956
|
data: {
|
|
3957
3957
|
url: string;
|
|
3958
3958
|
transport: string;
|
|
3959
|
-
suggestion: string;
|
|
3959
|
+
suggestion: string | undefined;
|
|
3960
3960
|
};
|
|
3961
3961
|
}
|
|
3962
3962
|
declare namespace UnknownTransportError {
|
package/index.js
CHANGED
|
@@ -3265,7 +3265,7 @@ class UnknownTransportError extends BaseError {
|
|
|
3265
3265
|
/**
|
|
3266
3266
|
* @param {string} url
|
|
3267
3267
|
* @param {string} transport
|
|
3268
|
-
* @param {string} suggestion
|
|
3268
|
+
* @param {string} [suggestion]
|
|
3269
3269
|
*/
|
|
3270
3270
|
constructor(url, transport, suggestion) {
|
|
3271
3271
|
super(
|
|
@@ -6866,8 +6866,8 @@ function filterCapabilities(server, client) {
|
|
|
6866
6866
|
|
|
6867
6867
|
const pkg = {
|
|
6868
6868
|
name: 'isomorphic-git',
|
|
6869
|
-
version: '1.11.
|
|
6870
|
-
agent: 'git/isomorphic-git@1.11.
|
|
6869
|
+
version: '1.11.2',
|
|
6870
|
+
agent: 'git/isomorphic-git@1.11.2',
|
|
6871
6871
|
};
|
|
6872
6872
|
|
|
6873
6873
|
class FIFO {
|
package/index.umd.min.d.ts
CHANGED
|
@@ -3948,15 +3948,15 @@ declare class UnknownTransportError extends BaseError {
|
|
|
3948
3948
|
/**
|
|
3949
3949
|
* @param {string} url
|
|
3950
3950
|
* @param {string} transport
|
|
3951
|
-
* @param {string} suggestion
|
|
3951
|
+
* @param {string} [suggestion]
|
|
3952
3952
|
*/
|
|
3953
|
-
constructor(url: string, transport: string, suggestion
|
|
3953
|
+
constructor(url: string, transport: string, suggestion?: string | undefined);
|
|
3954
3954
|
code: "UnknownTransportError";
|
|
3955
3955
|
name: "UnknownTransportError";
|
|
3956
3956
|
data: {
|
|
3957
3957
|
url: string;
|
|
3958
3958
|
transport: string;
|
|
3959
|
-
suggestion: string;
|
|
3959
|
+
suggestion: string | undefined;
|
|
3960
3960
|
};
|
|
3961
3961
|
}
|
|
3962
3962
|
declare namespace UnknownTransportError {
|