Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Oct 2, 2025

Note

Mend has cancelled the proposed renaming of the Renovate GitHub app being renamed to mend[bot].

This notice will be removed on 2025-10-07.


This PR contains the following updates:

Package Change Age Confidence
comment-json 4.3.0 -> 4.4.1 age confidence

Release Notes

kaelzhang/node-comment-json (comment-json)

v4.4.1

Compare Source

const {parse, stringify} = require('comment-json')

const parsed = parse(
  `{"foo": 9007199254740993}`,
  // The reviver function now has a 3rd param that contains the string source.
  (key, value, {source}) =>
    /^[0-9]+$/.test(source) ? BigInt(source) : value
)

console.log(parsed)
// {
//   "foo": 9007199254740993n
// }

stringify(parsed, (key, val) =>
  typeof value === 'bigint'
    // Pay attention that
    //   JSON.rawJSON is supported in node >= 21
    ? JSON.rawJSON(String(val))
    : value
)
// {"foo":9007199254740993}

An upgrade is recommended for all users.

v4.4.0

Compare Source


Configuration

📅 Schedule: Branch creation - "after 6am and before 6pm" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/comment-json-4.x branch from cf1fcfe to f85be04 Compare October 3, 2025 06:03
@renovate renovate bot changed the title fix(deps): update dependency comment-json to v4.4.0 fix(deps): update dependency comment-json to v4.4.1 Oct 3, 2025
@renovate renovate bot force-pushed the renovate/comment-json-4.x branch from f85be04 to e811297 Compare October 3, 2025 15:20
@sonarqubecloud
Copy link

sonarqubecloud bot commented Oct 3, 2025

@jpb06 jpb06 merged commit bef2aac into main Oct 3, 2025
5 checks passed
@jpb06 jpb06 deleted the renovate/comment-json-4.x branch October 3, 2025 15:22
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants