Skip to content

Commit

Permalink
chore(deps-dev): bump css-loader from 6.11.0 to 7.1.2 (#1015)
Browse files Browse the repository at this point in the history
Bumps [css-loader](https://github.com/webpack-contrib/css-loader) from
6.11.0 to 7.1.2.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/webpack-contrib/css-loader/releases">css-loader's
releases</a>.</em></p>
<blockquote>
<h2>v7.1.2</h2>
<h3><a
href="https://github.com/webpack-contrib/css-loader/compare/v7.1.1...v7.1.2">7.1.2</a>
(2024-05-22)</h3>
<h3>Bug Fixes</h3>
<ul>
<li>keep order of <code>@import</code>s with the
<code>webpackIgnore</code> comment (<a
href="https://redirect.github.com/webpack-contrib/css-loader/issues/1600">#1600</a>)
(<a
href="https://github.com/webpack-contrib/css-loader/commit/76757ef30ec37f88ccf9d8b82d8d84b7625c5d66">76757ef</a>)</li>
</ul>
<h2>v7.1.1</h2>
<h3><a
href="https://github.com/webpack-contrib/css-loader/compare/v7.1.0...v7.1.1">7.1.1</a>
(2024-04-10)</h3>
<h3>Bug Fixes</h3>
<ul>
<li>automatically rename class <code>default</code> to
<code>_default</code> when named export is enabled (<a
href="https://redirect.github.com/webpack-contrib/css-loader/issues/1590">#1590</a>)
(<a
href="https://github.com/webpack-contrib/css-loader/commit/d6c31a17a0dde3e2bcf2b5e55f913c3645d32868">d6c31a1</a>)</li>
</ul>
<h2>v7.1.0</h2>
<h2><a
href="https://github.com/webpack-contrib/css-loader/compare/v7.0.0...v7.1.0">7.1.0</a>
(2024-04-08)</h2>
<h3>Features</h3>
<ul>
<li>added the <code>getJSON</code> option to output CSS modules mapping
(<a
href="https://redirect.github.com/webpack-contrib/css-loader/issues/1577">#1577</a>)
(<a
href="https://github.com/webpack-contrib/css-loader/commit/af834b43b375f336108d74ff7bd9ed13bc79200a">af834b4</a>)</li>
</ul>
<h2>v7.0.0</h2>
<h2><a
href="https://github.com/webpack-contrib/css-loader/compare/v6.11.0...v7.0.0">7.0.0</a>
(2024-04-04)</h2>
<h3>⚠ BREAKING CHANGES</h3>
<ul>
<li>The <code>modules.namedExport</code> option is <code>true</code> by
default if you enable the <code>esModule</code> option</li>
</ul>
<p>Migration guide:</p>
<p>Before:</p>
<pre lang="js"><code>import style from &quot;./style.css&quot;;
<p>console.log(style.myClass);<br />
</code></pre></p>
<p>After:</p>
<pre lang="js"><code>import * as style from &quot;./style.css&quot;;
<p>console.log(style.myClass);<br />
</code></pre></p>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/webpack-contrib/css-loader/blob/master/CHANGELOG.md">css-loader's
changelog</a>.</em></p>
<blockquote>
<h3><a
href="https://github.com/webpack-contrib/css-loader/compare/v7.1.1...v7.1.2">7.1.2</a>
(2024-05-22)</h3>
<h3>Bug Fixes</h3>
<ul>
<li>keep order of <code>@import</code>s with the
<code>webpackIgnore</code> comment (<a
href="https://redirect.github.com/webpack-contrib/css-loader/issues/1600">#1600</a>)
(<a
href="https://github.com/webpack-contrib/css-loader/commit/76757ef30ec37f88ccf9d8b82d8d84b7625c5d66">76757ef</a>)</li>
</ul>
<h3><a
href="https://github.com/webpack-contrib/css-loader/compare/v7.1.0...v7.1.1">7.1.1</a>
(2024-04-10)</h3>
<h3>Bug Fixes</h3>
<ul>
<li>automatically rename class <code>default</code> to
<code>_default</code> when named export is enabled (<a
href="https://redirect.github.com/webpack-contrib/css-loader/issues/1590">#1590</a>)
(<a
href="https://github.com/webpack-contrib/css-loader/commit/d6c31a17a0dde3e2bcf2b5e55f913c3645d32868">d6c31a1</a>)</li>
</ul>
<h2><a
href="https://github.com/webpack-contrib/css-loader/compare/v7.0.0...v7.1.0">7.1.0</a>
(2024-04-08)</h2>
<h3>Features</h3>
<ul>
<li>added the <code>getJSON</code> option to output CSS modules mapping
(<a
href="https://redirect.github.com/webpack-contrib/css-loader/issues/1577">#1577</a>)
(<a
href="https://github.com/webpack-contrib/css-loader/commit/af834b43b375f336108d74ff7bd9ed13bc79200a">af834b4</a>)</li>
</ul>
<h2><a
href="https://github.com/webpack-contrib/css-loader/compare/v6.11.0...v7.0.0">7.0.0</a>
(2024-04-04)</h2>
<h3>⚠ BREAKING CHANGES</h3>
<ul>
<li>The <code>modules.namedExport</code> option is <code>true</code> by
default if you enable the <code>esModule</code> option</li>
</ul>
<p>Migration guide:</p>
<p>Before:</p>
<pre lang="js"><code>import style from &quot;./style.css&quot;;
<p>console.log(style.myClass);<br />
</code></pre></p>
<p>After:</p>
<pre lang="js"><code>import * as style from &quot;./style.css&quot;;
<p>console.log(style.myClass);<br />
</code></pre></p>
<p>To restore 6.x behavior, please use:</p>
<pre lang="js"><code>module.exports = {
&lt;/tr&gt;&lt;/table&gt; 
</code></pre>
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/webpack-contrib/css-loader/commit/d5ba44ae2e0bf20d31fe43fd7a2c467937dde97d"><code>d5ba44a</code></a>
chore(release): 7.1.2</li>
<li><a
href="https://github.com/webpack-contrib/css-loader/commit/76757ef30ec37f88ccf9d8b82d8d84b7625c5d66"><code>76757ef</code></a>
fix: keep order of <code>@import</code>s with the
<code>webpackIgnore</code> comment (<a
href="https://redirect.github.com/webpack-contrib/css-loader/issues/1600">#1600</a>)</li>
<li><a
href="https://github.com/webpack-contrib/css-loader/commit/4b41689003beb7f44642c6f4f52506d81fc14106"><code>4b41689</code></a>
ci: use node v22 (<a
href="https://redirect.github.com/webpack-contrib/css-loader/issues/1596">#1596</a>)</li>
<li><a
href="https://github.com/webpack-contrib/css-loader/commit/20682222edaeb3c752aa301a992719919d3b3ed2"><code>2068222</code></a>
chore: update dependencies to latest version (<a
href="https://redirect.github.com/webpack-contrib/css-loader/issues/1595">#1595</a>)</li>
<li><a
href="https://github.com/webpack-contrib/css-loader/commit/e006f66ebf1bed92f643c01af8e542e7519c4611"><code>e006f66</code></a>
refactor: use <code>environment</code> to get
<code>templateLiteral</code> value (<a
href="https://redirect.github.com/webpack-contrib/css-loader/issues/1591">#1591</a>)</li>
<li><a
href="https://github.com/webpack-contrib/css-loader/commit/5c717c986784f20307aaa66e46c8805b84f22cc8"><code>5c717c9</code></a>
chore(release): 7.1.1</li>
<li><a
href="https://github.com/webpack-contrib/css-loader/commit/d6c31a17a0dde3e2bcf2b5e55f913c3645d32868"><code>d6c31a1</code></a>
fix: automatically rename class <code>default</code> to
<code>_default</code> when named export is ...</li>
<li><a
href="https://github.com/webpack-contrib/css-loader/commit/b162e252eef254d6c8271dad1751690ac4214c34"><code>b162e25</code></a>
chore(release): 7.1.0</li>
<li><a
href="https://github.com/webpack-contrib/css-loader/commit/15f793d4fae5bd6addf84a8fce50470af9bf5129"><code>15f793d</code></a>
docs: update logic (<a
href="https://redirect.github.com/webpack-contrib/css-loader/issues/1587">#1587</a>)</li>
<li><a
href="https://github.com/webpack-contrib/css-loader/commit/9c165a4b9152d1bb5d8738f9b7775907f5483295"><code>9c165a4</code></a>
docs: update migration guide (<a
href="https://redirect.github.com/webpack-contrib/css-loader/issues/1586">#1586</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/webpack-contrib/css-loader/compare/v6.11.0...v7.1.2">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=css-loader&package-manager=npm_and_yarn&previous-version=6.11.0&new-version=7.1.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

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)


</details>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored Oct 30, 2024
1 parent b9c8dd2 commit 6be77cf
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@
"babel-loader": "^9.1.2",
"browserify-fs": "^1.0.0",
"codemirror": "^5.54.0",
"css-loader": "^6.7.3",
"css-loader": "^7.1.2",
"eslint": "^8.37.0",
"hast-util-to-text": "^4.0.2",
"identity-obj-proxy": "^3.0.0",
Expand Down

0 comments on commit 6be77cf

Please sign in to comment.