Skip to content

Commit 6278fe4

Browse files
committed
deps: ini@4.1.3
1 parent e4c7a41 commit 6278fe4

File tree

4 files changed

+13
-10
lines changed

4 files changed

+13
-10
lines changed

node_modules/ini/lib/ini.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,9 @@ const decode = (str, opt = {}) => {
140140
duplicates[keyRaw] = (duplicates?.[keyRaw] || 0) + 1
141141
isArray = duplicates[keyRaw] > 1
142142
}
143-
const key = isArray ? keyRaw.slice(0, -2) : keyRaw
143+
const key = isArray && keyRaw.endsWith('[]')
144+
? keyRaw.slice(0, -2) : keyRaw
145+
144146
if (key === '__proto__') {
145147
continue
146148
}

node_modules/ini/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
"author": "GitHub Inc.",
33
"name": "ini",
44
"description": "An ini encoder/decoder for node",
5-
"version": "4.1.2",
5+
"version": "4.1.3",
66
"repository": {
77
"type": "git",
8-
"url": "https://github.com/npm/ini.git"
8+
"url": "git+https://github.com/npm/ini.git"
99
},
1010
"main": "lib/ini.js",
1111
"scripts": {
@@ -20,7 +20,7 @@
2020
},
2121
"devDependencies": {
2222
"@npmcli/eslint-config": "^4.0.0",
23-
"@npmcli/template-oss": "4.21.3",
23+
"@npmcli/template-oss": "4.22.0",
2424
"tap": "^16.0.1"
2525
},
2626
"license": "ISC",
@@ -33,7 +33,7 @@
3333
},
3434
"templateOSS": {
3535
"//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
36-
"version": "4.21.3",
36+
"version": "4.22.0",
3737
"publish": "true"
3838
},
3939
"tap": {

package-lock.json

+5-4
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@
107107
"glob": "^10.3.15",
108108
"graceful-fs": "^4.2.11",
109109
"hosted-git-info": "^7.0.2",
110-
"ini": "^4.1.2",
110+
"ini": "^4.1.3",
111111
"init-package-json": "^6.0.3",
112112
"is-cidr": "^5.0.5",
113113
"json-parse-even-better-errors": "^3.0.2",
@@ -6090,10 +6090,11 @@
60906090
"dev": true
60916091
},
60926092
"node_modules/ini": {
6093-
"version": "4.1.2",
6094-
"resolved": "https://registry.npmjs.org/ini/-/ini-4.1.2.tgz",
6095-
"integrity": "sha512-AMB1mvwR1pyBFY/nSevUX6y8nJWS63/SzUKD3JyQn97s4xgIdgQPT75IRouIiBAN4yLQBUShNYVW0+UG25daCw==",
6093+
"version": "4.1.3",
6094+
"resolved": "https://registry.npmjs.org/ini/-/ini-4.1.3.tgz",
6095+
"integrity": "sha512-X7rqawQBvfdjS10YU1y1YVreA3SsLrW9dX2CewP2EbBJM4ypVNLDkO5y04gejPwKIY9lR+7r9gn3rFPt/kmWFg==",
60966096
"inBundle": true,
6097+
"license": "ISC",
60976098
"engines": {
60986099
"node": "^14.17.0 || ^16.13.0 || >=18.0.0"
60996100
}

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@
7272
"glob": "^10.3.15",
7373
"graceful-fs": "^4.2.11",
7474
"hosted-git-info": "^7.0.2",
75-
"ini": "^4.1.2",
75+
"ini": "^4.1.3",
7676
"init-package-json": "^6.0.3",
7777
"is-cidr": "^5.0.5",
7878
"json-parse-even-better-errors": "^3.0.2",

0 commit comments

Comments
 (0)