Skip to content

chore(deps): update dependency css-loader to v7 - #603

Closed
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/css-loader-7.x
Closed

chore(deps): update dependency css-loader to v7#603
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/css-loader-7.x

Conversation

@renovate

@renovate renovate Bot commented Jul 12, 2024

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Confidence
css-loader 6.11.07.1.4 age confidence

Release Notes

webpack/css-loader (css-loader)

v7.1.4

Compare Source

v7.1.3

Compare Source

v7.1.2

Compare Source

v7.1.1

Compare Source

v7.1.0

Compare Source

Features
  • added the getJSON option to output CSS modules mapping (#​1577) (af834b4)

v7.0.0

Compare Source

⚠ BREAKING CHANGES
  • The modules.namedExport option is true by default if you enable the esModule option

Migration guide:

Before:

import style from "./style.css";

console.log(style.myClass);

After:

import * as style from "./style.css";

console.log(style.myClass);

To restore 6.x behavior, please use:

module.exports = {
  module: {
    rules: [
      {
        test: /\.css$/i,
        loader: "css-loader",
        options: {
          modules: {
            namedExport: false,
            exportLocalsConvention: 'as-is',
            //
            // or, if you prefer camelcase style
            //
            // exportLocalsConvention: 'camel-case-only'
          },
        },
      },
    ],
  },
};

Typescript migration:

Before:

declare module '*.module.css' {
  const classes: { [key: string]: string };
  export default classes;
}

After:

declare module '*.module.css' {
  const classes: { [key: string]: string };
  export = classes;
}
  • The modules.exportLocalsConvention has the value as-is when the modules.namedExport option is true and you don't specify a value
  • Minimum supported webpack version is 5.27.0
  • Minimum supported Node.js version is 18.12.0
Features
  • The modules.namedExports option works fine with any modules.exportLocalsConvention values (f96a110)
  • Added dashed variants for the modules.exportLocalsConvention options (40e1668)

Configuration

📅 Schedule: (in timezone Asia/Tokyo)

  • Branch creation
    • At any time (no schedule defined)
  • 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/css-loader-7.x branch from f2b8971 to 3062308 Compare July 12, 2024 19:42
@renovate
renovate Bot force-pushed the renovate/css-loader-7.x branch from 3062308 to 3dfa5ce Compare January 27, 2026 18:59
@renovate
renovate Bot force-pushed the renovate/css-loader-7.x branch 2 times, most recently from 5c49a8d to da8972a Compare February 16, 2026 19:03
@renovate
renovate Bot force-pushed the renovate/css-loader-7.x branch from da8972a to 1d8c62a Compare March 5, 2026 17:11
@renovate
renovate Bot force-pushed the renovate/css-loader-7.x branch from 1d8c62a to 8cdf1e9 Compare April 8, 2026 21:37
@renovate
renovate Bot force-pushed the renovate/css-loader-7.x branch from 8cdf1e9 to ca4571f Compare April 29, 2026 09:52
@renovate
renovate Bot force-pushed the renovate/css-loader-7.x branch from ca4571f to d0bf67d Compare May 12, 2026 11:35
@renovate
renovate Bot force-pushed the renovate/css-loader-7.x branch from d0bf67d to e8d5413 Compare May 28, 2026 18:41
@renovate
renovate Bot force-pushed the renovate/css-loader-7.x branch from e8d5413 to 73d1b8e Compare June 11, 2026 15:50
@renovate
renovate Bot force-pushed the renovate/css-loader-7.x branch 2 times, most recently from f20ecc4 to d7abd32 Compare July 16, 2026 16:11
@renovate
renovate Bot force-pushed the renovate/css-loader-7.x branch 2 times, most recently from 280073f to a1a9764 Compare July 24, 2026 21:28
@renovate
renovate Bot force-pushed the renovate/css-loader-7.x branch from a1a9764 to ee1472b Compare July 30, 2026 13:40
@renovate
renovate Bot force-pushed the renovate/css-loader-7.x branch from ee1472b to 08693f6 Compare August 12, 2026 00:14
@mirucon

mirucon commented Aug 15, 2026

Copy link
Copy Markdown
Owner

Closing leftover Renovate PR after switching this repo to dependencyDashboardApproval. Updates will stay on the dashboard until explicitly created.

@mirucon mirucon closed this Aug 15, 2026
@mirucon
mirucon deleted the renovate/css-loader-7.x branch August 15, 2026 10:22
@renovate

renovate Bot commented Aug 15, 2026

Copy link
Copy Markdown
Contributor Author

Renovate Ignore Notification

Because you closed this PR without merging, Renovate will ignore this update. You will not get PRs for any future 7.x releases. But if you manually upgrade to 7.x then Renovate will re-enable minor and patch updates automatically.

If you accidentally closed this PR, or if you changed your mind: rename this PR to get a fresh replacement PR.

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.

1 participant