Bump qs and browser-sync #25

Merged
dependabot[bot] merged 1 commits from dependabot/npm_and_yarn/qs-and-browser-sync-6.5.3 into dev 2023-09-02 12:50:35 +02:00
dependabot[bot] commented 2023-09-02 12:47:57 +02:00 (Migrated from github.com)

Bumps qs to 6.5.3 and updates ancestor dependency browser-sync. These dependencies need to be updated together.

Updates qs from 6.5.2 to 6.5.3

Changelog

Sourced from qs's changelog.

6.5.3

  • [Fix] parse: ignore __proto__ keys (#428)
  • [Fix] utils.merge: avoid a crash with a null target and a truthy non-array source
  • [Fix] correctly parse nested arrays
  • [Fix] stringify: fix a crash with strictNullHandling and a custom filter/serializeDate (#279)
  • [Fix] utils: merge: fix crash when source is a truthy primitive & no options are provided
  • [Fix] when parseArrays is false, properly handle keys ending in []
  • [Fix] fix for an impossible situation: when the formatter is called with a non-string value
  • [Fix] utils.merge: avoid a crash with a null target and an array source
  • [Refactor] utils: reduce observable Gets
  • [Refactor] use cached Array.isArray
  • [Refactor] stringify: Avoid arr = arr.concat(...), push to the existing instance (#269)
  • [Refactor] parse: only need to reassign the var once
  • [Robustness] stringify: avoid relying on a global undefined (#427)
  • [readme] remove travis badge; add github actions/codecov badges; update URLs
  • [Docs] Clean up license text so it’s properly detected as BSD-3-Clause
  • [Docs] Clarify the need for "arrayLimit" option
  • [meta] fix README.md (#399)
  • [meta] add FUNDING.yml
  • [actions] backport actions from main
  • [Tests] always use String(x) over x.toString()
  • [Tests] remove nonexistent tape option
  • [Dev Deps] backport from main
Commits
  • 298bfa5 v6.5.3
  • ed0f5dc [Fix] parse: ignore __proto__ keys (#428)
  • 691e739 [Robustness] stringify: avoid relying on a global undefined (#427)
  • 1072d57 [readme] remove travis badge; add github actions/codecov badges; update URLs
  • 12ac1c4 [meta] fix README.md (#399)
  • 0338716 [actions] backport actions from main
  • 5639c20 Clean up license text so it’s properly detected as BSD-3-Clause
  • 51b8a0b add FUNDING.yml
  • 45f6759 [Fix] fix for an impossible situation: when the formatter is called with a no...
  • f814a7f [Dev Deps] backport from main
  • Additional commits viewable in compare view

Updates browser-sync from 2.26.7 to 2.29.3

Release notes

Sourced from browser-sync's releases.

The one that fixes snippetOptions

What's Changed

Full Changelog: https://github.com/BrowserSync/browser-sync/compare/v2.29.2...v2.29.3

v2.29.1

What's Changed

Full Changelog: https://github.com/BrowserSync/browser-sync/compare/v2.29.0...v2.29.1

The one that restores IE11 support 💪

What's Changed

esbuild does not support down-level transpiling as far as IE11 - so when I switched to it, it accidentally broke IE11 support 😢

This is an important issue for me - many devs that support old browsers like IE11 are doing so because their projects are used in public services, or internal applications. Not every developer out there has the luxury of supporting evergreen-only browsers.

So, IE11 will work once again 🎉. Please use the issues thread to make me aware of any problem that's preventing you from using Browsersync in your day job 💪 (and be sure to thumbs-up the issues you want to see resolved)

# IE11 works, again
npm install browser-sync@latest

Full Changelog: https://github.com/BrowserSync/browser-sync/compare/v2.28.3...v2.29.0

the one that finally removes document.write

What's Changed

Full Changelog: https://github.com/BrowserSync/browser-sync/compare/v2.27.12...v2.28.0

2.27.9

What's Changed

A bug prevented the help output from displaying - it was introduced when the CLI parser yargs was updated, and is now fixed :)

Full Changelog: https://github.com/BrowserSync/browser-sync/compare/v2.27.8...v2.27.9

... (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 [qs](https://github.com/ljharb/qs) to 6.5.3 and updates ancestor dependency [browser-sync](https://github.com/BrowserSync/browser-sync). These dependencies need to be updated together. Updates `qs` from 6.5.2 to 6.5.3 <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/ljharb/qs/blob/main/CHANGELOG.md">qs's changelog</a>.</em></p> <blockquote> <h2><strong>6.5.3</strong></h2> <ul> <li>[Fix] <code>parse</code>: ignore <code>__proto__</code> keys (<a href="https://redirect.github.com/ljharb/qs/issues/428">#428</a>)</li> <li>[Fix] <code>utils.merge</code>: avoid a crash with a null target and a truthy non-array source</li> <li>[Fix] correctly parse nested arrays</li> <li>[Fix] <code>stringify</code>: fix a crash with <code>strictNullHandling</code> and a custom <code>filter</code>/<code>serializeDate</code> (<a href="https://redirect.github.com/ljharb/qs/issues/279">#279</a>)</li> <li>[Fix] <code>utils</code>: <code>merge</code>: fix crash when <code>source</code> is a truthy primitive &amp; no options are provided</li> <li>[Fix] when <code>parseArrays</code> is false, properly handle keys ending in <code>[]</code></li> <li>[Fix] fix for an impossible situation: when the formatter is called with a non-string value</li> <li>[Fix] <code>utils.merge</code>: avoid a crash with a null target and an array source</li> <li>[Refactor] <code>utils</code>: reduce observable [[Get]]s</li> <li>[Refactor] use cached <code>Array.isArray</code></li> <li>[Refactor] <code>stringify</code>: Avoid arr = arr.concat(...), push to the existing instance (<a href="https://redirect.github.com/ljharb/qs/issues/269">#269</a>)</li> <li>[Refactor] <code>parse</code>: only need to reassign the var once</li> <li>[Robustness] <code>stringify</code>: avoid relying on a global <code>undefined</code> (<a href="https://redirect.github.com/ljharb/qs/issues/427">#427</a>)</li> <li>[readme] remove travis badge; add github actions/codecov badges; update URLs</li> <li>[Docs] Clean up license text so it’s properly detected as BSD-3-Clause</li> <li>[Docs] Clarify the need for &quot;arrayLimit&quot; option</li> <li>[meta] fix README.md (<a href="https://redirect.github.com/ljharb/qs/issues/399">#399</a>)</li> <li>[meta] add FUNDING.yml</li> <li>[actions] backport actions from main</li> <li>[Tests] always use <code>String(x)</code> over <code>x.toString()</code></li> <li>[Tests] remove nonexistent tape option</li> <li>[Dev Deps] backport from main</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/ljharb/qs/commit/298bfa55d6db00ddea78dd0333509aadf9bb3077"><code>298bfa5</code></a> v6.5.3</li> <li><a href="https://github.com/ljharb/qs/commit/ed0f5dcbef4b168a8ae299d78b1e4a2e9b1baf1f"><code>ed0f5dc</code></a> [Fix] <code>parse</code>: ignore <code>__proto__</code> keys (<a href="https://redirect.github.com/ljharb/qs/issues/428">#428</a>)</li> <li><a href="https://github.com/ljharb/qs/commit/691e739cfa40cd42604dc05a54e6154371a429ab"><code>691e739</code></a> [Robustness] <code>stringify</code>: avoid relying on a global <code>undefined</code> (<a href="https://redirect.github.com/ljharb/qs/issues/427">#427</a>)</li> <li><a href="https://github.com/ljharb/qs/commit/1072d57d38a690e1ad7616dced44390bffedcbb2"><code>1072d57</code></a> [readme] remove travis badge; add github actions/codecov badges; update URLs</li> <li><a href="https://github.com/ljharb/qs/commit/12ac1c403aaa04d1a34844f514ed9f9abfb76e64"><code>12ac1c4</code></a> [meta] fix README.md (<a href="https://redirect.github.com/ljharb/qs/issues/399">#399</a>)</li> <li><a href="https://github.com/ljharb/qs/commit/0338716b09fdbd4711823eeb0a14e556a2498e7a"><code>0338716</code></a> [actions] backport actions from main</li> <li><a href="https://github.com/ljharb/qs/commit/5639c20ce0a7c1332200a3181339331483e5a3a1"><code>5639c20</code></a> Clean up license text so it’s properly detected as BSD-3-Clause</li> <li><a href="https://github.com/ljharb/qs/commit/51b8a0b1b213596dd1702b837f5e7dec2229793d"><code>51b8a0b</code></a> add FUNDING.yml</li> <li><a href="https://github.com/ljharb/qs/commit/45f675936e742d92fac8d4dae5cfc385c576a977"><code>45f6759</code></a> [Fix] fix for an impossible situation: when the formatter is called with a no...</li> <li><a href="https://github.com/ljharb/qs/commit/f814a7f8f2af059f8158f7e4b2bf8b46aeb62cd3"><code>f814a7f</code></a> [Dev Deps] backport from main</li> <li>Additional commits viewable in <a href="https://github.com/ljharb/qs/compare/v6.5.2...v6.5.3">compare view</a></li> </ul> </details> <br /> Updates `browser-sync` from 2.26.7 to 2.29.3 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/BrowserSync/browser-sync/releases">browser-sync's releases</a>.</em></p> <blockquote> <h2>The one that fixes snippetOptions</h2> <h2>What's Changed</h2> <ul> <li>fix: append to head if body not present yet - fixes <a href="https://redirect.github.com/BrowserSync/browser-sync/issues/2031">#2031</a> by <a href="https://github.com/shakyShane"><code>@​shakyShane</code></a> in <a href="https://redirect.github.com/BrowserSync/browser-sync/pull/2041">BrowserSync/browser-sync#2041</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/BrowserSync/browser-sync/compare/v2.29.2...v2.29.3">https://github.com/BrowserSync/browser-sync/compare/v2.29.2...v2.29.3</a></p> <h2>v2.29.1</h2> <h2>What's Changed</h2> <ul> <li>trim-deps by <a href="https://github.com/shakyShane"><code>@​shakyShane</code></a> in <a href="https://redirect.github.com/BrowserSync/browser-sync/pull/2028">BrowserSync/browser-sync#2028</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/BrowserSync/browser-sync/compare/v2.29.0...v2.29.1">https://github.com/BrowserSync/browser-sync/compare/v2.29.0...v2.29.1</a></p> <h2>The one that restores IE11 support 💪</h2> <h2>What's Changed</h2> <ul> <li>fix ie11 by <a href="https://github.com/shakyShane"><code>@​shakyShane</code></a> in <a href="https://redirect.github.com/BrowserSync/browser-sync/pull/2024">BrowserSync/browser-sync#2024</a></li> </ul> <p><a href="https://esbuild.github.io/">esbuild</a> does not support down-level transpiling as far as IE11 - so when I switched to it, it accidentally broke <code>IE11</code> support 😢</p> <p>This is an important issue for me - many devs that support old browsers like IE11 are doing so because their projects are used in public services, or internal applications. Not every developer out there has the luxury of supporting evergreen-only browsers.</p> <p>So, IE11 will work once again 🎉. Please use the <a href="https://github.com/BrowserSync/browser-sync/issues">issues</a> thread to make me aware of any problem that's preventing you from using Browsersync in your day job 💪 (and be sure to thumbs-up the issues you want to see resolved)</p> <pre lang="shell"><code># IE11 works, again npm install browser-sync@latest </code></pre> <p><strong>Full Changelog</strong>: <a href="https://github.com/BrowserSync/browser-sync/compare/v2.28.3...v2.29.0">https://github.com/BrowserSync/browser-sync/compare/v2.28.3...v2.29.0</a></p> <h2>the one that finally removes <code>document.write</code></h2> <h2>What's Changed</h2> <ul> <li>browser-sync-2017 use chalk everywhere by <a href="https://github.com/shakyShane"><code>@​shakyShane</code></a> in <a href="https://redirect.github.com/BrowserSync/browser-sync/pull/2018">BrowserSync/browser-sync#2018</a></li> <li>fix: remove document.write by <a href="https://github.com/shakyShane"><code>@​shakyShane</code></a> in <a href="https://redirect.github.com/BrowserSync/browser-sync/pull/2019">BrowserSync/browser-sync#2019</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/BrowserSync/browser-sync/compare/v2.27.12...v2.28.0">https://github.com/BrowserSync/browser-sync/compare/v2.27.12...v2.28.0</a></p> <h2>2.27.9</h2> <h2>What's Changed</h2> <ul> <li>fix(cli): Where's the command help? fixes <a href="https://redirect.github.com/BrowserSync/browser-sync/issues/1929">#1929</a> by <a href="https://github.com/shakyShane"><code>@​shakyShane</code></a> in <a href="https://redirect.github.com/BrowserSync/browser-sync/pull/1945">BrowserSync/browser-sync#1945</a></li> </ul> <p>A bug prevented the help output from displaying - it was introduced when the CLI parser <code>yargs</code> was updated, and is now fixed :)</p> <p><strong>Full Changelog</strong>: <a href="https://github.com/BrowserSync/browser-sync/compare/v2.27.8...v2.27.9">https://github.com/BrowserSync/browser-sync/compare/v2.27.8...v2.27.9</a></p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/BrowserSync/browser-sync/commit/02efdff2f6cf2991b87f8e8eaf7bbd21559fa612"><code>02efdff</code></a> v2.29.3</li> <li><a href="https://github.com/BrowserSync/browser-sync/commit/62d906e6abde0c251550a598e159c67d53e287a4"><code>62d906e</code></a> fix: append to head if body not present yet - fixes <a href="https://redirect.github.com/BrowserSync/browser-sync/issues/2031">#2031</a> (<a href="https://redirect.github.com/BrowserSync/browser-sync/issues/2041">#2041</a>)</li> <li><a href="https://github.com/BrowserSync/browser-sync/commit/f91440e11f3357beb3ce86cd8fd2fd992b00acea"><code>f91440e</code></a> v2.29.2</li> <li><a href="https://github.com/BrowserSync/browser-sync/commit/d0c50e07c1e0329a631443734ac68743f129c8e7"><code>d0c50e0</code></a> deps: drop qs (<a href="https://redirect.github.com/BrowserSync/browser-sync/issues/2040">#2040</a>)</li> <li><a href="https://github.com/BrowserSync/browser-sync/commit/6ffc212cdb50da972e4ed434244a23a6bee56e50"><code>6ffc212</code></a> v2.29.1</li> <li><a href="https://github.com/BrowserSync/browser-sync/commit/7b077987ef887994b6d59054d28dfe8639358599"><code>7b07798</code></a> v2.29.1-alpha.0</li> <li><a href="https://github.com/BrowserSync/browser-sync/commit/497f2162df92ce4bd15a9d5af3e82325dd3cee21"><code>497f216</code></a> remove client deps</li> <li><a href="https://github.com/BrowserSync/browser-sync/commit/bed04d4f07d4d16b05af02fa86babc362b8531a2"><code>bed04d4</code></a> v2.29.0</li> <li><a href="https://github.com/BrowserSync/browser-sync/commit/87421b53df52a22b69f9d32306494f1e0d8c4011"><code>87421b5</code></a> fix: ie11 support (<a href="https://redirect.github.com/BrowserSync/browser-sync/issues/2024">#2024</a>)</li> <li><a href="https://github.com/BrowserSync/browser-sync/commit/59eb01ad5f5937d60832c97c40f97c31a8d4200d"><code>59eb01a</code></a> v2.28.3</li> <li>Additional commits viewable in <a href="https://github.com/BrowserSync/browser-sync/compare/v2.26.7...v2.29.3">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/thefeli73/schulzestudio/network/alerts). </details>
This repo is archived. You cannot comment on pull requests.
No description provided.