Skip to content

Commit 080e201

Browse files
authoredNov 21, 2024··
deps: hosted-git-info@6.1.3 (#7930)
1 parent 401bb86 commit 080e201

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed
 

‎node_modules/hosted-git-info/lib/hosts.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ const maybeJoin = (...args) => args.every(arg => arg) ? args.join('') : ''
66
const maybeEncode = (arg) => arg ? encodeURIComponent(arg) : ''
77
const formatHashFragment = (f) => f.toLowerCase()
88
.replace(/^\W+/g, '') // strip leading non-characters
9-
.replace(/\W+$/g, '') // strip trailing non-characters
9+
.replace(/(?<!\W)\W+$/, '') // strip trailing non-characters
1010
.replace(/\//g, '') // strip all slashes
1111
.replace(/\W+/g, '-') // replace remaining non-characters with '-'
1212

‎node_modules/hosted-git-info/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "hosted-git-info",
3-
"version": "6.1.2",
3+
"version": "6.1.3",
44
"description": "Provides metadata and conversions from repository urls for GitHub, Bitbucket and GitLab",
55
"main": "./lib/index.js",
66
"repository": {

‎package-lock.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@
108108
"fs-minipass": "^3.0.3",
109109
"glob": "^10.3.10",
110110
"graceful-fs": "^4.2.11",
111-
"hosted-git-info": "^6.1.2",
111+
"hosted-git-info": "^6.1.3",
112112
"ini": "^4.1.1",
113113
"init-package-json": "^5.0.0",
114114
"is-cidr": "^4.0.2",
@@ -6674,9 +6674,9 @@
66746674
}
66756675
},
66766676
"node_modules/hosted-git-info": {
6677-
"version": "6.1.2",
6678-
"resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-6.1.2.tgz",
6679-
"integrity": "sha512-BGqEHfzDiVmLEV5uzvXn1qKrmXfNPVDBh86Epw5S6P4XYl+4yx4dawEj7p+B9NVVolIkX11DwmKiZ3YHK7XMwg==",
6677+
"version": "6.1.3",
6678+
"resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-6.1.3.tgz",
6679+
"integrity": "sha512-HVJyzUrLIL1c0QmviVh5E8VGyUS7xCFPS6yydaVd1UegW+ibV/CohqTH9MkOLDp5o+rb82DMo77PTuc9F/8GKw==",
66806680
"inBundle": true,
66816681
"license": "ISC",
66826682
"dependencies": {

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@
7171
"fs-minipass": "^3.0.3",
7272
"glob": "^10.3.10",
7373
"graceful-fs": "^4.2.11",
74-
"hosted-git-info": "^6.1.2",
74+
"hosted-git-info": "^6.1.3",
7575
"ini": "^4.1.1",
7676
"init-package-json": "^5.0.0",
7777
"is-cidr": "^4.0.2",

0 commit comments

Comments
 (0)
Please sign in to comment.