build(deps): bump js-yaml and coveralls #38

Open
dependabot[bot] wants to merge 1 commit from dependabot/npm_and_yarn/multi-e0dc7bf2fa into master
dependabot[bot] commented 2025-11-22 05:49:13 +08:00 (Migrated from github.com)

Bumps js-yaml to 3.14.2 and updates ancestor dependency coveralls. These dependencies need to be updated together.

Updates js-yaml from 3.14.1 to 3.14.2

Changelog

Sourced from js-yaml's changelog.

[3.14.2] - 2025-11-15

Security

  • Backported v4.1.1 fix to v3

[4.1.1] - 2025-11-12

Security

  • Fix prototype pollution issue in yaml merge (<<) operator.

[4.1.0] - 2021-04-15

Added

  • Types are now exported as yaml.types.XXX.
  • Every type now has options property with original arguments kept as they were (see yaml.types.int.options as an example).

Changed

  • Schema.extend() now keeps old type order in case of conflicts (e.g. Schema.extend([ a, b, c ]).extend([ b, a, d ]) is now ordered as abcd instead of cbad).

[4.0.0] - 2021-01-03

Changed

  • Check migration guide to see details for all breaking changes.
  • Breaking: "unsafe" tags !!js/function, !!js/regexp, !!js/undefined are moved to js-yaml-js-types package.
  • Breaking: removed safe* functions. Use load, loadAll, dump instead which are all now safe by default.
  • yaml.DEFAULT_SAFE_SCHEMA and yaml.DEFAULT_FULL_SCHEMA are removed, use yaml.DEFAULT_SCHEMA instead.
  • yaml.Schema.create(schema, tags) is removed, use schema.extend(tags) instead.
  • !!binary now always mapped to Uint8Array on load.
  • Reduced nesting of /lib folder.
  • Parse numbers according to YAML 1.2 instead of YAML 1.1 (01234 is now decimal, 0o1234 is octal, 1:23 is parsed as string instead of base60).
  • dump() no longer quotes :, [, ], (, ) except when necessary, #470, #557.
  • Line and column in exceptions are now formatted as (X:Y) instead of at line X, column Y (also present in compact format), #332.
  • Code snippet created in exceptions now contains multiple lines with line numbers.
  • dump() now serializes undefined as null in collections and removes keys with undefined in mappings, #571.
  • dump() with skipInvalid=true now serializes invalid items in collections as null.
  • Custom tags starting with ! are now dumped as !tag instead of !<!tag>, #576.
  • Custom tags starting with tag:yaml.org,2002: are now shorthanded using !!, #258.

Added

  • Added .mjs (es modules) support.
  • Added quotingType and forceQuotes options for dumper to configure string literal style, #290, #529.
  • Added styles: { '!!null': 'empty' } option for dumper (serializes { foo: null } as "foo: "), #570.

... (truncated)

Commits

Updates coveralls from 2.13.3 to 3.1.1

Release notes

Sourced from coveralls's releases.

Maintenance / Security updates

  • swapped exec for execFile. Credit: Adar Zandberg from the CxSCA AppSec team at Checkmarx.
  • updated devDependencies
  • merged Dependabot PRs

Improved CircleCI / Travis parallelism support

  • Handle service_job_number for parallelism in Travis and CircleCI (#290) 705c3b5
  • Update sinon to v7.5.0. (#288) eb6dc35

https://github.com/nickmerwin/node-coveralls/compare/v3.0.14...v3.1.0


This is a minor release due to the change in behavior for CircleCI, which now uses the Workflow ID to merge parallel coverage jobs:

    options.service_number = process.env.CIRCLE_WORKFLOW_ID;
    options.service_job_number = process.env.CIRCLE_BUILD_NUM;

Maintenance

Maintenance release

No release notes provided.

COVERALLS_SERVICE_NUMBER environment variable support

Improved:

  • If COVERALLS_SERVICE_NUMBER is set, set service_number from it. (@​midgleyc)

CodeFresh support, Maintenance

Added:

Improved:

Updated:

... (truncated)

Commits

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 show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @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)
    You can disable automated security fix PRs for this repo from the Security Alerts page.
Bumps [js-yaml](https://github.com/nodeca/js-yaml) to 3.14.2 and updates ancestor dependency [coveralls](https://github.com/nickmerwin/node-coveralls). These dependencies need to be updated together. Updates `js-yaml` from 3.14.1 to 3.14.2 <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/nodeca/js-yaml/blob/master/CHANGELOG.md">js-yaml's changelog</a>.</em></p> <blockquote> <h2>[3.14.2] - 2025-11-15</h2> <h3>Security</h3> <ul> <li>Backported v4.1.1 fix to v3</li> </ul> <h2>[4.1.1] - 2025-11-12</h2> <h3>Security</h3> <ul> <li>Fix prototype pollution issue in yaml merge (&lt;&lt;) operator.</li> </ul> <h2>[4.1.0] - 2021-04-15</h2> <h3>Added</h3> <ul> <li>Types are now exported as <code>yaml.types.XXX</code>.</li> <li>Every type now has <code>options</code> property with original arguments kept as they were (see <code>yaml.types.int.options</code> as an example).</li> </ul> <h3>Changed</h3> <ul> <li><code>Schema.extend()</code> now keeps old type order in case of conflicts (e.g. Schema.extend([ a, b, c ]).extend([ b, a, d ]) is now ordered as <code>abcd</code> instead of <code>cbad</code>).</li> </ul> <h2>[4.0.0] - 2021-01-03</h2> <h3>Changed</h3> <ul> <li>Check <a href="https://github.com/nodeca/js-yaml/blob/master/migrate_v3_to_v4.md">migration guide</a> to see details for all breaking changes.</li> <li>Breaking: &quot;unsafe&quot; tags <code>!!js/function</code>, <code>!!js/regexp</code>, <code>!!js/undefined</code> are moved to <a href="https://github.com/nodeca/js-yaml-js-types">js-yaml-js-types</a> package.</li> <li>Breaking: removed <code>safe*</code> functions. Use <code>load</code>, <code>loadAll</code>, <code>dump</code> instead which are all now safe by default.</li> <li><code>yaml.DEFAULT_SAFE_SCHEMA</code> and <code>yaml.DEFAULT_FULL_SCHEMA</code> are removed, use <code>yaml.DEFAULT_SCHEMA</code> instead.</li> <li><code>yaml.Schema.create(schema, tags)</code> is removed, use <code>schema.extend(tags)</code> instead.</li> <li><code>!!binary</code> now always mapped to <code>Uint8Array</code> on load.</li> <li>Reduced nesting of <code>/lib</code> folder.</li> <li>Parse numbers according to YAML 1.2 instead of YAML 1.1 (<code>01234</code> is now decimal, <code>0o1234</code> is octal, <code>1:23</code> is parsed as string instead of base60).</li> <li><code>dump()</code> no longer quotes <code>:</code>, <code>[</code>, <code>]</code>, <code>(</code>, <code>)</code> except when necessary, <a href="https://redirect.github.com/nodeca/js-yaml/issues/470">#470</a>, <a href="https://redirect.github.com/nodeca/js-yaml/issues/557">#557</a>.</li> <li>Line and column in exceptions are now formatted as <code>(X:Y)</code> instead of <code>at line X, column Y</code> (also present in compact format), <a href="https://redirect.github.com/nodeca/js-yaml/issues/332">#332</a>.</li> <li>Code snippet created in exceptions now contains multiple lines with line numbers.</li> <li><code>dump()</code> now serializes <code>undefined</code> as <code>null</code> in collections and removes keys with <code>undefined</code> in mappings, <a href="https://redirect.github.com/nodeca/js-yaml/issues/571">#571</a>.</li> <li><code>dump()</code> with <code>skipInvalid=true</code> now serializes invalid items in collections as null.</li> <li>Custom tags starting with <code>!</code> are now dumped as <code>!tag</code> instead of <code>!&lt;!tag&gt;</code>, <a href="https://redirect.github.com/nodeca/js-yaml/issues/576">#576</a>.</li> <li>Custom tags starting with <code>tag:yaml.org,2002:</code> are now shorthanded using <code>!!</code>, <a href="https://redirect.github.com/nodeca/js-yaml/issues/258">#258</a>.</li> </ul> <h3>Added</h3> <ul> <li>Added <code>.mjs</code> (es modules) support.</li> <li>Added <code>quotingType</code> and <code>forceQuotes</code> options for dumper to configure string literal style, <a href="https://redirect.github.com/nodeca/js-yaml/issues/290">#290</a>, <a href="https://redirect.github.com/nodeca/js-yaml/issues/529">#529</a>.</li> <li>Added <code>styles: { '!!null': 'empty' }</code> option for dumper (serializes <code>{ foo: null }</code> as &quot;<code>foo: </code>&quot;), <a href="https://redirect.github.com/nodeca/js-yaml/issues/570">#570</a>.</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/nodeca/js-yaml/commit/9963d366dfbde0c69722452bcd40b41e7e4160a0"><code>9963d36</code></a> 3.14.2 released</li> <li><a href="https://github.com/nodeca/js-yaml/commit/10d3c8e70a6888543f5cdb656bb39f73e0ea77c1"><code>10d3c8e</code></a> dist rebuild</li> <li><a href="https://github.com/nodeca/js-yaml/commit/5278870a17454fe8621dbd8c445c412529525266"><code>5278870</code></a> fix prototype pollution in merge (&lt;&lt;) (<a href="https://redirect.github.com/nodeca/js-yaml/issues/731">#731</a>)</li> <li>See full diff in <a href="https://github.com/nodeca/js-yaml/compare/3.14.1...3.14.2">compare view</a></li> </ul> </details> <br /> Updates `coveralls` from 2.13.3 to 3.1.1 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/nickmerwin/node-coveralls/releases">coveralls's releases</a>.</em></p> <blockquote> <h2>Maintenance / Security updates</h2> <ul> <li>swapped <code>exec</code> for <code>execFile</code>. Credit: Adar Zandberg from the CxSCA AppSec team at Checkmarx.</li> <li>updated <code>devDependencies</code></li> <li>merged Dependabot PRs</li> </ul> <h2>Improved CircleCI / Travis parallelism support</h2> <ul> <li>Handle <code>service_job_number</code> for parallelism in Travis and CircleCI (<a href="https://redirect.github.com/nickmerwin/node-coveralls/issues/290">#290</a>) 705c3b5</li> <li>Update sinon to v7.5.0. (<a href="https://redirect.github.com/nickmerwin/node-coveralls/issues/288">#288</a>) eb6dc35</li> </ul> <p><a href="https://github.com/nickmerwin/node-coveralls/compare/v3.0.14...v3.1.0">https://github.com/nickmerwin/node-coveralls/compare/v3.0.14...v3.1.0</a></p> <hr /> <p>This is a <code>minor</code> release due to the change in behavior for CircleCI, which now uses the Workflow ID to merge parallel coverage jobs:</p> <pre lang="javascript"><code> options.service_number = process.env.CIRCLE_WORKFLOW_ID; options.service_job_number = process.env.CIRCLE_BUILD_NUM; </code></pre> <h2>Maintenance</h2> <ul> <li>Update safe dependencies and fix npm vulnerabilities (<a href="https://redirect.github.com/nickmerwin/node-coveralls/issues/284">#284</a>) 59a57e2</li> <li>Move fixtures to test/fixtures. (<a href="https://redirect.github.com/nickmerwin/node-coveralls/issues/286">#286</a>) a0c6941 <a href="https://github.com/XhmikosR"><code>@​XhmikosR</code></a></li> <li>GH Action workflow update (<a href="https://redirect.github.com/nickmerwin/node-coveralls/issues/287">#287</a>) 1615297</li> <li>Minor lint tweaks (<a href="https://redirect.github.com/nickmerwin/node-coveralls/issues/285">#285</a>) 3647673 <a href="https://github.com/XhmikosR"><code>@​XhmikosR</code></a></li> <li>remove redundant code (<a href="https://redirect.github.com/nickmerwin/node-coveralls/issues/283">#283</a>) ff21930 <a href="https://github.com/lpinca"><code>@​lpinca</code></a></li> </ul> <h2>Maintenance release</h2> <p>No release notes provided.</p> <h2>COVERALLS_SERVICE_NUMBER environment variable support</h2> <h1>Improved:</h1> <ul> <li>If COVERALLS_SERVICE_NUMBER is set, set service_number from it. (<a href="https://github.com/midgleyc"><code>@​midgleyc</code></a>)</li> </ul> <h2>CodeFresh support, Maintenance</h2> <h1>Added:</h1> <ul> <li>CodeFresh support (<a href="https://github.com/suda"><code>@​suda</code></a>)</li> </ul> <h1>Improved:</h1> <ul> <li>Travis Pro repo token handling (<a href="https://github.com/benpetty"><code>@​benpetty</code></a> <a href="https://github.com/derekherman"><code>@​derekherman</code></a>)</li> <li>Readme Jest example re: posting on success only (<a href="https://github.com/AndreMiras"><code>@​AndreMiras</code></a>)</li> </ul> <h1>Updated:</h1> <ul> <li>minimist version (<a href="https://github.com/ashishkujoy"><code>@​ashishkujoy</code></a>)</li> <li>GitHub CI actions checkout v2 (<a href="https://github.com/XhmikosR"><code>@​XhmikosR</code></a>)</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/nickmerwin/node-coveralls/commits/3.1.1">compare view</a></li> </ul> </details> <br /> 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 show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@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) You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/gucheen/fetchql/network/alerts). </details>
coveralls commented 2025-11-22 05:50:47 +08:00 (Migrated from github.com)

Coverage Status

coverage: 86.826%. remained the same
when pulling 1957888bde on dependabot/npm_and_yarn/multi-e0dc7bf2fa
into a347e05f61 on master.

[![Coverage Status](https://coveralls.io/builds/76612666/badge)](https://coveralls.io/builds/76612666) coverage: 86.826%. remained the same when pulling **1957888bdee7be67849c16a7b63250aa552bce7a on dependabot/npm_and_yarn/multi-e0dc7bf2fa** into **a347e05f61f84310e7f44cd6499c7f8dac28ea63 on master**.
This pull request can be merged automatically.
You are not authorized to merge this pull request.
View command line instructions

Checkout

From your project repository, check out a new branch and test the changes.
git fetch -u origin dependabot/npm_and_yarn/multi-e0dc7bf2fa:dependabot/npm_and_yarn/multi-e0dc7bf2fa
git switch dependabot/npm_and_yarn/multi-e0dc7bf2fa

Merge

Merge the changes and update on Forgejo.

Warning: The "Autodetect manual merge" setting is not enabled for this repository, you will have to mark this pull request as manually merged afterwards.

git switch master
git merge --no-ff dependabot/npm_and_yarn/multi-e0dc7bf2fa
git switch dependabot/npm_and_yarn/multi-e0dc7bf2fa
git rebase master
git switch master
git merge --ff-only dependabot/npm_and_yarn/multi-e0dc7bf2fa
git switch dependabot/npm_and_yarn/multi-e0dc7bf2fa
git rebase master
git switch master
git merge --no-ff dependabot/npm_and_yarn/multi-e0dc7bf2fa
git switch master
git merge --squash dependabot/npm_and_yarn/multi-e0dc7bf2fa
git switch master
git merge --ff-only dependabot/npm_and_yarn/multi-e0dc7bf2fa
git switch master
git merge dependabot/npm_and_yarn/multi-e0dc7bf2fa
git push origin master
Sign in to join this conversation.
No reviewers
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
gucheen/fetchql!38
No description provided.