Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps)(deps-dev): bump protons from 7.0.5 to 7.4.0 #1932

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 30 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/proto/package.json
Original file line number Diff line number Diff line change
@@ -53,7 +53,7 @@
"@waku/build-utils": "*",
"cspell": "^8.6.1",
"npm-run-all": "^4.1.5",
"protons": "^7.0.2",
"protons": "^7.4.0",
"rollup": "^4.12.0",
"uint8arraylist": "^2.4.3"
},

Unchanged files with check annotations Beta

private options: ConnectionManagerOptions;
private libp2p: Libp2p;
private dialAttemptsForPeer: Map<string, number> = new Map();
private dialErrorsForPeer: Map<string, any> = new Map();

Check warning on line 37 in packages/core/src/lib/connection_manager.ts

GitHub Actions / check

Unexpected any. Specify a different type
private currentActiveParallelDialCount = 0;
private pendingPeerDialQueue: Array<PeerId> = [];
// Handle generic error
log.error(
`Error dialing peer ${peerId.toString()} - ${
(error as any).message

Check warning on line 252 in packages/core/src/lib/connection_manager.ts

GitHub Actions / check

Unexpected any. Specify a different type
}`
);
}
);
return;
} catch (e) {
if ((e as any).code === "ERR_CONNECTION_BEING_CLOSED")

Check warning on line 113 in packages/core/src/lib/wait_for_remote_peer.ts

GitHub Actions / check

Unexpected any. Specify a different type
log.error(
`Connection with the peer was closed and possibly because it's on a different shard. Error: ${e}`
);
}
}
function isValidStoredPeer(peer: any): peer is LocalStoragePeerInfo {

Check warning on line 143 in packages/discovery/src/local-peer-cache/index.ts

GitHub Actions / check

Unexpected any. Specify a different type
return (
peer &&
typeof peer === "object" &&
import { Asymmetric, Symmetric } from "../misc.js";
declare const self: Record<string, any> | undefined;

Check warning on line 9 in packages/message-encryption/src/crypto/utils.ts

GitHub Actions / check

Unexpected any. Specify a different type
const crypto: { node?: any; web?: any } = {

Check warning on line 10 in packages/message-encryption/src/crypto/utils.ts

GitHub Actions / check

Unexpected any. Specify a different type

Check warning on line 10 in packages/message-encryption/src/crypto/utils.ts

GitHub Actions / check

Unexpected any. Specify a different type
node: nodeCrypto,
web: typeof self === "object" && "crypto" in self ? self.crypto : undefined
};
...pubsubService,
...options?.services
}
}) as any as Libp2p; // TODO: make libp2p include it;

Check warning on line 78 in packages/sdk/src/utils/libp2p.ts

GitHub Actions / check

Unexpected any. Specify a different type
}
export async function createLibp2pAndUpdateOptions(
async restCall<T>(
endpoint: string,
method: "GET" | "POST",
body: any = null,

Check warning on line 356 in packages/tests/src/lib/service_node.ts

GitHub Actions / check

Unexpected any. Specify a different type
processResponse: (response: Response) => Promise<T>
): Promise<T> {
this.checkProcess();