Bump json5 and style-loader #47

Closed
dependabot[bot] wants to merge 1 commits from dependabot/npm_and_yarn/json5-and-style-loader-2.2.3 into master
dependabot[bot] commented 2023-01-02 09:58:26 +00:00 (Migrated from github.com)

Bumps json5 to 2.2.3 and updates ancestor dependency style-loader. These dependencies need to be updated together.

Updates json5 from 2.2.1 to 2.2.3

Release notes

Sourced from json5's releases.

v2.2.3

  • Fix: json5@2.2.3 is now the 'latest' release according to npm instead of v1.0.2. (#299)

v2.2.2

  • Fix: Properties with the name __proto__ are added to objects and arrays. (#199) This also fixes a prototype pollution vulnerability reported by Jonathan Gregson! (#295).
Changelog

Sourced from json5's changelog.

v2.2.3 [code, diff]

  • Fix: json5@2.2.3 is now the 'latest' release according to npm instead of v1.0.2. (#299)

v2.2.2 [code, diff]

  • Fix: Properties with the name __proto__ are added to objects and arrays. (#199) This also fixes a prototype pollution vulnerability reported by Jonathan Gregson! (#295).
Commits
  • c3a7524 2.2.3
  • 94fd06d docs: update CHANGELOG for v2.2.3
  • 3b8cebf docs(security): use GitHub security advisories
  • f0fd9e1 docs: publish a security policy
  • 6a91a05 docs(template): bug -> bug report
  • 14f8cb1 2.2.2
  • 10cc7ca docs: update CHANGELOG for v2.2.2
  • 7774c10 fix: add proto to objects and arrays
  • edde30a Readme: slight tweak to intro
  • 97286f8 Improve example in readme
  • Additional commits viewable in compare view

Updates style-loader from 0.23.1 to 3.3.1

Release notes

Sourced from style-loader's releases.

v3.3.1

3.3.1 (2021-10-21)

Bug Fixes

v3.3.0

3.3.0 (2021-09-21)

Features

  • added support for supports(), layer() and media from @import at-rules (b9a600c)
  • allow to pass options to insert function through style.use() (#535) (f8ef63b)

v3.2.1

3.2.1 (2021-07-20)

Bug Fixes

  • added the styletagtransform option when it is a module to addBuildDependency (#528) (270513f)

v3.2.0

3.2.0 (2021-07-20)

Features

Bug Fixes

  • added the insert option when it is a module to addBuildDependency (#527) (3963c0b)

v3.1.0

3.1.0 (2021-07-12)

Features

  • allow to specify the insert option from file, we strongly recommend do it, using the insert option from file will reduce your bundle size, example (#521) (56fc8f0)
  • allow to specify the styleTagTransform option from file, we strongly recommend do it, using the styleTagTransform option from file will reduce your bundle size, example

Bug Fixes

... (truncated)

Changelog

Sourced from style-loader's changelog.

3.3.1 (2021-10-21)

Bug Fixes

3.3.0 (2021-09-21)

Features

  • added support for supports(), layer() and media from @import at-rules (b9a600c)
  • allow to pass options to insert function through style.use() (#535) (f8ef63b)

3.2.1 (2021-07-20)

Bug Fixes

  • added the styletagtransform option when it is a module to addBuildDependency (#528) (270513f)

3.2.0 (2021-07-20)

Features

Bug Fixes

  • added the insert option when it is a module to addBuildDependency (#527) (3963c0b)

3.1.0 (2021-07-12)

Features

  • allow to specify the insert option from file, we strongly recommend do it, using the insert option from file will reduce your bundle size, example (#521) (56fc8f0)
  • allow to specify the styleTagTransform option from file, we strongly recommend do it, using the styleTagTransform option from file will reduce your bundle size, example

Bug Fixes

3.0.0 (2021-06-24)

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by evilebottnawi, a new releaser for style-loader since your current version.


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 use these labels will set the current labels as the default for future PRs for this repo and language
  • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
  • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
  • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language

You can disable automated security fix PRs for this repo from the Security Alerts page.

Bumps [json5](https://github.com/json5/json5) to 2.2.3 and updates ancestor dependency [style-loader](https://github.com/webpack-contrib/style-loader). These dependencies need to be updated together. Updates `json5` from 2.2.1 to 2.2.3 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/json5/json5/releases">json5's releases</a>.</em></p> <blockquote> <h2>v2.2.3</h2> <ul> <li>Fix: json5@2.2.3 is now the 'latest' release according to npm instead of v1.0.2. (<a href="https://github-redirect.dependabot.com/json5/json5/issues/299">#299</a>)</li> </ul> <h2>v2.2.2</h2> <ul> <li>Fix: Properties with the name <code>__proto__</code> are added to objects and arrays. (<a href="https://github-redirect.dependabot.com/json5/json5/issues/199">#199</a>) This also fixes a prototype pollution vulnerability reported by Jonathan Gregson! (<a href="https://github-redirect.dependabot.com/json5/json5/issues/295">#295</a>).</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/json5/json5/blob/main/CHANGELOG.md">json5's changelog</a>.</em></p> <blockquote> <h3>v2.2.3 [<a href="https://github.com/json5/json5/tree/v2.2.3">code</a>, <a href="https://github.com/json5/json5/compare/v2.2.2...v2.2.3">diff</a>]</h3> <ul> <li>Fix: json5@2.2.3 is now the 'latest' release according to npm instead of v1.0.2. (<a href="https://github-redirect.dependabot.com/json5/json5/issues/299">#299</a>)</li> </ul> <h3>v2.2.2 [<a href="https://github.com/json5/json5/tree/v2.2.2">code</a>, <a href="https://github.com/json5/json5/compare/v2.2.1...v2.2.2">diff</a>]</h3> <ul> <li>Fix: Properties with the name <code>__proto__</code> are added to objects and arrays. (<a href="https://github-redirect.dependabot.com/json5/json5/issues/199">#199</a>) This also fixes a prototype pollution vulnerability reported by Jonathan Gregson! (<a href="https://github-redirect.dependabot.com/json5/json5/issues/295">#295</a>).</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/json5/json5/commit/c3a75242772a5026a49c4017a16d9b3543b62776"><code>c3a7524</code></a> 2.2.3</li> <li><a href="https://github.com/json5/json5/commit/94fd06d82eeed225fa172f6fb2ca27375cbd2e39"><code>94fd06d</code></a> docs: update CHANGELOG for v2.2.3</li> <li><a href="https://github.com/json5/json5/commit/3b8cebf0c474a8b20c78bd75c89cca0c4dce84ce"><code>3b8cebf</code></a> docs(security): use GitHub security advisories</li> <li><a href="https://github.com/json5/json5/commit/f0fd9e194dde282caff114a110f4fac635f3a62c"><code>f0fd9e1</code></a> docs: publish a security policy</li> <li><a href="https://github.com/json5/json5/commit/6a91a05fffeda16ff6b3b5008b6b340d42d31ec0"><code>6a91a05</code></a> docs(template): bug -&gt; bug report</li> <li><a href="https://github.com/json5/json5/commit/14f8cb186e8abdfaccf6527171da7b1224374650"><code>14f8cb1</code></a> 2.2.2</li> <li><a href="https://github.com/json5/json5/commit/10cc7ca9169b59c5e0f5afc03dbd870cd06bcc46"><code>10cc7ca</code></a> docs: update CHANGELOG for v2.2.2</li> <li><a href="https://github.com/json5/json5/commit/7774c1097993bc3ce9f0ac4b722a32bf7d6871c8"><code>7774c10</code></a> fix: add <strong>proto</strong> to objects and arrays</li> <li><a href="https://github.com/json5/json5/commit/edde30abd8b22facf2c06c72586b9f6edf12700d"><code>edde30a</code></a> Readme: slight tweak to intro</li> <li><a href="https://github.com/json5/json5/commit/97286f8bd542c89dcee096bc05dd28ed2dfc1e16"><code>97286f8</code></a> Improve example in readme</li> <li>Additional commits viewable in <a href="https://github.com/json5/json5/compare/v2.2.1...v2.2.3">compare view</a></li> </ul> </details> <br /> Updates `style-loader` from 0.23.1 to 3.3.1 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/webpack-contrib/style-loader/releases">style-loader's releases</a>.</em></p> <blockquote> <h2>v3.3.1</h2> <h3><a href="https://github.com/webpack-contrib/style-loader/compare/v3.3.0...v3.3.1">3.3.1</a> (2021-10-21)</h3> <h3>Bug Fixes</h3> <ul> <li>small perf improvement (<a href="https://github-redirect.dependabot.com/webpack-contrib/style-loader/issues/544">#544</a>) (<a href="https://github.com/webpack-contrib/style-loader/commit/610524ef6266c27e147d3c0003e7825b08f17454">610524e</a>)</li> </ul> <h2>v3.3.0</h2> <h2><a href="https://github.com/webpack-contrib/style-loader/compare/v3.2.1...v3.3.0">3.3.0</a> (2021-09-21)</h2> <h3>Features</h3> <ul> <li>added support for <code>supports()</code>, <code>layer()</code> and <code>media</code> from <code>@import</code> at-rules (<a href="https://github.com/webpack-contrib/style-loader/commit/b9a600c87aa3f68caabcaa80f0a1c340e739e30e">b9a600c</a>)</li> <li>allow to pass options to <code>insert</code> function through <code>style.use()</code> (<a href="https://github-redirect.dependabot.com/webpack-contrib/style-loader/issues/535">#535</a>) (<a href="https://github.com/webpack-contrib/style-loader/commit/f8ef63b86a603232395f7708c508d6c3b639e92d">f8ef63b</a>)</li> </ul> <h2>v3.2.1</h2> <h3><a href="https://github.com/webpack-contrib/style-loader/compare/v3.2.0...v3.2.1">3.2.1</a> (2021-07-20)</h3> <h3>Bug Fixes</h3> <ul> <li>added the <code>styletagtransform</code> option when it is a module to <code>addBuildDependency</code> (<a href="https://github-redirect.dependabot.com/webpack-contrib/style-loader/issues/528">#528</a>) (<a href="https://github.com/webpack-contrib/style-loader/commit/270513fa76e13c96a36c2ae11e4dd526dfb9d72f">270513f</a>)</li> </ul> <h2>v3.2.0</h2> <h2><a href="https://github.com/webpack-contrib/style-loader/compare/v3.1.0...v3.2.0">3.2.0</a> (2021-07-20)</h2> <h3>Features</h3> <ul> <li>add link field in schema (<a href="https://github-redirect.dependabot.com/webpack-contrib/style-loader/issues/525">#525</a>) (<a href="https://github.com/webpack-contrib/style-loader/commit/7ed345678cc1d01e3a93bf18ca2014d7b5419481">7ed3456</a>)</li> </ul> <h3>Bug Fixes</h3> <ul> <li>added the <code>insert</code> option when it is a module to <code>addBuildDependency</code> (<a href="https://github-redirect.dependabot.com/webpack-contrib/style-loader/issues/527">#527</a>) (<a href="https://github.com/webpack-contrib/style-loader/commit/3963c0bae298112754d8cc3fd1536499cefa65a6">3963c0b</a>)</li> </ul> <h2>v3.1.0</h2> <h2><a href="https://github.com/webpack-contrib/style-loader/compare/v3.0.0...v3.1.0">3.1.0</a> (2021-07-12)</h2> <h3>Features</h3> <ul> <li>allow to specify the <code>insert</code> option from file, we strongly recommend do it, using the <code>insert</code> option from file will reduce your bundle size, <a href="https://github.com/webpack-contrib/style-loader#absolute-path-to-function">example</a> (<a href="https://github-redirect.dependabot.com/webpack-contrib/style-loader/issues/521">#521</a>) (<a href="https://github.com/webpack-contrib/style-loader/commit/56fc8f021c69407e4ad03a5d345c614b04789389">56fc8f0</a>)</li> <li>allow to specify the <code>styleTagTransform</code> option from file, we strongly recommend do it, using the <code>styleTagTransform</code> option from file will reduce your bundle size, <a href="https://github.com/webpack-contrib/style-loader#string-1">example</a></li> </ul> <h3>Bug Fixes</h3> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/webpack-contrib/style-loader/blob/master/CHANGELOG.md">style-loader's changelog</a>.</em></p> <blockquote> <h3><a href="https://github.com/webpack-contrib/style-loader/compare/v3.3.0...v3.3.1">3.3.1</a> (2021-10-21)</h3> <h3>Bug Fixes</h3> <ul> <li>small perf improvement (<a href="https://github-redirect.dependabot.com/webpack-contrib/style-loader/issues/544">#544</a>) (<a href="https://github.com/webpack-contrib/style-loader/commit/610524ef6266c27e147d3c0003e7825b08f17454">610524e</a>)</li> </ul> <h2><a href="https://github.com/webpack-contrib/style-loader/compare/v3.2.1...v3.3.0">3.3.0</a> (2021-09-21)</h2> <h3>Features</h3> <ul> <li>added support for <code>supports()</code>, <code>layer()</code> and <code>media</code> from <code>@import</code> at-rules (<a href="https://github.com/webpack-contrib/style-loader/commit/b9a600c87aa3f68caabcaa80f0a1c340e739e30e">b9a600c</a>)</li> <li>allow to pass options to <code>insert</code> function through <code>style.use()</code> (<a href="https://github-redirect.dependabot.com/webpack-contrib/style-loader/issues/535">#535</a>) (<a href="https://github.com/webpack-contrib/style-loader/commit/f8ef63b86a603232395f7708c508d6c3b639e92d">f8ef63b</a>)</li> </ul> <h3><a href="https://github.com/webpack-contrib/style-loader/compare/v3.2.0...v3.2.1">3.2.1</a> (2021-07-20)</h3> <h3>Bug Fixes</h3> <ul> <li>added the <code>styletagtransform</code> option when it is a module to <code>addBuildDependency</code> (<a href="https://github-redirect.dependabot.com/webpack-contrib/style-loader/issues/528">#528</a>) (<a href="https://github.com/webpack-contrib/style-loader/commit/270513fa76e13c96a36c2ae11e4dd526dfb9d72f">270513f</a>)</li> </ul> <h2><a href="https://github.com/webpack-contrib/style-loader/compare/v3.1.0...v3.2.0">3.2.0</a> (2021-07-20)</h2> <h3>Features</h3> <ul> <li>add link field in schema (<a href="https://github-redirect.dependabot.com/webpack-contrib/style-loader/issues/525">#525</a>) (<a href="https://github.com/webpack-contrib/style-loader/commit/7ed345678cc1d01e3a93bf18ca2014d7b5419481">7ed3456</a>)</li> </ul> <h3>Bug Fixes</h3> <ul> <li>added the <code>insert</code> option when it is a module to <code>addBuildDependency</code> (<a href="https://github-redirect.dependabot.com/webpack-contrib/style-loader/issues/527">#527</a>) (<a href="https://github.com/webpack-contrib/style-loader/commit/3963c0bae298112754d8cc3fd1536499cefa65a6">3963c0b</a>)</li> </ul> <h2><a href="https://github.com/webpack-contrib/style-loader/compare/v3.0.0...v3.1.0">3.1.0</a> (2021-07-12)</h2> <h3>Features</h3> <ul> <li>allow to specify the <code>insert</code> option from file, we strongly recommend do it, using the <code>insert</code> option from file will reduce your bundle size, <a href="https://github.com/webpack-contrib/style-loader#absolute-path-to-function">example</a> (<a href="https://github-redirect.dependabot.com/webpack-contrib/style-loader/issues/521">#521</a>) (<a href="https://github.com/webpack-contrib/style-loader/commit/56fc8f021c69407e4ad03a5d345c614b04789389">56fc8f0</a>)</li> <li>allow to specify the <code>styleTagTransform</code> option from file, we strongly recommend do it, using the <code>styleTagTransform</code> option from file will reduce your bundle size, <a href="https://github.com/webpack-contrib/style-loader#string-1">example</a></li> </ul> <h3>Bug Fixes</h3> <ul> <li>reduce runtime (<a href="https://github-redirect.dependabot.com/webpack-contrib/style-loader/issues/519">#519</a>) (<a href="https://github.com/webpack-contrib/style-loader/commit/8a26186c364b45028fb6baeb4a05365c4d3526e2">8a26186</a>)</li> <li>reduce runtime when you use custom options (<a href="https://github-redirect.dependabot.com/webpack-contrib/style-loader/issues/520">#520</a>) (<a href="https://github.com/webpack-contrib/style-loader/commit/21c80c8c2f2ca751124f26f5984195e20f2ac665">21c80c8</a>)</li> </ul> <h2><a href="https://github.com/webpack-contrib/style-loader/compare/v2.0.0...v3.0.0">3.0.0</a> (2021-06-24)</h2> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/webpack-contrib/style-loader/commit/46634166f2ace8894ba6ec1e464832325db29fb9"><code>4663416</code></a> chore(release): 3.3.1</li> <li><a href="https://github.com/webpack-contrib/style-loader/commit/610524ef6266c27e147d3c0003e7825b08f17454"><code>610524e</code></a> fix: small perf improvement (<a href="https://github-redirect.dependabot.com/webpack-contrib/style-loader/issues/544">#544</a>)</li> <li><a href="https://github.com/webpack-contrib/style-loader/commit/c799ecc82cd389a1354f692c6bd9829c9a5250c3"><code>c799ecc</code></a> chore(release): 3.3.0</li> <li><a href="https://github.com/webpack-contrib/style-loader/commit/b47718a4f6d452c06af0a0ae847d55aeab713b13"><code>b47718a</code></a> test: update (<a href="https://github-redirect.dependabot.com/webpack-contrib/style-loader/issues/542">#542</a>)</li> <li><a href="https://github.com/webpack-contrib/style-loader/commit/43bede4415c5ccb4680d558725e0066f715aa175"><code>43bede4</code></a> refactor: code (<a href="https://github-redirect.dependabot.com/webpack-contrib/style-loader/issues/541">#541</a>)</li> <li><a href="https://github.com/webpack-contrib/style-loader/commit/b9a600c87aa3f68caabcaa80f0a1c340e739e30e"><code>b9a600c</code></a> feat: added support for <code>@supports</code>, <code>@layer</code> and <code>@media</code> from <code>@import</code> at-...</li> <li><a href="https://github.com/webpack-contrib/style-loader/commit/74fa1cfde01857da0e7b3b019f57d298ba1f92c9"><code>74fa1cf</code></a> chore(deps): update (<a href="https://github-redirect.dependabot.com/webpack-contrib/style-loader/issues/539">#539</a>)</li> <li><a href="https://github.com/webpack-contrib/style-loader/commit/cdf0ba79f0214973ce0efb5d19c75b0993e36582"><code>cdf0ba7</code></a> refactor: code</li> <li><a href="https://github.com/webpack-contrib/style-loader/commit/caf66a09f36e6d9eb388d22f760e2779d9639ef6"><code>caf66a0</code></a> chore(deps): update</li> <li><a href="https://github.com/webpack-contrib/style-loader/commit/f8ef63b86a603232395f7708c508d6c3b639e92d"><code>f8ef63b</code></a> feat: allow to pass options to <code>insert</code> function through <code>style.use()</code> (<a href="https://github-redirect.dependabot.com/webpack-contrib/style-loader/issues/535">#535</a>)</li> <li>Additional commits viewable in <a href="https://github.com/webpack-contrib/style-loader/compare/v0.23.1...v3.3.1">compare view</a></li> </ul> </details> <details> <summary>Maintainer changes</summary> <p>This version was pushed to npm by <a href="https://www.npmjs.com/~evilebottnawi">evilebottnawi</a>, a new releaser for style-loader since your current version.</p> </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 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 use these labels` will set the current labels as the default for future PRs for this repo and language - `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language - `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language - `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/Sarsoo/Mixonomer/network/alerts). </details>
dependabot[bot] commented 2023-01-06 21:43:45 +00:00 (Migrated from github.com)

Looks like these dependencies are no longer a dependency, so this is no longer needed.

Looks like these dependencies are no longer a dependency, so this is no longer needed.

Pull request closed

Sign in to join this conversation.
No description provided.