Skip to content

deps(deps-dev): bump @symfony/webpack-encore from 6.0.0 to 7.2.0 in /Tests/app in the webpack-encore group across 1 directory - #203

Open
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/npm_and_yarn/Tests/app/webpack-encore-d28296eee7
Open

deps(deps-dev): bump @symfony/webpack-encore from 6.0.0 to 7.2.0 in /Tests/app in the webpack-encore group across 1 directory#203
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/npm_and_yarn/Tests/app/webpack-encore-d28296eee7

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jun 29, 2026

Copy link
Copy Markdown
Contributor

Bumps the webpack-encore group with 1 update in the /Tests/app directory: @symfony/webpack-encore.

Updates @symfony/webpack-encore from 6.0.0 to 7.2.0

Release notes

Sourced from @​symfony/webpack-encore's releases.

7.2.0 - The Now-With-Types Release

[!NOTE] The entire codebase is now TypeScript, and the package ships type definitions out of the box, so methods like enableSassLoader() and configureDevServerOptions() give you real autocompletion and validation for every option you pass in webpack.config.js.

[!IMPORTANT] Reprise v0.6.0 reaches near feature-parity with Encore on both Vite and Rsbuild, including a migration guide that maps every Encore.* call to its equivalent. Active maintenance on Webpack Encore slows from here (mostly dependency updates and bug fixes), but Encore stays supported, and Reprise is the recommended path if you want to move to a modern setup.

What's Changed

New Contributors

Full Changelog: symfony/webpack-encore@v7.1.0...v7.2.0


Thanks to everyone who contributed to this release! 🙌

Update Encore in your project:

npm install @symfony/webpack-encore@latest --save-dev
pnpm add --save-dev @symfony/webpack-encore@latest
yarn add --dev @symfony/webpack-encore@latest

7.1.0 - The "Wait, We Forgot Some Things" Release

[!NOTE] A small follow-up to 7.0.0: a few dependency updates didn't make it into that release, so 7.1.0 ships them now. You get support for sass-loader v17 (v16 still works), @vue/babel-plugin-jsx bumped to v3, webpack-manifest-plugin requiring at least v6.0.1, and JS/CSS minifier peer dependencies relaxed to optional with no version constraint. No upgrade steps needed for most projects, just bump and go.

What's Changed

Full Changelog: symfony/webpack-encore@v7.0.0...v7.1.0


Thanks to everyone who contributed to this release! 🙌

Update Encore in your project:

... (truncated)

Changelog

Sourced from @​symfony/webpack-encore's changelog.

7.2.0

  • Migrate internal code to TypeScript, ship package with type definitions (better DX and IDE support!)
  • Improve the typing of the configuration methods (enableSassLoader(), configureDevServerOptions(), enableVueLoader(), configureBabelPresetEnv(), etc.): options now resolve to the real loader/plugin types, giving full autocompletion and validation in your webpack.config
  • Add support for webpack-dev-server ^6.0.0 (requires webpack ^5.102.0 and webpack-cli ^7.0.2)

7.1.0

  • Add support for sass-loader ^17.0.0
  • Add support for @vue/babel-plugin-jsx to ^3.0.0, remove support for @vue/babel-plugin-jsx to ^1.0.0
  • Update the minimum version of webpack-manifest-plugin to ^6.0.1
  • Declare the JS/CSS minifiers as optional peer dependencies without a version constraint, matching minimizer-webpack-plugin behavior

7.0.0

This is a new major version that contains several backwards-compatibility breaks.

BC Breaks

  • Migrate from CJS (CommonJS) to ESM (ES Modules)
  • Migrate synchronous API to asynchronous API
  • Drop support of Babel 7 in favor of Babel 8
  • Remove Encore.configureTerserPlugin() in favor of Encore.configureJsMinimizerPlugin()

Features

  • Add support for webpack-cli ^7.0.0
  • Add support for typescript ^6.0.0
  • Add support for Node.js` ^26.0.0
  • Add support of Babel 8
  • Use ESM exports in Encore.copyFiles() for better webpack optimizations
  • Use peerDependencies instead of devDependencies for optional dependencies checking
  • Replace css-minimizer-webpack-plugin and terser-webpack-plugin by minimizer-webpack-plugin to unify the minification process

See the upgrade guide for the full list of breaking changes and upgrade steps.

Upgrade guide

Sourced from @​symfony/webpack-encore's upgrade guide.

Upgrading

7.0.0

[!IMPORTANT] v7.0.0 is ESM-only, Encore.getWebpackConfig() is now async, Babel 8 is required, and CSS minification is no longer enabled by default. These are real breaking changes, so please follow the steps below.

The Node.js ecosystem has largely moved to ESM as the standard module format. Most actively maintained packages now ship ESM-only, and since Encore already requires Node.js ^22.13.0 || >=24.0 (which has full ESM support), continuing to publish as CJS would mean fighting the ecosystem: pinning to older dependencies, adding workarounds, and missing out on tree-shaking and static analysis.

Moving to ESM also unlocks async/await in Encore's internals. Now that getWebpackConfig() is natively async, Encore can adopt modern async APIs from the ecosystem without hacks.

  • Migrate from CommonJS to ESM: the package now requires "type": "module" in your project or the use of .mjs file extensions. Update your webpack.config.js:

    // Before (CJS)
    const Encore = require('@symfony/webpack-encore');
    // ...
    module.exports = Encore.getWebpackConfig();
    // After (ESM)
    import Encore from '@​symfony/webpack-encore';
    // ...
    export default await Encore.getWebpackConfig();

    Note: Encore.getWebpackConfig() is now async and returns a Promise. Use await at the top level of your webpack config (webpack supports async config files natively).

  • If you prefer not to add "type": "module", rename your webpack config to webpack.config.mjs instead; webpack detects the .mjs extension and treats it as ESM automatically.

  • Replace __dirname and __filename with their ESM equivalents in your webpack config:

    // Before (CJS)
    path.resolve(__dirname, 'src/utilities/');
    config: [__filename];
    // After (ESM)
    path.resolve(import.meta.dirname, 'src/utilities/');
    config: [import.meta.filename];

... (truncated)

Commits
  • a995eff Tagging 7.2.0
  • da6a33b bug #1520 Recommend the project's package manager for missing dependency erro...
  • 0f0389e Recommend the project's package manager for missing dependency errors
  • 09800d2 feature #1523 Add support for webpack-dev-server ^6.0.0 (Kocal)
  • eb48ad3 Add support for webpack-dev-server ^6.0.0
  • 5198083 feature #1503 Migrate project to TypeScript ✨ (Kocal)
  • 53a691a [TypeScript] Improve public API configuration option types (#1521)
  • bbebcee Minor improvements
  • c1e0ecc [TypeScript] Use .js import specifiers and drop TS-extension tsconfig options...
  • 283f574 [TypeScript] Migrate index.js (#1511)
  • Additional commits viewable in compare view
Install script changes

This version adds prepare script that runs during installation. Review the package contents before updating.


@dependabot @github

dependabot Bot commented on behalf of github Jun 29, 2026

Copy link
Copy Markdown
Contributor Author

Labels

The following labels could not be found: dependencies, javascript, test-app. Please create them before Dependabot can add them to a pull request.

Please fix the above issues or remove invalid values from dependabot.yml.

@github-code-quality

github-code-quality Bot commented Jun 29, 2026

Copy link
Copy Markdown

Code Coverage Overview

Languages: PHP, JavaScript

PHP / code-coverage/phpunit

The overall coverage in commit aa7135a in the dependabot/npm_and_y... branch remains at 99%, unchanged from commit 7c9a253 in the master branch.

JavaScript / code-coverage/jest

The overall coverage in commit aa7135a in the dependabot/npm_and_y... branch remains at 87%, unchanged from commit 7c9a253 in the master branch.


Updated July 27, 2026 05:34 UTC

@dependabot dependabot Bot changed the title deps(deps-dev): bump @symfony/webpack-encore from 6.0.0 to 7.1.0 in /Tests/app in the webpack-encore group deps(deps-dev): bump @symfony/webpack-encore from 6.0.0 to 7.1.0 in /Tests/app in the webpack-encore group across 1 directory Jul 6, 2026
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/Tests/app/webpack-encore-d28296eee7 branch from 8e9c899 to 7890360 Compare July 6, 2026 05:32
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/Tests/app/webpack-encore-d28296eee7 branch from 7890360 to f468e15 Compare July 20, 2026 05:32
Bumps the webpack-encore group with 1 update in the /Tests/app directory: [@symfony/webpack-encore](https://github.com/symfony/webpack-encore).


Updates `@symfony/webpack-encore` from 6.0.0 to 7.2.0
- [Release notes](https://github.com/symfony/webpack-encore/releases)
- [Changelog](https://github.com/symfony/webpack-encore/blob/main/CHANGELOG.md)
- [Upgrade guide](https://github.com/symfony/webpack-encore/blob/main/UPGRADE.md)
- [Commits](symfony/webpack-encore@v6.0.0...v7.2.0)

---
updated-dependencies:
- dependency-name: "@symfony/webpack-encore"
  dependency-version: 7.1.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: webpack-encore
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot changed the title deps(deps-dev): bump @symfony/webpack-encore from 6.0.0 to 7.1.0 in /Tests/app in the webpack-encore group across 1 directory deps(deps-dev): bump @symfony/webpack-encore from 6.0.0 to 7.2.0 in /Tests/app in the webpack-encore group across 1 directory Jul 27, 2026
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/Tests/app/webpack-encore-d28296eee7 branch from f468e15 to aa7135a Compare July 27, 2026 05:32
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.

0 participants