Summary: Bumps [ws](https://github.com/websockets/ws) from 8.2.3 to 8.4.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/websockets/ws/releases">ws's releases</a>.</em></p> <blockquote> <h2>8.4.0</h2> <h1>Features</h1> <ul> <li>Added ability to generate custom masking keys (<a href="https://github-redirect.dependabot.com/websockets/ws/issues/1990">https://github.com/facebook/flipper/issues/1990</a>).</li> </ul> <h2>8.3.0</h2> <h1>Features</h1> <ul> <li>Added ability to pause and resume a <code>WebSocket</code> (0a8c7a9c).</li> </ul> <h1>Bug fixes</h1> <ul> <li>Fixed a bug that could prevent the connection from being closed cleanly when using the stream API (ed2b8039).</li> <li>When following redirects, an error is now emitted and not thrown if the redirect URL is invalid (<a href="https://github-redirect.dependabot.com/websockets/ws/issues/1980">https://github.com/facebook/flipper/issues/1980</a>).</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="00c34d726d"><code>00c34d7</code></a> [dist] 8.4.0</li> <li><a href="35d45c2a4f"><code>35d45c2</code></a> [perf] Skip masking and unmasking if the masking key is zero</li> <li><a href="eb2e3a84a1"><code>eb2e3a8</code></a> [feature] Introduce the <code>generateMask</code> option</li> <li><a href="c82b08737f"><code>c82b087</code></a> [dist] 8.3.0</li> <li><a href="0a8c7a9c4f"><code>0a8c7a9</code></a> [api] Add <code>WebSocket#pause()</code> and <code>WebSocket#resume()</code></li> <li><a href="ed2b803905"><code>ed2b803</code></a> [fix] Resume the socket in the <code>CLOSING</code> state</li> <li><a href="b8186dd115"><code>b8186dd</code></a> [fix] Do not throw if the redirect URL is invalid (<a href="https://github-redirect.dependabot.com/websockets/ws/issues/1980">https://github.com/facebook/flipper/issues/1980</a>)</li> <li><a href="5a905e49be"><code>5a905e4</code></a> [minor] Add missing label to the issue form</li> <li><a href="89d81e8670"><code>89d81e8</code></a> [minor] Fix nit</li> <li><a href="4916d03ad8"><code>4916d03</code></a> [minor] Allow to write frames with up to 2^48 - 1 bytes of data (<a href="https://github-redirect.dependabot.com/websockets/ws/issues/1973">https://github.com/facebook/flipper/issues/1973</a>)</li> <li>Additional commits viewable in <a href="https://github.com/websockets/ws/compare/8.2.3...8.4.0">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `dependabot rebase` will rebase this PR - `dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `dependabot merge` will merge this PR after your CI passes on it - `dependabot squash and merge` will squash and merge this PR after your CI passes on it - `dependabot cancel merge` will cancel a previously requested merge and block automerging - `dependabot reopen` will reopen this PR if it is closed - `dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Pull Request resolved: https://github.com/facebook/flipper/pull/3270 Reviewed By: aigoncharov Differential Revision: D33565479 Pulled By: passy fbshipit-source-id: 65c61ad1644a6fed1cf52e0874936777ec2721da
68 lines
1.9 KiB
JSON
68 lines
1.9 KiB
JSON
{
|
|
"name": "js-flipper",
|
|
"title": "JS Flipper Bindings for Web-Socket based clients",
|
|
"version": "0.128.4",
|
|
"main": "lib/index.js",
|
|
"types": "lib/index.d.ts",
|
|
"description": "Flipper bindings for Node.js and web",
|
|
"scripts": {
|
|
"reset": "rimraf index.js *.tsbuildinfo",
|
|
"build": "tsc -b",
|
|
"fix": "eslint . --fix --ext .js,.ts,.tsx",
|
|
"lint:tsc": "tsc --noemit",
|
|
"lint:eslint": "eslint . --ext .js,.ts,.tsx",
|
|
"lint": "yarn lint:eslint && yarn lint:tsc",
|
|
"test": "cross-env TZ=Pacific/Pohnpei jest"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/facebook/flipper.git",
|
|
"baseUrl": "https://github.com/facebook/flipper/tree/main/js/js-flipper"
|
|
},
|
|
"keywords": [
|
|
"flipper",
|
|
"javascript",
|
|
"browser",
|
|
"node",
|
|
"react",
|
|
"angular",
|
|
"sdk",
|
|
"client"
|
|
],
|
|
"author": {
|
|
"name": "Facebook Inc"
|
|
},
|
|
"license": "MIT",
|
|
"licenseFilename": "LICENSE",
|
|
"readmeFilename": "README.md",
|
|
"devDependencies": {
|
|
"@types/jest": "^27.0.2",
|
|
"@types/node": "^16.10.9",
|
|
"@types/ws": "^8.2.2",
|
|
"@typescript-eslint/eslint-plugin": "^4.30.0",
|
|
"@typescript-eslint/parser": "^4.30.0",
|
|
"ansi-to-html": "^0.7.2",
|
|
"babel-eslint": "^10.0.1",
|
|
"cross-env": "^7.0.3",
|
|
"eslint": "^7.32.0",
|
|
"eslint-config-fbjs": "^3.1.1",
|
|
"eslint-config-prettier": "^8.3.0",
|
|
"eslint-import-resolver-typescript": "^2.4.0",
|
|
"eslint-plugin-babel": "^5.3.0",
|
|
"eslint-plugin-flowtype": "^5.10.0",
|
|
"eslint-plugin-header": "^3.0.0",
|
|
"eslint-plugin-import": "^2.24.2",
|
|
"eslint-plugin-jsx-a11y": "^6.4.1",
|
|
"eslint-plugin-node": "^11.1.0",
|
|
"eslint-plugin-prettier": "^4.0.0",
|
|
"eslint-plugin-react": "^7.26.1",
|
|
"eslint-plugin-react-hooks": "^4.2.0",
|
|
"jest": "^27.3.1",
|
|
"prettier": "^2.4.1",
|
|
"ts-jest": "^27.0.7",
|
|
"typescript": "^4.4.2",
|
|
"ws": "^8.4.2"
|
|
},
|
|
"dependencies": {}
|
|
}
|