[PR #564] [MERGED] chore(deps): bump yargs-parser from 16.1.0 to 17.0.0 #2706

Closed
opened 2026-03-17 00:23:19 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/hoppscotch/hoppscotch/pull/564
Author: @dependabot-preview[bot]
Created: 2/10/2020
Status: Merged
Merged: 2/10/2020
Merged by: @liyasthomas

Base: masterHead: dependabot/npm_and_yarn/yargs-parser-17.0.0


📝 Commits (1)

  • 74b997b chore(deps): bump yargs-parser from 16.1.0 to 17.0.0

📊 Changes

2 files changed (+4 additions, -4 deletions)

View changed files

📝 package-lock.json (+3 -3)
📝 package.json (+1 -1)

📄 Description

Bumps yargs-parser from 16.1.0 to 17.0.0.

Release notes

Sourced from yargs-parser's releases.

yargs-parser v17.0.0

⚠ BREAKING CHANGES

  • this reverts parsing behavior of booleans to that of yargs@14
  • objects used during parsing are now created with a null prototype. There may be some scenarios where this change in behavior leaks externally.

Features

  • boolean arguments will not be collected into an implicit array (#236) (34c4e19)
  • introduce nargs-eats-options config option (#246) (d50822a)

Bug Fixes

  • address bugs with "uknown-options-as-args" (bc023e3)
  • array should take precedence over nargs, but enforce nargs (#243) (4cbc188)
  • support keys that collide with object prototypes (#234) (1587b6d)
  • unknown options terminated with digits now handled by unknown-options-as-args (#238) (d36cdfa)
Changelog

Sourced from yargs-parser's changelog.

17.0.0 (2020-02-10)

⚠ BREAKING CHANGES

  • this reverts parsing behavior of booleans to that of yargs@14
  • objects used during parsing are now created with a null prototype. There may be some scenarios where this change in behavior leaks externally.

Features

  • boolean arguments will not be collected into an implicit array (#236) (34c4e19)
  • introduce nargs-eats-options config option (#246) (d50822a)

Bug Fixes

  • address bugs with "uknown-options-as-args" (bc023e3)
  • array should take precedence over nargs, but enforce nargs (#243) (4cbc188)
  • support keys that collide with object prototypes (#234) (1587b6d)
  • unknown options terminated with digits now handled by unknown-options-as-args (#238) (d36cdfa)
Commits
  • 485d281 chore: release 17.0.0 (#235)
  • d50822a feat: introduce nargs-eats-options config option (#246)
  • 0dea619 chore: update standard (#245)
  • f2b3952 chore: add decamelize to ignore until we can drop Node 8
  • 4cbc188 fix: array should take precedence over nargs, but enforce nargs (#243)
  • 34c4e19 feat!: boolean arguments will not be collected into an implicit array (#236)
  • 11ea8d1 chore(deps): update dependency mocha to v7 (#241)
  • d36cdfa fix: unknown options terminated with digits now handled by unknown-options-as...
  • 53f97fb chore: fix renovate config
  • 978c69c chore: add renovate configuration (#239)
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
  • @dependabot badge me will comment on this PR with code to add a "Dependabot enabled" badge to your readme

Additionally, you can set the following in the .dependabot/config.yml file in this repo:

  • Update frequency
  • Out-of-range updates (receive only lockfile updates, if desired)
  • Security updates (receive only security updates, if desired)

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/hoppscotch/hoppscotch/pull/564 **Author:** [@dependabot-preview[bot]](https://github.com/apps/dependabot-preview) **Created:** 2/10/2020 **Status:** ✅ Merged **Merged:** 2/10/2020 **Merged by:** [@liyasthomas](https://github.com/liyasthomas) **Base:** `master` ← **Head:** `dependabot/npm_and_yarn/yargs-parser-17.0.0` --- ### 📝 Commits (1) - [`74b997b`](https://github.com/hoppscotch/hoppscotch/commit/74b997ba496661f1c10dd15bd77fc58865a033a0) chore(deps): bump yargs-parser from 16.1.0 to 17.0.0 ### 📊 Changes **2 files changed** (+4 additions, -4 deletions) <details> <summary>View changed files</summary> 📝 `package-lock.json` (+3 -3) 📝 `package.json` (+1 -1) </details> ### 📄 Description Bumps [yargs-parser](https://github.com/yargs/yargs-parser) from 16.1.0 to 17.0.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/yargs/yargs-parser/releases">yargs-parser's releases</a>.</em></p> <blockquote> <h2>yargs-parser v17.0.0</h2> <h3>⚠ BREAKING CHANGES</h3> <ul> <li>this reverts parsing behavior of booleans to that of yargs@14</li> <li>objects used during parsing are now created with a null prototype. There may be some scenarios where this change in behavior leaks externally.</li> </ul> <h3>Features</h3> <ul> <li>boolean arguments will not be collected into an implicit array (<a href="https://www.github-redirect.dependabot.com/yargs/yargs-parser/issues/236">#236</a>) (<a href="https://www.github.com/yargs/yargs-parser/commit/34c4e19bae4e7af63e3cb6fa654a97ed476e5eb5">34c4e19</a>)</li> <li>introduce nargs-eats-options config option (<a href="https://www.github-redirect.dependabot.com/yargs/yargs-parser/issues/246">#246</a>) (<a href="https://www.github.com/yargs/yargs-parser/commit/d50822ac10e1b05f2e9643671ca131ac251b6732">d50822a</a>)</li> </ul> <h3>Bug Fixes</h3> <ul> <li>address bugs with &quot;uknown-options-as-args&quot; (<a href="https://www.github.com/yargs/yargs-parser/commit/bc023e3b13e20a118353f9507d1c999bf388a346">bc023e3</a>)</li> <li>array should take precedence over nargs, but enforce nargs (<a href="https://www.github-redirect.dependabot.com/yargs/yargs-parser/issues/243">#243</a>) (<a href="https://www.github.com/yargs/yargs-parser/commit/4cbc188b7abb2249529a19c090338debdad2fe6c">4cbc188</a>)</li> <li>support keys that collide with object prototypes (<a href="https://www.github-redirect.dependabot.com/yargs/yargs-parser/issues/234">#234</a>) (<a href="https://www.github.com/yargs/yargs-parser/commit/1587b6d91db853a9109f1be6b209077993fee4de">1587b6d</a>)</li> <li>unknown options terminated with digits now handled by unknown-options-as-args (<a href="https://www.github-redirect.dependabot.com/yargs/yargs-parser/issues/238">#238</a>) (<a href="https://www.github.com/yargs/yargs-parser/commit/d36cdfa854254d7c7e0fe1d583818332ac46c2a5">d36cdfa</a>)</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/yargs/yargs-parser/blob/master/CHANGELOG.md">yargs-parser's changelog</a>.</em></p> <blockquote> <h2><a href="https://www.github.com/yargs/yargs-parser/compare/v16.1.0...v17.0.0">17.0.0</a> (2020-02-10)</h2> <h3>⚠ BREAKING CHANGES</h3> <ul> <li>this reverts parsing behavior of booleans to that of yargs@14</li> <li>objects used during parsing are now created with a null prototype. There may be some scenarios where this change in behavior leaks externally.</li> </ul> <h3>Features</h3> <ul> <li>boolean arguments will not be collected into an implicit array (<a href="https://www.github-redirect.dependabot.com/yargs/yargs-parser/issues/236">#236</a>) (<a href="https://www.github.com/yargs/yargs-parser/commit/34c4e19bae4e7af63e3cb6fa654a97ed476e5eb5">34c4e19</a>)</li> <li>introduce nargs-eats-options config option (<a href="https://www.github-redirect.dependabot.com/yargs/yargs-parser/issues/246">#246</a>) (<a href="https://www.github.com/yargs/yargs-parser/commit/d50822ac10e1b05f2e9643671ca131ac251b6732">d50822a</a>)</li> </ul> <h3>Bug Fixes</h3> <ul> <li>address bugs with &quot;uknown-options-as-args&quot; (<a href="https://www.github.com/yargs/yargs-parser/commit/bc023e3b13e20a118353f9507d1c999bf388a346">bc023e3</a>)</li> <li>array should take precedence over nargs, but enforce nargs (<a href="https://www.github-redirect.dependabot.com/yargs/yargs-parser/issues/243">#243</a>) (<a href="https://www.github.com/yargs/yargs-parser/commit/4cbc188b7abb2249529a19c090338debdad2fe6c">4cbc188</a>)</li> <li>support keys that collide with object prototypes (<a href="https://www.github-redirect.dependabot.com/yargs/yargs-parser/issues/234">#234</a>) (<a href="https://www.github.com/yargs/yargs-parser/commit/1587b6d91db853a9109f1be6b209077993fee4de">1587b6d</a>)</li> <li>unknown options terminated with digits now handled by unknown-options-as-args (<a href="https://www.github-redirect.dependabot.com/yargs/yargs-parser/issues/238">#238</a>) (<a href="https://www.github.com/yargs/yargs-parser/commit/d36cdfa854254d7c7e0fe1d583818332ac46c2a5">d36cdfa</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/yargs/yargs-parser/commit/485d2817ba77aa1a930964d03b8ea4ddb265b686"><code>485d281</code></a> chore: release 17.0.0 (<a href="https://github-redirect.dependabot.com/yargs/yargs-parser/issues/235">#235</a>)</li> <li><a href="https://github.com/yargs/yargs-parser/commit/d50822ac10e1b05f2e9643671ca131ac251b6732"><code>d50822a</code></a> feat: introduce nargs-eats-options config option (<a href="https://github-redirect.dependabot.com/yargs/yargs-parser/issues/246">#246</a>)</li> <li><a href="https://github.com/yargs/yargs-parser/commit/0dea619b28329e6358e47ed8bcc611850d950753"><code>0dea619</code></a> chore: update standard (<a href="https://github-redirect.dependabot.com/yargs/yargs-parser/issues/245">#245</a>)</li> <li><a href="https://github.com/yargs/yargs-parser/commit/f2b3952f412519d7bff01b6bc91c683214e1c836"><code>f2b3952</code></a> chore: add decamelize to ignore until we can drop Node 8</li> <li><a href="https://github.com/yargs/yargs-parser/commit/4cbc188b7abb2249529a19c090338debdad2fe6c"><code>4cbc188</code></a> fix: array should take precedence over nargs, but enforce nargs (<a href="https://github-redirect.dependabot.com/yargs/yargs-parser/issues/243">#243</a>)</li> <li><a href="https://github.com/yargs/yargs-parser/commit/34c4e19bae4e7af63e3cb6fa654a97ed476e5eb5"><code>34c4e19</code></a> feat!: boolean arguments will not be collected into an implicit array (<a href="https://github-redirect.dependabot.com/yargs/yargs-parser/issues/236">#236</a>)</li> <li><a href="https://github.com/yargs/yargs-parser/commit/11ea8d19e88b22f0a6e7cf9858591baea37796d5"><code>11ea8d1</code></a> chore(deps): update dependency mocha to v7 (<a href="https://github-redirect.dependabot.com/yargs/yargs-parser/issues/241">#241</a>)</li> <li><a href="https://github.com/yargs/yargs-parser/commit/d36cdfa854254d7c7e0fe1d583818332ac46c2a5"><code>d36cdfa</code></a> fix: unknown options terminated with digits now handled by unknown-options-as...</li> <li><a href="https://github.com/yargs/yargs-parser/commit/53f97fbfbe32b72e77e53aab5ae54f8393062e8a"><code>53f97fb</code></a> chore: fix renovate config</li> <li><a href="https://github.com/yargs/yargs-parser/commit/978c69ce691457cb930435ab5cbadabb78c37a50"><code>978c69c</code></a> chore: add renovate configuration (<a href="https://github-redirect.dependabot.com/yargs/yargs-parser/issues/239">#239</a>)</li> <li>Additional commits viewable in <a href="https://github.com/yargs/yargs-parser/compare/v16.1.0...v17.0.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://api.dependabot.com/badges/compatibility_score?dependency-name=yargs-parser&package-manager=npm_and_yarn&previous-version=16.1.0&new-version=17.0.0)](https://dependabot.com/compatibility-score/?dependency-name=yargs-parser&package-manager=npm_and_yarn&previous-version=16.1.0&new-version=17.0.0) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) - `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme Additionally, you can set the following in the `.dependabot/config.yml` file in this repo: - Update frequency - Out-of-range updates (receive only lockfile updates, if desired) - Security updates (receive only security updates, if desired) </details> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-17 00:23:19 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/hoppscotch#2706
No description provided.