[PR #145] [MERGED] ⬆️ Bump yargs-parser from 13.1.1 to 14.0.0 #2439

Closed
opened 2026-03-17 00:08:35 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/hoppscotch/hoppscotch/pull/145
Author: @dependabot-preview[bot]
Created: 9/14/2019
Status: Merged
Merged: 9/16/2019
Merged by: @liyasthomas

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


📝 Commits (1)

  • 5ed3650 ⬆️ Bump yargs-parser from 13.1.1 to 14.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 13.1.1 to 14.0.0.

Changelog

Sourced from yargs-parser's changelog.

14.0.0 (2019-09-06)

Bug Fixes

  • boolean arrays with default values (#185) (7d42572)
  • boolean now behaves the same as other array types (#184) (17ca3bd)
  • eatNargs() for 'opt.narg === 0' and boolean typed options (#188) (c5a1db0)
  • maybeCoerceNumber now takes precedence over coerce return value (#182) (2f26436)
  • take into account aliases when appending arrays from config object (#199) (f8a2d3f)

Features

  • add configuration option to "collect-unknown-options" (#181) (7909cc4)
  • maybeCoerceNumber() now takes into account arrays (#187) (31c204b)

BREAKING CHANGES

  • unless "parse-numbers" is set to "false", arrays of numeric strings are now parsed as numbers, rather than strings.
  • we have dropped the broken "defaulted" functionality; we would like to revisit adding this in the future.
  • maybeCoerceNumber now takes precedence over coerce return value (#182)
Commits
  • ac11361 chore(release): 14.0.0
  • 0516019 docs: fix typo require (#200)
  • 7909cc4 feat: add configuration option to "collect-unknown-options" (#181)
  • d3d9027 docs: fix typos (#194)
  • 89d5a15 docs: fix typoe (#195)
  • f8a2d3f fix: take into account aliases when appending arrays from config object (#199)
  • 7d42572 fix: boolean arrays with default values (#185)
  • c5a1db0 fix: eatNargs() for 'opt.narg === 0' and boolean typed options (#188)
  • 31c204b feat!: maybeCoerceNumber() now takes into account arrays (#187)
  • 17ca3bd fix!: boolean now behaves the same as other array types (#184)
  • 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)

Finally, you can contact us by mentioning @dependabot.


🔄 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/145 **Author:** [@dependabot-preview[bot]](https://github.com/apps/dependabot-preview) **Created:** 9/14/2019 **Status:** ✅ Merged **Merged:** 9/16/2019 **Merged by:** [@liyasthomas](https://github.com/liyasthomas) **Base:** `master` ← **Head:** `dependabot/npm_and_yarn/yargs-parser-14.0.0` --- ### 📝 Commits (1) - [`5ed3650`](https://github.com/hoppscotch/hoppscotch/commit/5ed3650f7b5e3cfad9d0efa4f55b8fe15e36036d) :arrow_up: Bump yargs-parser from 13.1.1 to 14.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 13.1.1 to 14.0.0. <details> <summary>Changelog</summary> *Sourced from [yargs-parser's changelog](https://github.com/yargs/yargs-parser/blob/master/CHANGELOG.md).* > ## [14.0.0](https://github.com/yargs/yargs-parser/compare/v13.1.1...v14.0.0) (2019-09-06) > > > ### Bug Fixes > > * boolean arrays with default values ([#185](https://github-redirect.dependabot.com/yargs/yargs-parser/issues/185)) ([7d42572](https://github.com/yargs/yargs-parser/commit/7d42572)) > * boolean now behaves the same as other array types ([#184](https://github-redirect.dependabot.com/yargs/yargs-parser/issues/184)) ([17ca3bd](https://github.com/yargs/yargs-parser/commit/17ca3bd)) > * eatNargs() for 'opt.narg === 0' and boolean typed options ([#188](https://github-redirect.dependabot.com/yargs/yargs-parser/issues/188)) ([c5a1db0](https://github.com/yargs/yargs-parser/commit/c5a1db0)) > * maybeCoerceNumber now takes precedence over coerce return value ([#182](https://github-redirect.dependabot.com/yargs/yargs-parser/issues/182)) ([2f26436](https://github.com/yargs/yargs-parser/commit/2f26436)) > * take into account aliases when appending arrays from config object ([#199](https://github-redirect.dependabot.com/yargs/yargs-parser/issues/199)) ([f8a2d3f](https://github.com/yargs/yargs-parser/commit/f8a2d3f)) > > > ### Features > > * add configuration option to "collect-unknown-options" ([#181](https://github-redirect.dependabot.com/yargs/yargs-parser/issues/181)) ([7909cc4](https://github.com/yargs/yargs-parser/commit/7909cc4)) > * maybeCoerceNumber() now takes into account arrays ([#187](https://github-redirect.dependabot.com/yargs/yargs-parser/issues/187)) ([31c204b](https://github.com/yargs/yargs-parser/commit/31c204b)) > > > ### BREAKING CHANGES > > * unless "parse-numbers" is set to "false", arrays of numeric strings are now parsed as numbers, rather than strings. > * we have dropped the broken "defaulted" functionality; we would like to revisit adding this in the future. > * maybeCoerceNumber now takes precedence over coerce return value ([#182](https://github-redirect.dependabot.com/yargs/yargs-parser/issues/182)) </details> <details> <summary>Commits</summary> - [`ac11361`](https://github.com/yargs/yargs-parser/commit/ac11361ab90204698499ca06e292fac47088971a) chore(release): 14.0.0 - [`0516019`](https://github.com/yargs/yargs-parser/commit/051601951c458e1294270c6baca79b4aff32f8b6) docs: fix typo require ([#200](https://github-redirect.dependabot.com/yargs/yargs-parser/issues/200)) - [`7909cc4`](https://github.com/yargs/yargs-parser/commit/7909cc4679c76770d4d7950ecd527da823b08f91) feat: add configuration option to "collect-unknown-options" ([#181](https://github-redirect.dependabot.com/yargs/yargs-parser/issues/181)) - [`d3d9027`](https://github.com/yargs/yargs-parser/commit/d3d9027f9c9235be8e7a650d0e33d4d55287e0e2) docs: fix typos ([#194](https://github-redirect.dependabot.com/yargs/yargs-parser/issues/194)) - [`89d5a15`](https://github.com/yargs/yargs-parser/commit/89d5a158900d923e8de21c9b6994d2b5736dfbe7) docs: fix typoe ([#195](https://github-redirect.dependabot.com/yargs/yargs-parser/issues/195)) - [`f8a2d3f`](https://github.com/yargs/yargs-parser/commit/f8a2d3f26a84cc57e210deb1aa27b580e4b06388) fix: take into account aliases when appending arrays from config object ([#199](https://github-redirect.dependabot.com/yargs/yargs-parser/issues/199)) - [`7d42572`](https://github.com/yargs/yargs-parser/commit/7d42572acf7e81f1d78f357b3229d415abe3d6c5) fix: boolean arrays with default values ([#185](https://github-redirect.dependabot.com/yargs/yargs-parser/issues/185)) - [`c5a1db0`](https://github.com/yargs/yargs-parser/commit/c5a1db06eabc4dd249adf2a471156bd133b693bf) fix: eatNargs() for 'opt.narg === 0' and boolean typed options ([#188](https://github-redirect.dependabot.com/yargs/yargs-parser/issues/188)) - [`31c204b`](https://github.com/yargs/yargs-parser/commit/31c204b35eb35e9a3c382f8068e7cb80674a2f22) feat!: maybeCoerceNumber() now takes into account arrays ([#187](https://github-redirect.dependabot.com/yargs/yargs-parser/issues/187)) - [`17ca3bd`](https://github.com/yargs/yargs-parser/commit/17ca3bdaada25605ab06fe72946d2da4b52087fa) fix!: boolean now behaves the same as other array types ([#184](https://github-redirect.dependabot.com/yargs/yargs-parser/issues/184)) - Additional commits viewable in [compare view](https://github.com/yargs/yargs-parser/compare/v13.1.1...v14.0.0) </details> <br /> [![Dependabot compatibility score](https://api.dependabot.com/badges/compatibility_score?dependency-name=yargs-parser&package-manager=npm_and_yarn&previous-version=13.1.1&new-version=14.0.0)](https://dependabot.com/compatibility-score.html?dependency-name=yargs-parser&package-manager=npm_and_yarn&previous-version=13.1.1&new-version=14.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) Finally, you can contact us by mentioning @dependabot. </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:08:35 +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#2439
No description provided.