You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/generated/changelog.html
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -18,6 +18,7 @@ <h2>Version x.x.x</h2>
18
18
<li>feat: enhances `.from` methods on public key classes to support unknown types, including PublicKey instances, ArrayBuffer-like objects, DER encoded public keys, and hex strings. Also introduces a new `bufFromBufLike` util</li>
19
19
<li>feat: introduces partial identities from public keys for authentication flows</li>
20
20
<li>fix: honor disableIdle flag</li>
21
+
<li>fix: add `github.dev` and `gitpod.io` to known hosts</li>
Copy file name to clipboardExpand all lines: packages/agent/src/agent/http/index.ts
+9-2Lines changed: 9 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -223,8 +223,15 @@ export class HttpAgent implements Agent {
223
223
'Could not infer host from window.location, defaulting to mainnet gateway of https://icp-api.io. Please provide a host to the HttpAgent constructor to avoid this warning.',
224
224
);
225
225
}
226
-
// Mainnet and local will have the api route available
0 commit comments