From d3d2f75c12cdc0d19606a20f94e95376d261fd25 Mon Sep 17 00:00:00 2001 From: Nathan Sprenkle Date: Mon, 12 May 2025 10:36:48 -0400 Subject: [PATCH] chore: re-add query-string dependency (#1703) Several of our plugins still rely on this, though it should be removed ASAP --- package-lock.json | 19 +++++++++++++++++++ package.json | 1 + 2 files changed, 20 insertions(+) diff --git a/package-lock.json b/package-lock.json index 382ae647..5e137323 100644 --- a/package-lock.json +++ b/package-lock.json @@ -36,6 +36,7 @@ "lodash.camelcase": "4.3.0", "postcss-loader": "^8.1.1", "prop-types": "15.8.1", + "query-string": "^7.1.3", "react": "^18.3.1", "react-dom": "^18.3.1", "react-helmet": "6.1.0", @@ -18317,6 +18318,24 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/query-string": { + "version": "7.1.3", + "resolved": "https://registry.npmjs.org/query-string/-/query-string-7.1.3.tgz", + "integrity": "sha512-hh2WYhq4fi8+b+/2Kg9CEge4fDPvHS534aOOvOZeQ3+Vf2mCFsaFBYj0i+iXcAq6I9Vzp5fjMFBlONvayDC1qg==", + "license": "MIT", + "dependencies": { + "decode-uri-component": "^0.2.2", + "filter-obj": "^1.1.0", + "split-on-first": "^1.0.0", + "strict-uri-encode": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/querystringify": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz", diff --git a/package.json b/package.json index d84a9f68..b4351459 100644 --- a/package.json +++ b/package.json @@ -59,6 +59,7 @@ "lodash.camelcase": "4.3.0", "postcss-loader": "^8.1.1", "prop-types": "15.8.1", + "query-string": "^7.1.3", "react": "^18.3.1", "react-dom": "^18.3.1", "react-helmet": "6.1.0",