Skip to content
This repository was archived by the owner on Apr 18, 2024. It is now read-only.

Commit cb578ca

Browse files
fix: OPTIC-411: [lsp] Fix Follow Redirects improperly handles URLs in the url.parse() function (#1687)
1 parent b744926 commit cb578ca

File tree

5 files changed

+13
-10
lines changed

5 files changed

+13
-10
lines changed

e2e/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@
4848
},
4949
"resolutions": {
5050
"debug": "^4.3.1",
51-
"electron": "^22.3.25"
51+
"electron": "^22.3.25",
52+
"follow-redirects": "1.15.4"
5253
}
5354
}

e2e/yarn.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2103,10 +2103,10 @@ fn-args@^4.0.0:
21032103
resolved "https://registry.yarnpkg.com/fn-args/-/fn-args-4.0.0.tgz#2e912f7a74c5e9ef25060bd60127d6a8680237a5"
21042104
integrity sha512-M9XSagc92ejQhi+7kjpFPAO59xKbGRsbOg/9dfwSj84DfzB0pj+Q81DVD1pKr084Xf2oICwUNI0pCvGORmD9zg==
21052105

2106-
follow-redirects@^1.14.0:
2107-
version "1.15.1"
2108-
resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.15.1.tgz#0ca6a452306c9b276e4d3127483e29575e207ad5"
2109-
integrity sha512-yLAMQs+k0b2m7cVxpS1VKJVvoz7SS9Td1zss3XRwXj+ZDH00RJgnuLx7E44wx02kQLrdM3aOOy+FpzS7+8OizA==
2106+
follow-redirects@1.15.4, follow-redirects@^1.14.0:
2107+
version "1.15.4"
2108+
resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.15.4.tgz#cdc7d308bf6493126b17ea2191ea0ccf3e535adf"
2109+
integrity sha512-Cr4D/5wlrb0z9dgERpUL3LrmPKVDsETIJhaCMeDfuFYcqa5bldGV6wBsAN6X/vxlXQtFBMrXdXxdL8CbDTGniw==
21102110

21112111
foreground-child@^2.0.0:
21122112
version "2.0.0"

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,8 @@
210210
"d3-color": "3.1.0",
211211
"loader-utils": "2.0.4",
212212
"@babel/traverse": "7.23.2",
213-
"postcss": "8.4.31"
213+
"postcss": "8.4.31",
214+
"follow-redirects": "1.15.4"
214215
},
215216
"nohoist": [
216217
"**/babel-preset-react-app/@babel/runtime"

src/components/NewTaxonomy/NewTaxonomy.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ const NewTaxonomy = ({
191191
}}
192192
treeCheckStrictly
193193
showCheckedStrategy={TreeSelect.SHOW_ALL}
194-
treeExpandAction="click"
194+
treeExpandAction={false}
195195
dropdownMatchSelectWidth={dropdownWidth}
196196
placeholder={options.placeholder || 'Click to add...'}
197197
style={style}

yarn.lock

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7162,9 +7162,10 @@ flatted@^3.1.0:
71627162
resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.2.7.tgz#609f39207cb614b89d0765b477cb2d437fbf9787"
71637163
integrity sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==
71647164

7165-
follow-redirects@^1.0.0:
7166-
version "1.14.9"
7167-
resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.14.9.tgz#dd4ea157de7bfaf9ea9b3fbd85aa16951f78d8d7"
7165+
[email protected], follow-redirects@^1.0.0:
7166+
version "1.15.4"
7167+
resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.15.4.tgz#cdc7d308bf6493126b17ea2191ea0ccf3e535adf"
7168+
integrity sha512-Cr4D/5wlrb0z9dgERpUL3LrmPKVDsETIJhaCMeDfuFYcqa5bldGV6wBsAN6X/vxlXQtFBMrXdXxdL8CbDTGniw==
71687169

71697170
for-each@^0.3.3:
71707171
version "0.3.3"

0 commit comments

Comments
 (0)