Skip to content

Commit

Permalink
Update dependency @types/ws to v8.5.5 (#2825)
Browse files Browse the repository at this point in the history
* Update dependency @types/ws to v8.5.5

* ignore onchain-gas ws unsubscription error in tests

* test commit to run pipeline

* revert test changes

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: karen-stepanyan <[email protected]>
Co-authored-by: karen-stepanyan <[email protected]>
  • Loading branch information
3 people authored Aug 29, 2023
1 parent 279efca commit 78647ff
Show file tree
Hide file tree
Showing 9 changed files with 24 additions and 20 deletions.
14 changes: 7 additions & 7 deletions .pnp.cjs

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

Binary file not shown.
Binary file not shown.
2 changes: 1 addition & 1 deletion packages/core/bootstrap/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
"@types/remote-redux-devtools": "0.5.5",
"@types/sinon": "10.0.15",
"@types/uuid": "8.3.4",
"@types/ws": "8.5.4",
"@types/ws": "8.5.5",
"mock-socket": "9.1.5",
"sinon": "14.0.2",
"typescript": "5.0.4"
Expand Down
2 changes: 1 addition & 1 deletion packages/sources/ada-balance/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"@cardano-ogmios/client": "^5.0.0",
"@chainlink/ea-bootstrap": "workspace:*",
"@chainlink/ea-test-helpers": "workspace:*",
"@types/ws": "8.5.4",
"@types/ws": "8.5.5",
"ethers": "^5.4.6",
"tslib": "^2.3.1",
"ws": "^7.4.6"
Expand Down
2 changes: 1 addition & 1 deletion packages/sources/gsr/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"@types/jest": "27.5.2",
"@types/node": "16.11.51",
"@types/sinonjs__fake-timers": "8.1.2",
"@types/ws": "8.5.4",
"@types/ws": "8.5.5",
"nock": "13.2.9",
"typescript": "5.0.4"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,11 @@ describe('websocket', () => {
let flowFulfilled = Promise.resolve(true)
if (!process.env.RECORD) {
mockGetBlockByNumber()
flowFulfilled = mockWebSocketFlow(mockedWsServer, [mockWSResponse])
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
// @ts-ignore is needed since errorOnUnexpectedMessage has type 'true' instead of value 'true' and type 'boolean'
flowFulfilled = mockWebSocketFlow(mockedWsServer, [mockWSResponse], {
errorOnUnexpectedMessage: false,
})
}

const makeRequest = () =>
Expand Down
2 changes: 1 addition & 1 deletion packages/sources/twosigma/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
"@types/jest": "27.5.2",
"@types/node": "16.11.51",
"@types/sinonjs__fake-timers": "8.1.2",
"@types/ws": "8.5.4",
"@types/ws": "8.5.5",
"nock": "13.2.9",
"typescript": "5.0.4"
}
Expand Down
16 changes: 8 additions & 8 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1968,7 +1968,7 @@ __metadata:
"@chainlink/ea-test-helpers": "workspace:*"
"@types/jest": 27.5.2
"@types/node": 16.11.51
"@types/ws": 8.5.4
"@types/ws": 8.5.5
ethers: ^5.4.6
tslib: ^2.3.1
typescript: 5.0.4
Expand Down Expand Up @@ -3115,7 +3115,7 @@ __metadata:
"@types/remote-redux-devtools": 0.5.5
"@types/sinon": 10.0.15
"@types/uuid": 8.3.4
"@types/ws": 8.5.4
"@types/ws": 8.5.5
ajv: ^8.6.2
axios: ^0.24.0
decimal.js: ^10.3.1
Expand Down Expand Up @@ -3787,7 +3787,7 @@ __metadata:
"@types/jest": 27.5.2
"@types/node": 16.11.51
"@types/sinonjs__fake-timers": 8.1.2
"@types/ws": 8.5.4
"@types/ws": 8.5.5
axios: 0.27.2
crypto: 1.0.1
nock: 13.2.9
Expand Down Expand Up @@ -5083,7 +5083,7 @@ __metadata:
"@types/jest": 27.5.2
"@types/node": 16.11.51
"@types/sinonjs__fake-timers": 8.1.2
"@types/ws": 8.5.4
"@types/ws": 8.5.5
nock: 13.2.9
tslib: ^2.3.1
typescript: 5.0.4
Expand Down Expand Up @@ -10997,12 +10997,12 @@ __metadata:
languageName: node
linkType: hard

"@types/ws@npm:8.5.4":
version: 8.5.4
resolution: "@types/ws@npm:8.5.4"
"@types/ws@npm:8.5.5":
version: 8.5.5
resolution: "@types/ws@npm:8.5.5"
dependencies:
"@types/node": "*"
checksum: fefbad20d211929bb996285c4e6f699b12192548afedbe4930ab4384f8a94577c9cd421acaad163cacd36b88649509970a05a0b8f20615b30c501ed5269038d1
checksum: d00bf8070e6938e3ccf933010921c6ce78ac3606696ce37a393b27a9a603f7bd93ea64f3c5fa295a2f743575ba9c9a9fdb904af0f5fe2229bf2adf0630386e4a
languageName: node
linkType: hard

Expand Down

0 comments on commit 78647ff

Please sign in to comment.