Skip to content

Commit

Permalink
Merge branch 'master' into handle-websocket-errors
Browse files Browse the repository at this point in the history
  • Loading branch information
nwalters512 authored Dec 11, 2024
2 parents 6547f07 + 1ee26ed commit 95b42b3
Show file tree
Hide file tree
Showing 4 changed files with 264 additions and 258 deletions.
4 changes: 2 additions & 2 deletions examples/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"@fastify/express": "4.0.1",
"browser-sync": "3.0.3",
"connect": "3.7.0",
"express": "4.21.1",
"fastify": "5.0.0"
"express": "4.21.2",
"fastify": "5.1.0"
}
}
26 changes: 13 additions & 13 deletions examples/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -557,10 +557,10 @@ events@^3.3.0:
resolved "https://registry.yarnpkg.com/events/-/events-3.3.0.tgz#31a95ad0a924e2d2c419a813aeb2c4e878ea7400"
integrity sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==

[email protected].1, express@^4.18.3:
version "4.21.1"
resolved "https://registry.yarnpkg.com/express/-/express-4.21.1.tgz#9dae5dda832f16b4eec941a4e44aa89ec481b281"
integrity sha512-YSFlK1Ee0/GC8QaO91tHcDxJiE/X4FbpAyQWkxAvG6AXCuR65YzK8ua6D9hvi/TzUfZMpc+BwuM1IPw8fmQBiQ==
[email protected].2, express@^4.18.3:
version "4.21.2"
resolved "https://registry.yarnpkg.com/express/-/express-4.21.2.tgz#cf250e48362174ead6cea4a566abef0162c1ec32"
integrity sha512-28HqgMZAmih1Czt9ny7qr6ek2qddF4FclbMzwhCREB6OFfH+rXAnuNCwo1/wFvrtbgsQDb4kSbX9de9lFbrXnA==
dependencies:
accepts "~1.3.8"
array-flatten "1.1.1"
Expand All @@ -581,7 +581,7 @@ [email protected], express@^4.18.3:
methods "~1.1.2"
on-finished "2.4.1"
parseurl "~1.3.3"
path-to-regexp "0.1.10"
path-to-regexp "0.1.12"
proxy-addr "~2.0.7"
qs "6.13.0"
range-parser "~1.2.1"
Expand Down Expand Up @@ -649,10 +649,10 @@ fastify-plugin@^5.0.0:
resolved "https://registry.yarnpkg.com/fastify-plugin/-/fastify-plugin-5.0.1.tgz#82d44e6fe34d1420bb5a4f7bee434d501e41939f"
integrity sha512-HCxs+YnRaWzCl+cWRYFnHmeRFyR5GVnJTAaCJQiYzQSDwK9MgJdyAsuL3nh0EWRCYMgQ5MeziymvmAhUHYHDUQ==

fastify@5.0.0:
version "5.0.0"
resolved "https://registry.yarnpkg.com/fastify/-/fastify-5.0.0.tgz#f8f80bd741bde2de1997c25dbe31e61c91978111"
integrity sha512-Qe4dU+zGOzg7vXjw4EvcuyIbNnMwTmcuOhlOrOJsgwzvjEZmsM/IeHulgJk+r46STjdJS/ZJbxO8N70ODXDMEQ==
fastify@5.1.0:
version "5.1.0"
resolved "https://registry.yarnpkg.com/fastify/-/fastify-5.1.0.tgz#07029613aa4d94c4e8df71b25696eb67ed5d7079"
integrity sha512-0SdUC5AoiSgMSc2Vxwv3WyKzyGMDJRAW/PgNsK1kZrnkO6MeqUIW9ovVg9F2UGIqtIcclYMyeJa4rK6OZc7Jxg==
dependencies:
"@fastify/ajv-compiler" "^4.0.0"
"@fastify/error" "^4.0.0"
Expand Down Expand Up @@ -1094,10 +1094,10 @@ parseurl@~1.3.2, parseurl@~1.3.3:
resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.3.tgz#9da19e7bee8d12dff0513ed5b76957793bc2e8d4"
integrity sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==

[email protected].10:
version "0.1.10"
resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.10.tgz#67e9108c5c0551b9e5326064387de4763c4d5f8b"
integrity sha512-7lf7qcQidTku0Gu3YDPc8DJ1q7OOucfa/BSsIwjuh56VU7katFvuM8hULfkwB3Fns/rsVF7PwPKVw1sl5KQS9w==
[email protected].12:
version "0.1.12"
resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.12.tgz#d5e1a12e478a976d432ef3c58d534b9923164bb7"
integrity sha512-RA1GjUVMnvYFxuqovrEqZoxxW5NUZqbwKtYz/Tt7nXerk0LbLblQmrsgdeOxV5SFHf0UDggjS/bSeOZwt1pmEQ==

picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.3.1:
version "2.3.1"
Expand Down
30 changes: 15 additions & 15 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,36 +56,36 @@
},
"homepage": "https://github.com/chimurai/http-proxy-middleware#readme",
"devDependencies": {
"@commitlint/cli": "19.5.0",
"@commitlint/config-conventional": "19.5.0",
"@eslint/js": "9.12.0",
"@commitlint/cli": "19.6.0",
"@commitlint/config-conventional": "19.6.0",
"@eslint/js": "9.16.0",
"@types/debug": "4.1.12",
"@types/eslint": "9.6.1",
"@types/eslint__js": "8.42.3",
"@types/express": "4.17.21",
"@types/is-glob": "4.0.4",
"@types/jest": "29.5.13",
"@types/jest": "29.5.14",
"@types/micromatch": "4.0.9",
"@types/node": "22.7.4",
"@types/node": "22.10.2",
"@types/supertest": "6.0.2",
"@types/ws": "8.5.12",
"@types/ws": "8.5.13",
"body-parser": "1.20.3",
"eslint": "9.12.0",
"eslint": "9.16.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.2.1",
"express": "4.21.1",
"express": "4.21.2",
"get-port": "5.1.1",
"globals": "15.10.0",
"husky": "9.1.6",
"globals": "15.13.0",
"husky": "9.1.7",
"jest": "29.7.0",
"lint-staged": "15.2.10",
"mockttp": "3.15.3",
"lint-staged": "15.2.11",
"mockttp": "3.15.5",
"open": "8.4.2",
"prettier": "3.3.3",
"prettier": "3.4.2",
"supertest": "7.0.0",
"ts-jest": "29.2.5",
"typescript": "5.6.2",
"typescript-eslint": "8.8.1",
"typescript": "5.7.2",
"typescript-eslint": "8.18.0",
"ws": "8.18.0"
},
"dependencies": {
Expand Down
Loading

0 comments on commit 95b42b3

Please sign in to comment.