Skip to content

Commit 344e804

Browse files
ggrossetietmcw
authored andcommitted
fix: upgrade git-url-parse to fix a parsing issue (#1296)
1 parent 6e62982 commit 344e804

File tree

2 files changed

+30
-12
lines changed

2 files changed

+30
-12
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
"diff": "^4.0.1",
4242
"doctrine-temporary-fork": "2.1.0",
4343
"get-port": "^4.0.0",
44-
"git-url-parse": "^10.0.1",
44+
"git-url-parse": "^11.1.2",
4545
"github-slugger": "1.2.0",
4646
"glob": "^7.1.2",
4747
"globals-docs": "^2.4.0",

yarn.lock

Lines changed: 29 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2733,18 +2733,20 @@ git-semver-tags@^1.3.0, git-semver-tags@^1.3.6:
27332733
meow "^4.0.0"
27342734
semver "^5.5.0"
27352735

2736-
git-up@^2.0.0:
2737-
version "2.0.10"
2738-
resolved "https://registry.yarnpkg.com/git-up/-/git-up-2.0.10.tgz#20fe6bafbef4384cae253dc4f463c49a0c3bd2ec"
2736+
git-up@^4.0.0:
2737+
version "4.0.1"
2738+
resolved "https://registry.yarnpkg.com/git-up/-/git-up-4.0.1.tgz#cb2ef086653640e721d2042fe3104857d89007c0"
2739+
integrity sha512-LFTZZrBlrCrGCG07/dm1aCjjpL1z9L3+5aEeI9SBhAqSc+kiA9Or1bgZhQFNppJX6h/f5McrvJt1mQXTFm6Qrw==
27392740
dependencies:
27402741
is-ssh "^1.3.0"
2741-
parse-url "^1.3.0"
2742+
parse-url "^5.0.0"
27422743

2743-
git-url-parse@^10.0.1:
2744-
version "10.0.1"
2745-
resolved "https://registry.yarnpkg.com/git-url-parse/-/git-url-parse-10.0.1.tgz#75f153b24ac7297447fc583cf9fac23a5ae687c1"
2744+
git-url-parse@^11.1.2:
2745+
version "11.1.2"
2746+
resolved "https://registry.yarnpkg.com/git-url-parse/-/git-url-parse-11.1.2.tgz#aff1a897c36cc93699270587bea3dbcbbb95de67"
2747+
integrity sha512-gZeLVGY8QVKMIkckncX+iCq2/L8PlwncvDFKiWkBn9EtCfYDbliRTTp6qzyQ1VMdITUfq7293zDzfpjdiGASSQ==
27462748
dependencies:
2747-
git-up "^2.0.0"
2749+
git-up "^4.0.0"
27482750

27492751
gitconfiglocal@^1.0.0:
27502752
version "1.0.0"
@@ -4599,6 +4601,11 @@ normalize-path@^2.0.1, normalize-path@^2.1.1:
45994601
dependencies:
46004602
remove-trailing-separator "^1.0.1"
46014603

4604+
normalize-url@^3.3.0:
4605+
version "3.3.0"
4606+
resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-3.3.0.tgz#b2e1c4dc4f7c6d57743df733a4f5978d18650559"
4607+
integrity sha512-U+JJi7duF1o+u2pynbp2zXDW2/PADgC30f0GsHZtRh+HOcXHnw137TrNlyxxRvWW5fjKd3bcLHPxofWuCjaeZg==
4608+
46024609
now-and-later@^2.0.0:
46034610
version "2.0.0"
46044611
resolved "https://registry.yarnpkg.com/now-and-later/-/now-and-later-2.0.0.tgz#bc61cbb456d79cb32207ce47ca05136ff2e7d6ee"
@@ -4894,11 +4901,22 @@ parse-json@^4.0.0:
48944901
error-ex "^1.3.1"
48954902
json-parse-better-errors "^1.0.1"
48964903

4897-
parse-url@^1.3.0:
4898-
version "1.3.11"
4899-
resolved "https://registry.yarnpkg.com/parse-url/-/parse-url-1.3.11.tgz#57c15428ab8a892b1f43869645c711d0e144b554"
4904+
parse-path@^4.0.0:
4905+
version "4.0.1"
4906+
resolved "https://registry.yarnpkg.com/parse-path/-/parse-path-4.0.1.tgz#0ec769704949778cb3b8eda5e994c32073a1adff"
4907+
integrity sha512-d7yhga0Oc+PwNXDvQ0Jv1BuWkLVPXcAoQ/WREgd6vNNoKYaW52KI+RdOFjI63wjkmps9yUE8VS4veP+AgpQ/hA==
4908+
dependencies:
4909+
is-ssh "^1.3.0"
4910+
protocols "^1.4.0"
4911+
4912+
parse-url@^5.0.0:
4913+
version "5.0.1"
4914+
resolved "https://registry.yarnpkg.com/parse-url/-/parse-url-5.0.1.tgz#99c4084fc11be14141efa41b3d117a96fcb9527f"
4915+
integrity sha512-flNUPP27r3vJpROi0/R3/2efgKkyXqnXwyP1KQ2U0SfFRgdizOdWfvrrvJg1LuOoxs7GQhmxJlq23IpQ/BkByg==
49004916
dependencies:
49014917
is-ssh "^1.3.0"
4918+
normalize-url "^3.3.0"
4919+
parse-path "^4.0.0"
49024920
protocols "^1.4.0"
49034921

49044922
parse5@4.0.0:

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy