Skip to content

Bump qs from 6.14.1 to 6.14.2 in the npm_and_yarn group across 1 directory#32

Merged
alphaleadership merged 1 commit intomainfrom
dependabot/npm_and_yarn/npm_and_yarn-14dc0ebc5a
Feb 23, 2026
Merged

Bump qs from 6.14.1 to 6.14.2 in the npm_and_yarn group across 1 directory#32
alphaleadership merged 1 commit intomainfrom
dependabot/npm_and_yarn/npm_and_yarn-14dc0ebc5a

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 14, 2026

Bumps the npm_and_yarn group with 1 update in the / directory: qs.

Updates qs from 6.14.1 to 6.14.2

Changelog

Sourced from qs's changelog.

6.14.2

  • [Fix] parse: mark overflow objects for indexed notation exceeding arrayLimit (#546)
  • [Fix] arrayLimit means max count, not max index, in combine/merge/parseArrayValue
  • [Fix] parse: throw on arrayLimit exceeded with indexed notation when throwOnLimitExceeded is true (#529)
  • [Fix] parse: enforce arrayLimit on comma-parsed values
  • [Fix] parse: fix error message to reflect arrayLimit as max index; remove extraneous comments (#545)
  • [Robustness] avoid .push, use void
  • [readme] document that addQueryPrefix does not add ? to empty output (#418)
  • [readme] clarify parseArrays and arrayLimit documentation (#543)
  • [readme] replace runkit CI badge with shields.io check-runs badge
  • [meta] fix changelog typo (arrayLengtharrayLimit)
  • [actions] fix rebase workflow permissions
Commits
  • bdcf0c7 v6.14.2
  • 294db90 [readme] document that addQueryPrefix does not add ? to empty output
  • 5c308e5 [readme] clarify parseArrays and arrayLimit documentation
  • 6addf8c [Fix] parse: mark overflow objects for indexed notation exceeding arrayLimit
  • cfc108f [Fix] arrayLimit means max count, not max index, in combine/merge/`pars...
  • febb644 [Fix] parse: throw on arrayLimit exceeded with indexed notation when `thr...
  • f6a7abf [Fix] parse: enforce arrayLimit on comma-parsed values
  • fbc5206 [Fix] parse: fix error message to reflect arrayLimit as max index; remove e...
  • 1b9a8b4 [actions] fix rebase workflow permissions
  • 2a35775 [meta] fix changelog typo (arrayLengtharrayLimit)
  • 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 show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions
    You can disable automated security fix PRs for this repo from the Security Alerts page.

Summary by cubic

Upgrade qs from 6.14.1 to 6.14.2 to tighten arrayLimit enforcement and fix parse edge cases.
Lockfiles only: package-lock pins 6.14.2; yarn.lock resolves ^6.11.0 to 6.15.0 and ~6.14.0 to 6.14.2.

Written for commit 559a958. Summary will update on new commits.

@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Feb 14, 2026
Copy link

@cubic-dev-ai cubic-dev-ai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No issues found across 2 files

Confidence score: 5/5

  • Automated review surfaced no issues in the provided summaries.
  • No files require special attention.
Architecture diagram
sequenceDiagram
    participant Client
    participant App as Application/Middleware
    participant QS as qs Library (v6.14.2)

    Note over Client,QS: Query String Parsing with Array Limits

    Client->>App: Request with complex query (e.g., ?a[101]=val)
    App->>QS: parse(queryString, options)

    Note right of QS: CHANGED: arrayLimit now strictly<br/>enforced as max count vs max index

    alt throwOnLimitExceeded is true AND arrayLimit exceeded
        QS-->>App: NEW: Throw error (indexed notation overflow)
        App-->>Client: 400 Bad Request / Error Response
    else Default behavior (Limit exceeded)
        QS->>QS: CHANGED: Mark overflow objects for indexed notation
        QS-->>App: Return parsed object (truncated/modified array)
        App->>App: Process data
        App-->>Client: 200 OK
    end

    Note over Client,QS: Comma-Separated Value Parsing

    Client->>App: Request with comma-separated values (?a=1,2,3)
    App->>QS: parse(queryString, { comma: true })
    QS->>QS: NEW: Enforce arrayLimit on comma-parsed values
    QS-->>App: Return validated array
    App-->>Client: Response
Loading

@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/npm_and_yarn-14dc0ebc5a branch from 0b53c64 to 3917c13 Compare February 23, 2026 07:30
@alphaleadership
Copy link
Owner

@dependabot rebase

@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Feb 23, 2026

Looks like this PR has been edited by someone other than Dependabot. That means Dependabot can't rebase it - sorry!

If you're happy for Dependabot to recreate it from scratch, overwriting any edits, you can request @dependabot recreate.

@alphaleadership
Copy link
Owner

@dependabot recreate

Bumps the npm_and_yarn group with 1 update in the / directory: [qs](https://github.com/ljharb/qs).


Updates `qs` from 6.14.1 to 6.14.2
- [Changelog](https://github.com/ljharb/qs/blob/main/CHANGELOG.md)
- [Commits](ljharb/qs@v6.14.1...v6.14.2)

---
updated-dependencies:
- dependency-name: qs
  dependency-version: 6.14.2
  dependency-type: indirect
  dependency-group: npm_and_yarn
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/npm_and_yarn-14dc0ebc5a branch from 4c7d49e to 559a958 Compare February 23, 2026 18:02
@coderabbitai
Copy link
Contributor

coderabbitai bot commented Feb 23, 2026

Important

Review skipped

Bot user detected.

To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.

Use the checkbox below for a quick retry:

  • 🔍 Trigger review
✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Post copyable unit tests in a comment
  • Commit unit tests in branch dependabot/npm_and_yarn/npm_and_yarn-14dc0ebc5a

Comment @coderabbitai help to get the list of available commands and usage tips.

@alphaleadership alphaleadership merged commit 9d400f8 into main Feb 23, 2026
1 of 2 checks passed
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/npm_and_yarn-14dc0ebc5a branch February 23, 2026 18:04
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant