Releases: contributte/webpack
Releases · contributte/webpack
2.3.0
🔧 Minimum required version of PHP is now 8.1, and up to 8.3 is supported.
2.2.1
- 🔧 Fully use Latte 3's Extension (#40)
2.2.0
- ✨ Added support for Latte 3 (#39)
2.1.1
- 🐞 Assets that resolve to absolute URLs are returned as-is (#37, thanks @martenb!)
2.1.0
- ✨ You can now configure a timeout for manifest loading (#34)
- 🔧 Manifest loads faster from the dev server (#33, thanks @martenb!)
2.0.1
- 🐞 Fix: dynamic parameter not working for optimized manifest (#28, thanks @janfejtek!)
2.0.0
🎉 The package has been transferred to @contributte!
The package is now available on Packagist both under the original name oops/webpack-nette-adapter
and the new contributte/webpack
. Both retain the same version history, but the latter is now preferred and the former is marked as abandoned in favour of the new package.
The transition led to a breaking change in namespace to Contributte\Webpack
. Please update your code and configuration accordingly.
There should be no other breaking changes.
tl;dr
composer remove oops/webpack-nette-adapter
composer require contributte/webpack
- replace the namespace in your configuration:
extensions:
- webpack: Oops\WebpackNetteAdapter\DI\WebpackExtension(%debugMode%, %consoleMode%)
+ webpack: Contributte\Webpack\DI\WebpackExtension(%debugMode%, %consoleMode%)
1.4.0
- ✨ You can now use manifest plugins other than
webpack-manifest-plugin
, using mappers to map the plugin's structure to the flat structure expected by WebpackNetteAdapter. (#17, thanks @rattuscz!)
- 🔧 Guzzle 7.0 is supported. (#18, thanks @solcik!)
1.3.1
- 🐞 Fixed BuildDirectoryProvider pointing to public URL of dev server instead of the internal one if a public URL is configured. (#16)
1.3.0
- ✨ You can now configure the
DevServer
with a different internal and public URL for easier use in environments such as a Docker Compose network. (#13, thanks @martinjinda!)