From f8960d519d7b6f13cb0133e8c0f4c88b28ca0b0c Mon Sep 17 00:00:00 2001 From: Mike McCready <66998419+MikeMcC399@users.noreply.github.com> Date: Mon, 16 Sep 2024 13:22:00 +0200 Subject: [PATCH] chore(deps): update path-to-regexp to 3.3.0 (#1257) --- examples/config/package-lock.json | 9 +++++---- examples/config/package.json | 5 +++++ examples/start-and-pnpm-workspaces/package.json | 7 ++++++- examples/start-and-pnpm-workspaces/pnpm-lock.yaml | 11 +++++++---- examples/start-and-yarn-workspaces/package.json | 5 ++++- examples/start-and-yarn-workspaces/yarn.lock | 8 ++++---- examples/start/package-lock.json | 9 +++++---- examples/start/package.json | 5 +++++ 8 files changed, 41 insertions(+), 18 deletions(-) diff --git a/examples/config/package-lock.json b/examples/config/package-lock.json index 5b16bd909..882e4df6d 100644 --- a/examples/config/package-lock.json +++ b/examples/config/package-lock.json @@ -2106,10 +2106,11 @@ } }, "node_modules/path-to-regexp": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-2.2.1.tgz", - "integrity": "sha512-gu9bD6Ta5bwGrrU8muHzVOBFFREpp2iRkVfhBJahwJ6p6Xw20SjT0MxLnwkjOibQmGSYhiUnf2FLe7k+jcFmGQ==", - "dev": true + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-3.3.0.tgz", + "integrity": "sha512-qyCH421YQPS2WFDxDjftfc1ZR5WKQzVzqsp4n9M2kQhVOo/ByahFoUNJfl58kOcEGfQ//7weFTDhm+ss8Ecxgw==", + "dev": true, + "license": "MIT" }, "node_modules/pause-stream": { "version": "0.0.11", diff --git a/examples/config/package.json b/examples/config/package.json index 12c5b0921..53668f793 100644 --- a/examples/config/package.json +++ b/examples/config/package.json @@ -15,5 +15,10 @@ "cypress": "13.14.2", "serve": "14.2.1", "start-server-and-test": "2.0.3" + }, + "overrides": { + "serve": { + "path-to-regexp": "3.3.0" + } } } diff --git a/examples/start-and-pnpm-workspaces/package.json b/examples/start-and-pnpm-workspaces/package.json index 129e4f330..fa043f3b4 100644 --- a/examples/start-and-pnpm-workspaces/package.json +++ b/examples/start-and-pnpm-workspaces/package.json @@ -2,5 +2,10 @@ "name": "start-and-pnpm-workspaces", "version": "1.0.0", "description": "example using pnpm with workspaces", - "private": true + "private": true, + "pnpm": { + "overrides": { + "path-to-regexp": "3.3.0" + } + } } diff --git a/examples/start-and-pnpm-workspaces/pnpm-lock.yaml b/examples/start-and-pnpm-workspaces/pnpm-lock.yaml index 80be1e1e3..c57f714a9 100644 --- a/examples/start-and-pnpm-workspaces/pnpm-lock.yaml +++ b/examples/start-and-pnpm-workspaces/pnpm-lock.yaml @@ -4,6 +4,9 @@ settings: autoInstallPeers: true excludeLinksFromLockfile: false +overrides: + path-to-regexp: 3.3.0 + importers: .: {} @@ -634,8 +637,8 @@ packages: resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} engines: {node: '>=8'} - path-to-regexp@2.2.1: - resolution: {integrity: sha512-gu9bD6Ta5bwGrrU8muHzVOBFFREpp2iRkVfhBJahwJ6p6Xw20SjT0MxLnwkjOibQmGSYhiUnf2FLe7k+jcFmGQ==} + path-to-regexp@3.3.0: + resolution: {integrity: sha512-qyCH421YQPS2WFDxDjftfc1ZR5WKQzVzqsp4n9M2kQhVOo/ByahFoUNJfl58kOcEGfQ//7weFTDhm+ss8Ecxgw==} pend@1.2.0: resolution: {integrity: sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==} @@ -1519,7 +1522,7 @@ snapshots: path-key@3.1.1: {} - path-to-regexp@2.2.1: {} + path-to-regexp@3.3.0: {} pend@1.2.0: {} @@ -1603,7 +1606,7 @@ snapshots: mime-types: 2.1.18 minimatch: 3.1.2 path-is-inside: 1.0.2 - path-to-regexp: 2.2.1 + path-to-regexp: 3.3.0 range-parser: 1.2.0 serve@14.2.1: diff --git a/examples/start-and-yarn-workspaces/package.json b/examples/start-and-yarn-workspaces/package.json index ad3a12991..180405148 100644 --- a/examples/start-and-yarn-workspaces/package.json +++ b/examples/start-and-yarn-workspaces/package.json @@ -3,5 +3,8 @@ "workspaces": [ "workspace-1", "workspace-2" - ] + ], + "resolutions": { + "path-to-regexp": "3.3.0" + } } diff --git a/examples/start-and-yarn-workspaces/yarn.lock b/examples/start-and-yarn-workspaces/yarn.lock index 76c163dc2..9fa4d1427 100644 --- a/examples/start-and-yarn-workspaces/yarn.lock +++ b/examples/start-and-yarn-workspaces/yarn.lock @@ -1076,10 +1076,10 @@ path-key@^3.0.0, path-key@^3.1.0: resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== -path-to-regexp@2.2.1: - version "2.2.1" - resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-2.2.1.tgz#90b617025a16381a879bc82a38d4e8bdeb2bcf45" - integrity sha512-gu9bD6Ta5bwGrrU8muHzVOBFFREpp2iRkVfhBJahwJ6p6Xw20SjT0MxLnwkjOibQmGSYhiUnf2FLe7k+jcFmGQ== +path-to-regexp@2.2.1, path-to-regexp@3.3.0: + version "3.3.0" + resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-3.3.0.tgz#f7f31d32e8518c2660862b644414b6d5c63a611b" + integrity sha512-qyCH421YQPS2WFDxDjftfc1ZR5WKQzVzqsp4n9M2kQhVOo/ByahFoUNJfl58kOcEGfQ//7weFTDhm+ss8Ecxgw== pend@~1.2.0: version "1.2.0" diff --git a/examples/start/package-lock.json b/examples/start/package-lock.json index 5fd2a425a..2f82cd73d 100644 --- a/examples/start/package-lock.json +++ b/examples/start/package-lock.json @@ -1974,10 +1974,11 @@ } }, "node_modules/path-to-regexp": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-2.2.1.tgz", - "integrity": "sha512-gu9bD6Ta5bwGrrU8muHzVOBFFREpp2iRkVfhBJahwJ6p6Xw20SjT0MxLnwkjOibQmGSYhiUnf2FLe7k+jcFmGQ==", - "dev": true + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-3.3.0.tgz", + "integrity": "sha512-qyCH421YQPS2WFDxDjftfc1ZR5WKQzVzqsp4n9M2kQhVOo/ByahFoUNJfl58kOcEGfQ//7weFTDhm+ss8Ecxgw==", + "dev": true, + "license": "MIT" }, "node_modules/pend": { "version": "1.2.0", diff --git a/examples/start/package.json b/examples/start/package.json index 0628f7600..d45016523 100644 --- a/examples/start/package.json +++ b/examples/start/package.json @@ -13,5 +13,10 @@ "devDependencies": { "cypress": "13.14.2", "serve": "14.2.1" + }, + "overrides": { + "serve": { + "path-to-regexp": "3.3.0" + } } }