Bump globals from 17.3.0 to 17.4.0 (#421)

c3137f5 · dependabot[bot] · 2026-03-09 22:19

4 files +11 -11
Message
{commit_body(@commit)}

Files changed

modified dist/index.js
+3 −3
@@ -53632,17 +53632,17 @@ async function getOTPVersion(otpSpec0, osVersion) {
53632 53632 }
53633 53633
53634 53634 function requestedVersionFor(tool, version, originListing, mirrors) {
53635 const isStrictVersion = isStrictVersion()
53635 + const isVersionTypeStrict = isStrictVersion()
53636 53636
53637 53637 let versionType = 'loose'
53638 if (isStrictVersion) {
53638 + if (isVersionTypeStrict) {
53639 53639 versionType = 'strict'
53640 53640 }
53641 53641
53642 53642 let ret =
53643 53643 `Requested ${versionType} ${tool} version (${version}) not found in version list, ` +
53644 53644 `at ${originListing}${mirrors ? `, with mirrors ${mirrors}` : ''}.`
53645 if (!isStrictVersion) {
53645 + if (!isVersionTypeStrict) {
53646 53646 ret = `${ret} Should you be using option 'version-type': 'strict'?`
53647 53647 }
53648 53648
modified package-lock.json
+4 −4
@@ -19,7 +19,7 @@
19 19 "@vercel/ncc": "0.38.4",
20 20 "eslint": "10.0.3",
21 21 "eslint-plugin-yml": "3.3.1",
22 "globals": "17.3.0",
22 + "globals": "17.4.0",
23 23 "markdownlint-cli": "0.48.0",
24 24 "prettier": "3.8.1",
25 25 "shellcheck": "4.1.0",
@@ -1734,9 +1734,9 @@
1734 1734 }
1735 1735 },
1736 1736 "node_modules/globals": {
1737 "version": "17.3.0",
1738 "resolved": "https://registry.npmjs.org/globals/-/globals-17.3.0.tgz",
1739 "integrity": "sha512-yMqGUQVVCkD4tqjOJf3TnrvaaHDMYp4VlUSObbkIiuCPe/ofdMBFIAcBbCSRFWOnos6qRiTVStDwqPLUclaxIw==",
1737 + "version": "17.4.0",
1738 + "resolved": "https://registry.npmjs.org/globals/-/globals-17.4.0.tgz",
1739 + "integrity": "sha512-hjrNztw/VajQwOLsMNT1cbJiH2muO3OROCHnbehc8eY5JyD2gqz4AcMHPqgaOR59DjgUjYAYLeH699g/eWi2jw==",
1740 1740 "dev": true,
1741 1741 "license": "MIT",
1742 1742 "engines": {
modified package.json
+1 −1
@@ -29,7 +29,7 @@
29 29 "@vercel/ncc": "0.38.4",
30 30 "eslint": "10.0.3",
31 31 "eslint-plugin-yml": "3.3.1",
32 "globals": "17.3.0",
32 + "globals": "17.4.0",
33 33 "markdownlint-cli": "0.48.0",
34 34 "prettier": "3.8.1",
35 35 "shellcheck": "4.1.0",
modified src/setup-beam.js
+3 −3
@@ -192,17 +192,17 @@ async function getOTPVersion(otpSpec0, osVersion) {
192 192 }
193 193
194 194 function requestedVersionFor(tool, version, originListing, mirrors) {
195 const isStrictVersion = isStrictVersion()
195 + const isVersionTypeStrict = isStrictVersion()
196 196
197 197 let versionType = 'loose'
198 if (isStrictVersion) {
198 + if (isVersionTypeStrict) {
199 199 versionType = 'strict'
200 200 }
201 201
202 202 let ret =
203 203 `Requested ${versionType} ${tool} version (${version}) not found in version list, ` +
204 204 `at ${originListing}${mirrors ? `, with mirrors ${mirrors}` : ''}.`
205 if (!isStrictVersion) {
205 + if (!isVersionTypeStrict) {
206 206 ret = `${ret} Should you be using option 'version-type': 'strict'?`
207 207 }
208 208

Parents: 4cbacdb